From cbb0bf54ac81fb04e97ba420729ab08d1ceedf94 Mon Sep 17 00:00:00 2001 From: "Andrew G. Brown" Date: Wed, 25 Oct 2023 09:58:53 -0700 Subject: [PATCH 01/11] update effervescence, drop ordered factors --- R/parseOSD_functions.R | 40 +++++++++--------------- misc/OSD-error-reporting/typical-pedon.R | 1 + 2 files changed, 15 insertions(+), 26 deletions(-) diff --git a/R/parseOSD_functions.R b/R/parseOSD_functions.R index 7c2a7aadb4..11562bece5 100644 --- a/R/parseOSD_functions.R +++ b/R/parseOSD_functions.R @@ -94,7 +94,10 @@ m <- tolower(m) # convert to ordered factor - m <- factor(m, levels = textures, ordered = TRUE) + # + # m <- factor(m, levels = textures, ordered = TRUE) + # + # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes return(m) } @@ -196,33 +199,19 @@ m <- tolower(m) # return as an ordered factor acidic -> basic - m <- factor(m, levels = pH_classes, ordered = TRUE) + # m <- factor(m, levels = pH_classes, ordered = TRUE) + # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes return(m) } - - # vectorized parsing of effervescence class -#' @importFrom stringi stri_match -.parse_eff_class <- function(text) { - - # mineral texture classes - .classes <- c('noneffervescent', 'very slightly effervescent', 'slightly effervescent', 'strongly effervescent', 'violently effervescent') - - ## 2019-05-29: generalized for all non-greedy, exact matching - m <- .findClass(needle = .classes, haystack = text) - m <- tolower(m) - - # return as an ordered factor acidic -> basic - m <- factor(m, levels = .classes, ordered = TRUE) - - return(m) - +.parse_eff_class <- function(x) { + SoilKnowledgeBase:::.zerochar_to_na(gsub("^.*(very [a-z]+ effervescen[tce]+).*$|^.*\\b([a-z]+ ?effervescen[tce]+).*$|.*", + "\\1\\2", x, ignore.case = TRUE)) + # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes } - - # vectorized parsing of drainage class #' @importFrom stringi stri_match .parse_drainage_class <- function(text) { @@ -248,7 +237,6 @@ # return as an ordered factor # m <- factor(m, levels = classes, ordered = TRUE) - # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes return(m) @@ -324,11 +312,11 @@ # "O" = "0" # "l" = "1" ## ideas: http://stackoverflow.com/questions/15474741/python-regex-optional-capture-group - - ## TODO: it isn't clear if the new files will be in + + ## TODO: it isn't clear if the new files will be in # expect em dashes (\u2014) used after horizon designation as of May 2023 # https://github.com/ncss-tech/SoilKnowledgeBase/issues/64 - + # detect horizons with both top and bottom depths hz.rule <- "([\\^\\'\\/a-zA-Z0-9]+)\\s*[-=\u2014]+\\s*([Ol0-9.]+)\\s*?(to|-)?\\s+?([Ol0-9.]+)\\s*?(in|inches|cm|centimeters)" @@ -494,7 +482,7 @@ res$pH <- .parse_pH(narrative.data$narrative) res$pH_class <- .parse_pH_class(narrative.data$narrative) res$eff_class <- .parse_eff_class(narrative.data$narrative) - + bdy <- .parse_hz_boundary(narrative.data$narrative) res$distinctness <- bdy$distinctness res$topography <- bdy$topography diff --git a/misc/OSD-error-reporting/typical-pedon.R b/misc/OSD-error-reporting/typical-pedon.R index c3be5cd51a..e9db5ea5e6 100644 --- a/misc/OSD-error-reporting/typical-pedon.R +++ b/misc/OSD-error-reporting/typical-pedon.R @@ -1,4 +1,5 @@ library(aqp) +library(soilDB) library(data.table) source("https://raw.githubusercontent.com/ncss-tech/soilDB/master/R/get_OSD.R") From 8217fe0cd0b6d2a3088edb7aad924478f86c4f58 Mon Sep 17 00:00:00 2001 From: SoilKnowledgeBot Date: Wed, 25 Oct 2023 18:32:42 +0000 Subject: [PATCH 02/11] Update inst/extdata/ JSON files --- inst/extdata/OSD/A/AAZDAHL.json | 4 ++-- inst/extdata/OSD/A/ABERDEEN.json | 8 ++++---- inst/extdata/OSD/A/ACKETT.json | 8 ++++---- inst/extdata/OSD/A/ADE.json | 2 +- inst/extdata/OSD/A/AGAR.json | 8 ++++---- inst/extdata/OSD/A/AGENCY.json | 2 +- inst/extdata/OSD/A/AGUILAR.json | 10 +++++----- inst/extdata/OSD/A/AHOLT.json | 12 ++++++------ inst/extdata/OSD/A/AHOY.json | 4 ++-- inst/extdata/OSD/A/AHTANUM.json | 8 ++++---- inst/extdata/OSD/A/AIDO.json | 2 +- inst/extdata/OSD/A/AIRSHIP.json | 2 +- inst/extdata/OSD/A/AKASKA.json | 8 ++++---- inst/extdata/OSD/A/ALAE.json | 6 +++--- inst/extdata/OSD/A/ALCAZAR.json | 4 ++-- inst/extdata/OSD/A/ALDA.json | 4 ++-- inst/extdata/OSD/A/ALDAPE.json | 2 +- inst/extdata/OSD/A/ALGOMA.json | 4 ++-- inst/extdata/OSD/A/ALIBATES.json | 4 ++-- inst/extdata/OSD/A/ALICE.json | 6 +++--- inst/extdata/OSD/A/ALINE.json | 2 +- inst/extdata/OSD/A/ALKABO.json | 6 +++--- inst/extdata/OSD/A/ALLEY.json | 2 +- inst/extdata/OSD/A/ALLIANCE.json | 4 ++-- inst/extdata/OSD/A/ALPOWA.json | 6 +++--- inst/extdata/OSD/A/ALSTAD.json | 2 +- inst/extdata/OSD/A/ALTASLOUGH.json | 2 +- inst/extdata/OSD/A/ALTURAS.json | 2 +- inst/extdata/OSD/A/ALTVAN.json | 6 +++--- inst/extdata/OSD/A/ALWILDA.json | 4 ++-- inst/extdata/OSD/A/ALZADA.json | 2 +- inst/extdata/OSD/A/AMARADA.json | 2 +- inst/extdata/OSD/A/AMOR.json | 6 +++--- inst/extdata/OSD/A/ANCHUSTEQUI.json | 14 +++++++------- inst/extdata/OSD/A/ANDER.json | 8 ++++---- inst/extdata/OSD/A/ANGELUS.json | 8 ++++---- inst/extdata/OSD/A/ANGORA.json | 6 +++--- inst/extdata/OSD/A/ANGUS.json | 4 ++-- inst/extdata/OSD/A/ANNAROSE.json | 2 +- inst/extdata/OSD/A/ANTELOPEFLAT.json | 4 ++-- inst/extdata/OSD/A/ANTLER.json | 12 ++++++------ inst/extdata/OSD/A/AOWA.json | 6 +++--- inst/extdata/OSD/A/APPAM.json | 4 ++-- inst/extdata/OSD/A/AQUARIUSMINE.json | 2 +- inst/extdata/OSD/A/ARCHIN.json | 6 +++--- inst/extdata/OSD/A/ARCTANDER.json | 2 +- inst/extdata/OSD/A/ARIKARA.json | 6 +++--- inst/extdata/OSD/A/ARLO.json | 12 ++++++------ inst/extdata/OSD/A/ARMISTEAD.json | 4 ++-- inst/extdata/OSD/A/ARMO.json | 10 +++++----- inst/extdata/OSD/A/ARNEGARD.json | 2 +- inst/extdata/OSD/A/ARTESIAN.json | 10 +++++----- inst/extdata/OSD/A/ARVESON.json | 12 ++++++------ inst/extdata/OSD/A/ARVILLA.json | 4 ++-- inst/extdata/OSD/A/ASHER.json | 4 ++-- inst/extdata/OSD/A/ATCHISON.json | 20 ++++++++++---------- inst/extdata/OSD/A/ATESH.json | 10 +++++----- inst/extdata/OSD/A/ATHELWOLD.json | 4 ++-- inst/extdata/OSD/A/ATHENA.json | 2 +- inst/extdata/OSD/A/AUGSBURG.json | 10 +++++----- inst/extdata/OSD/A/AVAR.json | 4 ++-- inst/extdata/OSD/A/AXTELL.json | 8 ++++---- inst/extdata/OSD/A/AYR.json | 2 +- inst/extdata/OSD/A/AYRMOUNT.json | 2 +- inst/extdata/OSD/A/AZURERIDGE.json | 2 +- inst/extdata/OSD/B/BAAHISH.json | 8 ++++---- inst/extdata/OSD/B/BABBINGTON.json | 2 +- inst/extdata/OSD/B/BADUS.json | 10 +++++----- inst/extdata/OSD/B/BAILCREEK.json | 2 +- inst/extdata/OSD/B/BAILEYVILLE.json | 2 +- inst/extdata/OSD/B/BALLAST.json | 6 +++--- inst/extdata/OSD/B/BALTA.json | 8 ++++---- inst/extdata/OSD/B/BALTIC.json | 12 ++++++------ inst/extdata/OSD/B/BANKARD.json | 8 ++++---- inst/extdata/OSD/B/BANKS.json | 6 +++--- inst/extdata/OSD/B/BANKSTON.json | 2 +- inst/extdata/OSD/B/BANSHEE.json | 2 +- inst/extdata/OSD/B/BARBERT.json | 2 +- inst/extdata/OSD/B/BARNES.json | 4 ++-- inst/extdata/OSD/B/BARNEY.json | 4 ++-- inst/extdata/OSD/B/BASFORD.json | 8 ++++---- inst/extdata/OSD/B/BASKET.json | 2 +- inst/extdata/OSD/B/BASSETT.json | 2 +- inst/extdata/OSD/B/BAVARIA.json | 8 ++++---- inst/extdata/OSD/B/BAVIZA.json | 8 ++++---- inst/extdata/OSD/B/BAYARD.json | 4 ++-- inst/extdata/OSD/B/BEADLE.json | 6 +++--- inst/extdata/OSD/B/BEARDEN.json | 12 ++++++------ inst/extdata/OSD/B/BEARVILLE.json | 2 +- inst/extdata/OSD/B/BEAUBIEN.json | 2 +- inst/extdata/OSD/B/BEAUFORD.json | 2 +- inst/extdata/OSD/B/BEAVERTAIL.json | 2 +- inst/extdata/OSD/B/BECKMAN.json | 16 ++++++++-------- inst/extdata/OSD/B/BEDNER.json | 2 +- inst/extdata/OSD/B/BEDSTEAD.json | 2 +- inst/extdata/OSD/B/BEEDE_LAKE.json | 2 +- inst/extdata/OSD/B/BEISIGL.json | 6 +++--- inst/extdata/OSD/B/BELFIELD.json | 6 +++--- inst/extdata/OSD/B/BELK.json | 6 +++--- inst/extdata/OSD/B/BELSAC.json | 2 +- inst/extdata/OSD/B/BELVUE.json | 6 +++--- inst/extdata/OSD/B/BEND.json | 6 +++--- inst/extdata/OSD/B/BENFIELD.json | 6 +++--- inst/extdata/OSD/B/BENSON.json | 4 ++-- inst/extdata/OSD/B/BENSTOT.json | 4 ++-- inst/extdata/OSD/B/BEOTIA.json | 6 +++--- inst/extdata/OSD/B/BERENT.json | 8 ++++---- inst/extdata/OSD/B/BERGLAND.json | 6 +++--- inst/extdata/OSD/B/BERREND.json | 6 +++--- inst/extdata/OSD/B/BETHANY.json | 6 +++--- inst/extdata/OSD/B/BEW.json | 8 ++++---- inst/extdata/OSD/B/BEYBEK.json | 4 ++-- inst/extdata/OSD/B/BIGBEND.json | 8 ++++---- inst/extdata/OSD/B/BIGFOOT.json | 10 +++++----- inst/extdata/OSD/B/BIG_CYPRESS.json | 2 +- inst/extdata/OSD/B/BILLYCANYON.json | 4 ++-- inst/extdata/OSD/B/BINFORD.json | 2 +- inst/extdata/OSD/B/BISCAILUZ.json | 2 +- inst/extdata/OSD/B/BISCUIT.json | 2 +- inst/extdata/OSD/B/BLACKLOUP.json | 4 ++-- inst/extdata/OSD/B/BLACKNOLL.json | 2 +- inst/extdata/OSD/B/BLACKPIPE.json | 8 ++++---- inst/extdata/OSD/B/BLACK_BUTTE.json | 2 +- inst/extdata/OSD/B/BLAKABIN.json | 4 ++-- inst/extdata/OSD/B/BLUEBIRD.json | 2 +- inst/extdata/OSD/B/BLUECREEK.json | 2 +- inst/extdata/OSD/B/BLUELEAD.json | 4 ++-- inst/extdata/OSD/B/BLUFFTON.json | 6 +++--- inst/extdata/OSD/B/BLULA.json | 6 +++--- inst/extdata/OSD/B/BODE.json | 2 +- inst/extdata/OSD/B/BOEL.json | 4 ++-- inst/extdata/OSD/B/BOHNSACK.json | 10 +++++----- inst/extdata/OSD/B/BON.json | 12 ++++++------ inst/extdata/OSD/B/BONEDRAW.json | 10 +++++----- inst/extdata/OSD/B/BONEEK.json | 6 +++--- inst/extdata/OSD/B/BONILLA.json | 6 +++--- inst/extdata/OSD/B/BONNET.json | 2 +- inst/extdata/OSD/B/BORGSTROM.json | 2 +- inst/extdata/OSD/B/BORO.json | 14 +++++++------- inst/extdata/OSD/B/BORUP.json | 10 +++++----- inst/extdata/OSD/B/BORVANT.json | 2 +- inst/extdata/OSD/B/BOSLER.json | 2 +- inst/extdata/OSD/B/BOTTINEAU.json | 4 ++-- inst/extdata/OSD/B/BOWBAC.json | 2 +- inst/extdata/OSD/B/BOWBELLS.json | 4 ++-- inst/extdata/OSD/B/BOWDLE.json | 6 +++--- inst/extdata/OSD/B/BOXCUT.json | 4 ++-- inst/extdata/OSD/B/BOYD.json | 12 ++++++------ inst/extdata/OSD/B/BOYER.json | 2 +- inst/extdata/OSD/B/BRANDENBURG.json | 6 +++--- inst/extdata/OSD/B/BRANDT.json | 8 ++++---- inst/extdata/OSD/B/BRANTFORD.json | 4 ++-- inst/extdata/OSD/B/BRANYON.json | 10 +++++----- inst/extdata/OSD/B/BRASSFIELD.json | 6 +++--- inst/extdata/OSD/B/BRATTON.json | 2 +- inst/extdata/OSD/B/BRAZORIA.json | 16 ++++++++-------- inst/extdata/OSD/B/BREHM.json | 4 ++-- inst/extdata/OSD/B/BREIEN.json | 2 +- inst/extdata/OSD/B/BRENT.json | 4 ++-- inst/extdata/OSD/B/BRIDGEHEAD.json | 8 ++++---- inst/extdata/OSD/B/BRIDGEPORT.json | 6 +++--- inst/extdata/OSD/B/BRIDGET.json | 6 +++--- inst/extdata/OSD/B/BRIDGEWELL.json | 4 ++-- inst/extdata/OSD/B/BRIFOX.json | 2 +- inst/extdata/OSD/B/BRISBANE.json | 2 +- inst/extdata/OSD/B/BRISLAWN.json | 2 +- inst/extdata/OSD/B/BRISTOW.json | 4 ++-- inst/extdata/OSD/B/BROADWATER.json | 8 ++++---- inst/extdata/OSD/B/BROADWAY.json | 8 ++++---- inst/extdata/OSD/B/BROCK.json | 2 +- inst/extdata/OSD/B/BRODIE.json | 2 +- inst/extdata/OSD/B/BROPHY.json | 8 ++++---- inst/extdata/OSD/B/BROWNELL.json | 6 +++--- inst/extdata/OSD/B/BROWNTON.json | 4 ++-- inst/extdata/OSD/B/BROYLES.json | 4 ++-- inst/extdata/OSD/B/BRUSHCREEK.json | 6 +++--- inst/extdata/OSD/B/BRYANT.json | 6 +++--- inst/extdata/OSD/B/BUCKNEY.json | 6 +++--- inst/extdata/OSD/B/BUCKTON.json | 6 +++--- inst/extdata/OSD/B/BUFFALO_PARK.json | 4 ++-- inst/extdata/OSD/B/BUFFINGTON.json | 12 ++++++------ inst/extdata/OSD/B/BUFTON.json | 10 +++++----- inst/extdata/OSD/B/BULLFLAT.json | 6 +++--- inst/extdata/OSD/B/BULLFOR.json | 2 +- inst/extdata/OSD/B/BULLION.json | 14 +++++++------- inst/extdata/OSD/B/BULLOCK.json | 6 +++--- inst/extdata/OSD/B/BUNTON.json | 2 +- inst/extdata/OSD/B/BUOY.json | 4 ++-- inst/extdata/OSD/B/BURNSVILLE.json | 4 ++-- inst/extdata/OSD/B/BURSAW.json | 4 ++-- inst/extdata/OSD/B/BUSHER.json | 4 ++-- inst/extdata/OSD/B/BUSHMAN.json | 10 +++++----- inst/extdata/OSD/B/BUSKA.json | 2 +- inst/extdata/OSD/B/BUTLER.json | 8 ++++---- inst/extdata/OSD/B/BUTTERMILK.json | 6 +++--- inst/extdata/OSD/B/BYLAS.json | 4 ++-- inst/extdata/OSD/B/BYRNE.json | 6 +++--- inst/extdata/OSD/C/CACIQUE.json | 4 ++-- inst/extdata/OSD/C/CACTUSFLAT.json | 12 ++++++------ inst/extdata/OSD/C/CALHI.json | 2 +- inst/extdata/OSD/C/CALLAHAN.json | 6 +++--- inst/extdata/OSD/C/CAMPBELL.json | 6 +++--- inst/extdata/OSD/C/CAMPUS.json | 6 +++--- inst/extdata/OSD/C/CAMTOWN.json | 4 ++-- inst/extdata/OSD/C/CANADIAN.json | 2 +- inst/extdata/OSD/C/CANIWE.json | 2 +- inst/extdata/OSD/C/CANLON.json | 6 +++--- inst/extdata/OSD/C/CANNING.json | 4 ++-- inst/extdata/OSD/C/CANYON.json | 6 +++--- inst/extdata/OSD/C/CAPA.json | 10 +++++----- inst/extdata/OSD/C/CARBENGLE.json | 10 +++++----- inst/extdata/OSD/C/CARGILL.json | 2 +- inst/extdata/OSD/C/CARHART.json | 2 +- inst/extdata/OSD/C/CARLOS.json | 6 +++--- inst/extdata/OSD/C/CARLSON.json | 4 ++-- inst/extdata/OSD/C/CARMEL.json | 2 +- inst/extdata/OSD/C/CARON.json | 4 ++-- inst/extdata/OSD/C/CARP_LAKE.json | 4 ++-- inst/extdata/OSD/C/CARR.json | 6 +++--- inst/extdata/OSD/C/CARRETA.json | 10 +++++----- inst/extdata/OSD/C/CARTER.json | 8 ++++---- inst/extdata/OSD/C/CARTHAGE.json | 4 ++-- inst/extdata/OSD/C/CARUSO.json | 10 +++++----- inst/extdata/OSD/C/CARUTHERS.json | 6 +++--- inst/extdata/OSD/C/CARUTHERSVILLE.json | 14 +++++++------- inst/extdata/OSD/C/CARVILLE.json | 8 ++++---- inst/extdata/OSD/C/CARWAY.json | 2 +- inst/extdata/OSD/C/CASA_GRANDE.json | 2 +- inst/extdata/OSD/C/CASCABEL.json | 10 +++++----- inst/extdata/OSD/C/CASE.json | 8 ++++---- inst/extdata/OSD/C/CASHEL.json | 10 +++++----- inst/extdata/OSD/C/CASTELLO.json | 8 ++++---- inst/extdata/OSD/C/CASTEPHEN.json | 4 ++-- inst/extdata/OSD/C/CASTLEWOOD.json | 2 +- inst/extdata/OSD/C/CATCHELL.json | 6 +++--- inst/extdata/OSD/C/CATFISHBAY.json | 10 +++++----- inst/extdata/OSD/C/CATHAY.json | 6 +++--- inst/extdata/OSD/C/CATICON.json | 10 +++++----- inst/extdata/OSD/C/CAVALRY.json | 10 +++++----- inst/extdata/OSD/C/CAVO.json | 6 +++--- inst/extdata/OSD/C/CAVOUR.json | 6 +++--- inst/extdata/OSD/C/CEBOYA.json | 4 ++-- inst/extdata/OSD/C/CEDARPASS.json | 2 +- inst/extdata/OSD/C/CEDAR_BUTTE.json | 6 +++--- inst/extdata/OSD/C/CENTERVILLE.json | 4 ++-- inst/extdata/OSD/C/CHACON.json | 10 +++++----- inst/extdata/OSD/C/CHAMA.json | 10 +++++----- inst/extdata/OSD/C/CHANCELLOR.json | 6 +++--- inst/extdata/OSD/C/CHANGAS.json | 8 ++++---- inst/extdata/OSD/C/CHANTA.json | 4 ++-- inst/extdata/OSD/C/CHANTIER.json | 12 ++++++------ inst/extdata/OSD/C/CHAPPELL.json | 4 ++-- inst/extdata/OSD/C/CHARETTE.json | 4 ++-- inst/extdata/OSD/C/CHARLEVOIX.json | 2 +- inst/extdata/OSD/C/CHASKA.json | 6 +++--- inst/extdata/OSD/C/CHERRY.json | 6 +++--- inst/extdata/OSD/C/CHERRY_SPRING.json | 2 +- inst/extdata/OSD/C/CHEVAL.json | 10 +++++----- inst/extdata/OSD/C/CHEYENNE.json | 4 ++-- inst/extdata/OSD/C/CHIJER.json | 14 +++++++------- inst/extdata/OSD/C/CHILLON.json | 6 +++--- inst/extdata/OSD/C/CHINCHIN.json | 2 +- inst/extdata/OSD/C/CHIVINGTON.json | 4 ++-- inst/extdata/OSD/C/CHUCKAWALLA.json | 2 +- inst/extdata/OSD/C/CHUGCITY.json | 8 ++++---- inst/extdata/OSD/C/CHURCH_SPRINGS.json | 2 +- inst/extdata/OSD/C/CINTRONA.json | 14 +++++++------- inst/extdata/OSD/C/CITADEL.json | 4 ++-- inst/extdata/OSD/C/CLAIRE.json | 2 +- inst/extdata/OSD/C/CLAIRETTE.json | 6 +++--- inst/extdata/OSD/C/CLAMO.json | 4 ++-- inst/extdata/OSD/C/CLARNO.json | 6 +++--- inst/extdata/OSD/C/CLAWHAMMER.json | 14 +++++++------- inst/extdata/OSD/C/CLAYSVILLE.json | 2 +- inst/extdata/OSD/C/CLEARWATER.json | 8 ++++---- inst/extdata/OSD/C/CLEAVER.json | 6 +++--- inst/extdata/OSD/C/CLEAVMOR.json | 2 +- inst/extdata/OSD/C/CLEGORPASS.json | 4 ++-- inst/extdata/OSD/C/CLENAGE.json | 4 ++-- inst/extdata/OSD/C/CLIME.json | 6 +++--- inst/extdata/OSD/C/CLOTHO.json | 12 ++++++------ inst/extdata/OSD/C/CLURO.json | 4 ++-- inst/extdata/OSD/C/CODORA.json | 2 +- inst/extdata/OSD/C/COE.json | 6 +++--- inst/extdata/OSD/C/COESSE.json | 2 +- inst/extdata/OSD/C/COHAGEN.json | 6 +++--- inst/extdata/OSD/C/COLBY.json | 8 ++++---- inst/extdata/OSD/C/COLDENT.json | 2 +- inst/extdata/OSD/C/COLFER.json | 4 ++-- inst/extdata/OSD/C/COLLAMER.json | 2 +- inst/extdata/OSD/C/COLMENA.json | 6 +++--- inst/extdata/OSD/C/COLOCKUM.json | 2 +- inst/extdata/OSD/C/COLVIN.json | 8 ++++---- inst/extdata/OSD/C/COLY.json | 10 +++++----- inst/extdata/OSD/C/CONATA.json | 6 +++--- inst/extdata/OSD/C/CONESUS.json | 2 +- inst/extdata/OSD/C/CONRAD.json | 6 +++--- inst/extdata/OSD/C/COOCREEK.json | 4 ++-- inst/extdata/OSD/C/COOKSON.json | 2 +- inst/extdata/OSD/C/COONSKIN.json | 6 +++--- inst/extdata/OSD/C/CORINTH.json | 12 ++++++------ inst/extdata/OSD/C/COTTONTHOMAS.json | 2 +- inst/extdata/OSD/C/COUNTERFEIT.json | 10 +++++----- inst/extdata/OSD/C/COVEY.json | 2 +- inst/extdata/OSD/C/COVINGTON.json | 4 ++-- inst/extdata/OSD/C/COZAD.json | 2 +- inst/extdata/OSD/C/CRAFT.json | 14 +++++++------- inst/extdata/OSD/C/CRANBAY.json | 4 ++-- inst/extdata/OSD/C/CRESCO.json | 2 +- inst/extdata/OSD/C/CRESKEN.json | 2 +- inst/extdata/OSD/C/CRETE.json | 4 ++-- inst/extdata/OSD/C/CRIPPIN.json | 14 +++++++------- inst/extdata/OSD/C/CROKE.json | 4 ++-- inst/extdata/OSD/C/CROOKEDFLAT.json | 6 +++--- inst/extdata/OSD/C/CROPLEY.json | 6 +++--- inst/extdata/OSD/C/CROSSPLAIN.json | 8 ++++---- inst/extdata/OSD/C/CROWTHER.json | 12 ++++++------ inst/extdata/OSD/C/CRUCES.json | 2 +- inst/extdata/OSD/C/CUBDEN.json | 14 +++++++------- inst/extdata/OSD/C/CULLISON.json | 16 ++++++++-------- inst/extdata/OSD/C/CUMBRES.json | 2 +- inst/extdata/OSD/C/CUPVAR.json | 2 +- inst/extdata/OSD/C/CURABITH.json | 8 ++++---- inst/extdata/OSD/C/CUSHING.json | 2 +- inst/extdata/OSD/D/DAGLUM.json | 8 ++++---- inst/extdata/OSD/D/DALCO.json | 6 +++--- inst/extdata/OSD/D/DANGBERG.json | 2 +- inst/extdata/OSD/D/DANUBE.json | 2 +- inst/extdata/OSD/D/DARRET.json | 2 +- inst/extdata/OSD/D/DARROCH.json | 2 +- inst/extdata/OSD/D/DARROUZETT.json | 10 +++++----- inst/extdata/OSD/D/DAVISON.json | 14 +++++++------- inst/extdata/OSD/D/DAWES.json | 8 ++++---- inst/extdata/OSD/D/DEADYON.json | 2 +- inst/extdata/OSD/D/DEEDALE.json | 6 +++--- inst/extdata/OSD/D/DEERWOOD.json | 8 ++++---- inst/extdata/OSD/D/DEFLER.json | 2 +- inst/extdata/OSD/D/DEGREY.json | 8 ++++---- inst/extdata/OSD/D/DEIBERT.json | 4 ++-- inst/extdata/OSD/D/DEIGHT.json | 4 ++-- inst/extdata/OSD/D/DELAMERE.json | 6 +++--- inst/extdata/OSD/D/DELMONT.json | 4 ++-- inst/extdata/OSD/D/DELRIDGE.json | 8 ++++---- inst/extdata/OSD/D/DELVADA.json | 4 ++-- inst/extdata/OSD/D/DEMKY.json | 6 +++--- inst/extdata/OSD/D/DEMPSTER.json | 4 ++-- inst/extdata/OSD/D/DENBY.json | 10 +++++----- inst/extdata/OSD/D/DEPALT.json | 4 ++-- inst/extdata/OSD/D/DERMOTT.json | 10 +++++----- inst/extdata/OSD/D/DESERTMANN.json | 4 ++-- inst/extdata/OSD/D/DETROIT.json | 6 +++--- inst/extdata/OSD/D/DIABLO.json | 4 ++-- inst/extdata/OSD/D/DIAMONDHIL.json | 2 +- inst/extdata/OSD/D/DIAWELL.json | 10 +++++----- inst/extdata/OSD/D/DICKEY.json | 4 ++-- inst/extdata/OSD/D/DIMO.json | 4 ++-- inst/extdata/OSD/D/DISABEL.json | 4 ++-- inst/extdata/OSD/D/DISHPAN.json | 4 ++-- inst/extdata/OSD/D/DISTON.json | 14 +++++++------- inst/extdata/OSD/D/DIVIDE.json | 10 +++++----- inst/extdata/OSD/D/DOANE.json | 6 +++--- inst/extdata/OSD/D/DOGIECREEK.json | 10 +++++----- inst/extdata/OSD/D/DOGTOOTH.json | 8 ++++---- inst/extdata/OSD/D/DOLAND.json | 4 ++-- inst/extdata/OSD/D/DONALDSON.json | 4 ++-- inst/extdata/OSD/D/DONTWANNA.json | 2 +- inst/extdata/OSD/D/DORAN.json | 10 +++++----- inst/extdata/OSD/D/DORERTON.json | 2 +- inst/extdata/OSD/D/DORNA.json | 12 ++++++------ inst/extdata/OSD/D/DORRANCE.json | 8 ++++---- inst/extdata/OSD/D/DOUGHBOY.json | 14 +++++++------- inst/extdata/OSD/D/DOVRAY.json | 2 +- inst/extdata/OSD/D/DOYCE.json | 2 +- inst/extdata/OSD/D/DRAGLINE.json | 4 ++-- inst/extdata/OSD/D/DRINO.json | 6 +++--- inst/extdata/OSD/D/DRUM.json | 2 +- inst/extdata/OSD/D/DRYBURG.json | 2 +- inst/extdata/OSD/D/DRYGYP.json | 2 +- inst/extdata/OSD/D/DUCKCLUB.json | 2 +- inst/extdata/OSD/D/DUDA.json | 2 +- inst/extdata/OSD/D/DUDLEY.json | 6 +++--- inst/extdata/OSD/D/DUDLEYVILLE.json | 8 ++++---- inst/extdata/OSD/D/DUKE.json | 14 +++++++------- inst/extdata/OSD/D/DUNAWAY.json | 6 +++--- inst/extdata/OSD/D/DUNDAS.json | 2 +- inst/extdata/OSD/D/DURRSTEIN.json | 6 +++--- inst/extdata/OSD/D/DUVERT.json | 2 +- inst/extdata/OSD/D/DWIGHT.json | 2 +- inst/extdata/OSD/D/DYLAN.json | 4 ++-- inst/extdata/OSD/E/EAKIN.json | 8 ++++---- inst/extdata/OSD/E/EAPA.json | 4 ++-- inst/extdata/OSD/E/EARP.json | 2 +- inst/extdata/OSD/E/EASBY.json | 12 ++++++------ inst/extdata/OSD/E/EASTHAM.json | 4 ++-- inst/extdata/OSD/E/EASTWALKER.json | 4 ++-- inst/extdata/OSD/E/ECKMAN.json | 8 ++++---- inst/extdata/OSD/E/EDGAR.json | 6 +++--- inst/extdata/OSD/E/EDGELEY.json | 2 +- inst/extdata/OSD/E/EDMINSTER.json | 6 +++--- inst/extdata/OSD/E/EDROY.json | 2 +- inst/extdata/OSD/E/EDWIN.json | 6 +++--- inst/extdata/OSD/E/EGAN.json | 6 +++--- inst/extdata/OSD/E/EGAS.json | 6 +++--- inst/extdata/OSD/E/EGELAND.json | 4 ++-- inst/extdata/OSD/E/EKALAKA.json | 6 +++--- inst/extdata/OSD/E/ELBA.json | 10 +++++----- inst/extdata/OSD/E/ELBAVILLE.json | 2 +- inst/extdata/OSD/E/ELKADER.json | 10 +++++----- inst/extdata/OSD/E/ELKHILLS.json | 2 +- inst/extdata/OSD/E/ELKHORN.json | 4 ++-- inst/extdata/OSD/E/ELMVILLE.json | 12 ++++++------ inst/extdata/OSD/E/ELON.json | 6 +++--- inst/extdata/OSD/E/ELPAM.json | 10 +++++----- inst/extdata/OSD/E/ELSALADO.json | 2 +- inst/extdata/OSD/E/ELTREE.json | 12 ++++++------ inst/extdata/OSD/E/EMBARCADERO.json | 4 ++-- inst/extdata/OSD/E/EMBDEN.json | 6 +++--- inst/extdata/OSD/E/EMIGHA.json | 6 +++--- inst/extdata/OSD/E/EMIGRATION.json | 2 +- inst/extdata/OSD/E/EMRICK.json | 6 +++--- inst/extdata/OSD/E/ENERGY.json | 8 ++++---- inst/extdata/OSD/E/ENET.json | 4 ++-- inst/extdata/OSD/E/ENLOE.json | 4 ++-- inst/extdata/OSD/E/ENNING.json | 6 +++--- inst/extdata/OSD/E/ENSENADA.json | 6 +++--- inst/extdata/OSD/E/ENSTROM.json | 4 ++-- inst/extdata/OSD/E/ENTENTE.json | 2 +- inst/extdata/OSD/E/EOLA.json | 2 +- inst/extdata/OSD/E/EPOUFETTE.json | 2 +- inst/extdata/OSD/E/EPPING.json | 8 ++++---- inst/extdata/OSD/E/ERAMOSH.json | 8 ++++---- inst/extdata/OSD/E/ERD.json | 10 +++++----- inst/extdata/OSD/E/ERDA.json | 10 +++++----- inst/extdata/OSD/E/ERIE.json | 4 ++-- inst/extdata/OSD/E/ESCANABA.json | 2 +- inst/extdata/OSD/E/ESMOND.json | 6 +++--- inst/extdata/OSD/E/ESPELIE.json | 6 +++--- inst/extdata/OSD/E/ESPINAL.json | 2 +- inst/extdata/OSD/E/ETHAN.json | 8 ++++---- inst/extdata/OSD/E/ETOILE.json | 4 ++-- inst/extdata/OSD/E/EUDORA.json | 2 +- inst/extdata/OSD/E/EVRIDGE.json | 4 ++-- inst/extdata/OSD/E/EWA.json | 8 ++++---- inst/extdata/OSD/E/EXLINE.json | 8 ++++---- inst/extdata/OSD/F/FAA.json | 4 ++-- inst/extdata/OSD/F/FABENS.json | 4 ++-- inst/extdata/OSD/F/FADDIN.json | 4 ++-- inst/extdata/OSD/F/FAIRBURN.json | 8 ++++---- inst/extdata/OSD/F/FAIRDALE.json | 14 +++++++------- inst/extdata/OSD/F/FAIRLIE.json | 10 +++++----- inst/extdata/OSD/F/FAIRLO.json | 8 ++++---- inst/extdata/OSD/F/FAIRPORT.json | 2 +- inst/extdata/OSD/F/FAIRY.json | 8 ++++---- inst/extdata/OSD/F/FALKIRK.json | 8 ++++---- inst/extdata/OSD/F/FALLON.json | 2 +- inst/extdata/OSD/F/FANNO.json | 2 +- inst/extdata/OSD/F/FARGO.json | 8 ++++---- inst/extdata/OSD/F/FARLAND.json | 6 +++--- inst/extdata/OSD/F/FARMSWORTH.json | 8 ++++---- inst/extdata/OSD/F/FARRAR.json | 2 +- inst/extdata/OSD/F/FATTIG.json | 2 +- inst/extdata/OSD/F/FAUNCE.json | 6 +++--- inst/extdata/OSD/F/FAX.json | 2 +- inst/extdata/OSD/F/FEDORA.json | 10 +++++----- inst/extdata/OSD/F/FELOR.json | 4 ++-- inst/extdata/OSD/F/FERGUS.json | 2 +- inst/extdata/OSD/F/FERNEY.json | 8 ++++---- inst/extdata/OSD/F/FERRIS.json | 8 ++++---- inst/extdata/OSD/F/FIANDER.json | 10 +++++----- inst/extdata/OSD/F/FIBRE.json | 2 +- inst/extdata/OSD/F/FIFTEENMILE.json | 12 ++++++------ inst/extdata/OSD/F/FILLMORE.json | 2 +- inst/extdata/OSD/F/FIRESTEEL.json | 8 ++++---- inst/extdata/OSD/F/FISHBERRY.json | 6 +++--- inst/extdata/OSD/F/FLAMEN.json | 2 +- inst/extdata/OSD/F/FLASHER.json | 6 +++--- inst/extdata/OSD/F/FLAXTON.json | 8 ++++---- inst/extdata/OSD/F/FLEAK.json | 6 +++--- inst/extdata/OSD/F/FLOM.json | 6 +++--- inst/extdata/OSD/F/FORBING.json | 2 +- inst/extdata/OSD/F/FORESMAN.json | 2 +- inst/extdata/OSD/F/FORESTBURG.json | 4 ++-- inst/extdata/OSD/F/FORESTER.json | 12 ++++++------ inst/extdata/OSD/F/FORMAN.json | 6 +++--- inst/extdata/OSD/F/FORVIC.json | 2 +- inst/extdata/OSD/F/FOSSUM.json | 12 ++++++------ inst/extdata/OSD/F/FOSTERBURG.json | 4 ++-- inst/extdata/OSD/F/FRAILTON.json | 2 +- inst/extdata/OSD/F/FRAM.json | 8 ++++---- inst/extdata/OSD/F/FREEBOARD.json | 4 ++-- inst/extdata/OSD/F/FRENCHJOHN.json | 2 +- inst/extdata/OSD/F/FRIO.json | 10 +++++----- inst/extdata/OSD/F/FROBERG.json | 6 +++--- inst/extdata/OSD/F/FRONTENAC.json | 2 +- inst/extdata/OSD/G/GADONA.json | 2 +- inst/extdata/OSD/G/GALCHUTT.json | 4 ++-- inst/extdata/OSD/G/GALINDO.json | 8 ++++---- inst/extdata/OSD/G/GALLINAS.json | 4 ++-- inst/extdata/OSD/G/GALWAY.json | 2 +- inst/extdata/OSD/G/GARBORG.json | 4 ++-- inst/extdata/OSD/G/GARDENA.json | 6 +++--- inst/extdata/OSD/G/GARIPER.json | 4 ++-- inst/extdata/OSD/G/GARSOX.json | 2 +- inst/extdata/OSD/G/GATES.json | 2 +- inst/extdata/OSD/G/GAVINS.json | 8 ++++---- inst/extdata/OSD/G/GAYLORD.json | 4 ++-- inst/extdata/OSD/G/GAYVILLE.json | 10 +++++----- inst/extdata/OSD/G/GEEBURG.json | 4 ++-- inst/extdata/OSD/G/GEEFOUR.json | 2 +- inst/extdata/OSD/G/GERING.json | 6 +++--- inst/extdata/OSD/G/GERLANE.json | 4 ++-- inst/extdata/OSD/G/GETTYS.json | 8 ++++---- inst/extdata/OSD/G/GEYSEN.json | 4 ++-- inst/extdata/OSD/G/GIBBON.json | 12 ++++++------ inst/extdata/OSD/G/GILBY.json | 12 ++++++------ inst/extdata/OSD/G/GILCHRIST.json | 2 +- inst/extdata/OSD/G/GILLETT.json | 2 +- inst/extdata/OSD/G/GILLETT_GROVE.json | 2 +- inst/extdata/OSD/G/GILLIAM.json | 12 ++++++------ inst/extdata/OSD/G/GILT_EDGE.json | 8 ++++---- inst/extdata/OSD/G/GLADEK.json | 4 ++-- inst/extdata/OSD/G/GLADEVILLE.json | 2 +- inst/extdata/OSD/G/GLENHAM.json | 6 +++--- inst/extdata/OSD/G/GLENROSS.json | 10 +++++----- inst/extdata/OSD/G/GLOBE.json | 8 ++++---- inst/extdata/OSD/G/GLYNDON.json | 12 ++++++------ inst/extdata/OSD/G/GODECKE.json | 2 +- inst/extdata/OSD/G/GOLDEAGLE.json | 2 +- inst/extdata/OSD/G/GOLSUM.json | 2 +- inst/extdata/OSD/G/GOLVA.json | 8 ++++---- inst/extdata/OSD/G/GONVICK.json | 2 +- inst/extdata/OSD/G/GOODBYE.json | 6 +++--- inst/extdata/OSD/G/GOODING.json | 6 +++--- inst/extdata/OSD/G/GOOSEFLATS.json | 2 +- inst/extdata/OSD/G/GOOSENAWT.json | 4 ++-- inst/extdata/OSD/G/GOSPER.json | 8 ++++---- inst/extdata/OSD/G/GOSUMI.json | 2 +- inst/extdata/OSD/G/GOURLEY.json | 4 ++-- inst/extdata/OSD/G/GRACELAND.json | 6 +++--- inst/extdata/OSD/G/GRAIL.json | 4 ++-- inst/extdata/OSD/G/GRANBURY.json | 2 +- inst/extdata/OSD/G/GRANO.json | 8 ++++---- inst/extdata/OSD/G/GRASSNA.json | 4 ++-- inst/extdata/OSD/G/GRAT.json | 12 ++++++------ inst/extdata/OSD/G/GRAVERAET.json | 2 +- inst/extdata/OSD/G/GRAYBERT.json | 6 +++--- inst/extdata/OSD/G/GREAT_BEND.json | 8 ++++---- inst/extdata/OSD/G/GREENTON.json | 4 ++-- inst/extdata/OSD/G/GREENVINE.json | 2 +- inst/extdata/OSD/G/GREENWAY.json | 6 +++--- inst/extdata/OSD/G/GRIGSTON.json | 4 ++-- inst/extdata/OSD/G/GRIMSTAD.json | 12 ++++++------ inst/extdata/OSD/G/GROTON.json | 4 ++-- inst/extdata/OSD/G/GROVENA.json | 4 ++-- inst/extdata/OSD/G/GROWTON.json | 2 +- inst/extdata/OSD/G/GUAYACAN.json | 4 ++-- inst/extdata/OSD/G/GULLIVER.json | 4 ++-- inst/extdata/OSD/G/GULL_POINT.json | 4 ++-- inst/extdata/OSD/G/GURNEY.json | 6 +++--- inst/extdata/OSD/G/GUSTAVUS.json | 2 +- inst/extdata/OSD/G/GUTPORT.json | 2 +- inst/extdata/OSD/G/GWENA.json | 2 +- inst/extdata/OSD/G/GWINNER.json | 6 +++--- inst/extdata/OSD/H/HADAR.json | 2 +- inst/extdata/OSD/H/HALEIWA.json | 12 ++++++------ inst/extdata/OSD/H/HALIIMAILE.json | 8 ++++---- inst/extdata/OSD/H/HALL.json | 2 +- inst/extdata/OSD/H/HAMAR.json | 6 +++--- inst/extdata/OSD/H/HAMERLY.json | 8 ++++---- inst/extdata/OSD/H/HAMLET.json | 8 ++++---- inst/extdata/OSD/H/HAMRUB.json | 6 +++--- inst/extdata/OSD/H/HANAMAULU.json | 4 ++-- inst/extdata/OSD/H/HAND.json | 10 +++++----- inst/extdata/OSD/H/HANGERONE.json | 12 ++++++------ inst/extdata/OSD/H/HANLY.json | 8 ++++---- inst/extdata/OSD/H/HARMONY.json | 4 ++-- inst/extdata/OSD/H/HARNEY.json | 6 +++--- inst/extdata/OSD/H/HARRIET.json | 12 ++++++------ inst/extdata/OSD/H/HARTSBURG.json | 2 +- inst/extdata/OSD/H/HAUG.json | 2 +- inst/extdata/OSD/H/HAVANA.json | 2 +- inst/extdata/OSD/H/HAVERHILL.json | 12 ++++++------ inst/extdata/OSD/H/HAVRELON.json | 12 ++++++------ inst/extdata/OSD/H/HAWSER.json | 4 ++-- inst/extdata/OSD/H/HAYBOURNE.json | 2 +- inst/extdata/OSD/H/HAYDEN.json | 2 +- inst/extdata/OSD/H/HAYFORK.json | 8 ++++---- inst/extdata/OSD/H/HEIL.json | 8 ++++---- inst/extdata/OSD/H/HEIMDAL.json | 4 ++-- inst/extdata/OSD/H/HEIST.json | 2 +- inst/extdata/OSD/H/HEIZER.json | 6 +++--- inst/extdata/OSD/H/HEMINGFORD.json | 6 +++--- inst/extdata/OSD/H/HENKIN.json | 6 +++--- inst/extdata/OSD/H/HENNEPIN.json | 8 ++++---- inst/extdata/OSD/H/HENNINGS.json | 6 +++--- inst/extdata/OSD/H/HERAKLE.json | 4 ++-- inst/extdata/OSD/H/HERDCAMP.json | 6 +++--- inst/extdata/OSD/H/HERMLEIGH.json | 12 ++++++------ inst/extdata/OSD/H/HERO.json | 4 ++-- inst/extdata/OSD/H/HESPER.json | 6 +++--- inst/extdata/OSD/H/HEYDER.json | 2 +- inst/extdata/OSD/H/HEYDLAUFF.json | 10 +++++----- inst/extdata/OSD/H/HIBSAW.json | 12 ++++++------ inst/extdata/OSD/H/HIDATSA.json | 2 +- inst/extdata/OSD/H/HIGGINS.json | 10 +++++----- inst/extdata/OSD/H/HIGHLONESOME.json | 6 +++--- inst/extdata/OSD/H/HIGHMORE.json | 8 ++++---- inst/extdata/OSD/H/HIHIMANU.json | 2 +- inst/extdata/OSD/H/HILAIRE.json | 6 +++--- inst/extdata/OSD/H/HILGRAVE.json | 2 +- inst/extdata/OSD/H/HILMOE.json | 8 ++++---- inst/extdata/OSD/H/HILOLO.json | 16 ++++++++-------- inst/extdata/OSD/H/HINKLE.json | 2 +- inst/extdata/OSD/H/HISLE.json | 8 ++++---- inst/extdata/OSD/H/HODDEN.json | 4 ++-- inst/extdata/OSD/H/HODGE.json | 10 +++++----- inst/extdata/OSD/H/HOECKERS.json | 2 +- inst/extdata/OSD/H/HOFFLAND.json | 8 ++++---- inst/extdata/OSD/H/HOLDER.json | 2 +- inst/extdata/OSD/H/HOLDINGFORD.json | 2 +- inst/extdata/OSD/H/HOLDREGE.json | 2 +- inst/extdata/OSD/H/HOLMQUIST.json | 10 +++++----- inst/extdata/OSD/H/HOLOMUA.json | 12 ++++++------ inst/extdata/OSD/H/HOLT.json | 2 +- inst/extdata/OSD/H/HOLTLE.json | 4 ++-- inst/extdata/OSD/H/HOMME.json | 8 ++++---- inst/extdata/OSD/H/HONOULIULI.json | 4 ++-- inst/extdata/OSD/H/HOOLEHUA.json | 12 ++++++------ inst/extdata/OSD/H/HOOPLITE.json | 2 +- inst/extdata/OSD/H/HOOTEN.json | 2 +- inst/extdata/OSD/H/HOPDRAW.json | 8 ++++---- inst/extdata/OSD/H/HORD.json | 2 +- inst/extdata/OSD/H/HORSETRAP.json | 6 +++--- inst/extdata/OSD/H/HOTCREEK.json | 2 +- inst/extdata/OSD/H/HOUDEK.json | 6 +++--- inst/extdata/OSD/H/HOULA.json | 10 +++++----- inst/extdata/OSD/H/HOUSTON_BLACK.json | 10 +++++----- inst/extdata/OSD/H/HOVEN.json | 6 +++--- inst/extdata/OSD/H/HOVERT.json | 2 +- inst/extdata/OSD/H/HOVEY.json | 2 +- inst/extdata/OSD/H/HOYTVILLE.json | 2 +- inst/extdata/OSD/H/HUFFTON.json | 12 ++++++------ inst/extdata/OSD/H/HUGGINS.json | 2 +- inst/extdata/OSD/H/HUMBARGER.json | 6 +++--- inst/extdata/OSD/H/HUMDUN.json | 2 +- inst/extdata/OSD/H/HURLEY.json | 4 ++-- inst/extdata/OSD/H/HUSCHER.json | 10 +++++----- inst/extdata/OSD/H/HUSSA.json | 4 ++-- inst/extdata/OSD/H/HYDRO.json | 8 ++++---- inst/extdata/OSD/H/HYSHAM.json | 8 ++++---- inst/extdata/OSD/I/IAO.json | 8 ++++---- inst/extdata/OSD/I/ICEETAX.json | 2 +- inst/extdata/OSD/I/IGERT.json | 2 +- inst/extdata/OSD/I/IHLEN.json | 2 +- inst/extdata/OSD/I/IMLAY.json | 8 ++++---- inst/extdata/OSD/I/INDIAHOMA.json | 4 ++-- inst/extdata/OSD/I/INDUS.json | 6 +++--- inst/extdata/OSD/I/INFANTRY.json | 14 +++++++------- inst/extdata/OSD/I/INKSTER.json | 2 +- inst/extdata/OSD/I/INSIDERT.json | 4 ++-- inst/extdata/OSD/I/INTERIOR.json | 12 ++++++------ inst/extdata/OSD/I/IO.json | 2 +- inst/extdata/OSD/I/IROQUOIS.json | 2 +- inst/extdata/OSD/I/ISLA.json | 2 +- inst/extdata/OSD/I/IVAN.json | 6 +++--- inst/extdata/OSD/I/IVINS.json | 2 +- inst/extdata/OSD/J/JACARANDA.json | 2 +- inst/extdata/OSD/J/JAMES.json | 12 ++++++------ inst/extdata/OSD/J/JAMESTON.json | 4 ++-- inst/extdata/OSD/J/JANEFALLS.json | 8 ++++---- inst/extdata/OSD/J/JANESBURG.json | 4 ++-- inst/extdata/OSD/J/JANISE.json | 10 +++++----- inst/extdata/OSD/J/JANKOSH.json | 10 +++++----- inst/extdata/OSD/J/JANSITE.json | 8 ++++---- inst/extdata/OSD/J/JANUDE.json | 6 +++--- inst/extdata/OSD/J/JAVA.json | 6 +++--- inst/extdata/OSD/J/JENKSDRAW.json | 2 +- inst/extdata/OSD/J/JERAG.json | 4 ++-- inst/extdata/OSD/J/JERAULD.json | 6 +++--- inst/extdata/OSD/J/JOB.json | 2 +- inst/extdata/OSD/J/JOEMAY.json | 8 ++++---- inst/extdata/OSD/J/JOHNSTOWN.json | 2 +- inst/extdata/OSD/J/JOSBURG.json | 4 ++-- inst/extdata/OSD/J/JULES.json | 2 +- inst/extdata/OSD/J/JUMPCREEK.json | 2 +- inst/extdata/OSD/J/JUNCAL.json | 2 +- inst/extdata/OSD/K/KADOKA.json | 4 ++-- inst/extdata/OSD/K/KAENA.json | 6 +++--- inst/extdata/OSD/K/KAHANA.json | 10 +++++----- inst/extdata/OSD/K/KAHANUI.json | 4 ++-- inst/extdata/OSD/K/KAHOLA.json | 2 +- inst/extdata/OSD/K/KALAE.json | 8 ++++---- inst/extdata/OSD/K/KALAPA.json | 2 +- inst/extdata/OSD/K/KALAUPAPA.json | 4 ++-- inst/extdata/OSD/K/KALIHI.json | 6 +++--- inst/extdata/OSD/K/KALMARVILLE.json | 2 +- inst/extdata/OSD/K/KALOKO.json | 4 ++-- inst/extdata/OSD/K/KALONA.json | 2 +- inst/extdata/OSD/K/KAMAOLE.json | 6 +++--- inst/extdata/OSD/K/KANDOTA.json | 6 +++--- inst/extdata/OSD/K/KANDRIX.json | 12 ++++++------ inst/extdata/OSD/K/KANEPUU.json | 8 ++++---- inst/extdata/OSD/K/KANORADO.json | 14 +++++++------- inst/extdata/OSD/K/KANOSH.json | 10 +++++----- inst/extdata/OSD/K/KAPOD.json | 8 ++++---- inst/extdata/OSD/K/KAPUHIKANI.json | 6 +++--- inst/extdata/OSD/K/KARDEWEST.json | 12 ++++++------ inst/extdata/OSD/K/KARLSRUHE.json | 14 +++++++------- inst/extdata/OSD/K/KARLSTAD.json | 2 +- inst/extdata/OSD/K/KASOTA.json | 2 +- inst/extdata/OSD/K/KAUPO.json | 2 +- inst/extdata/OSD/K/KAWAIHAPAI.json | 8 ++++---- inst/extdata/OSD/K/KEAAU.json | 8 ++++---- inst/extdata/OSD/K/KEAHUA.json | 10 +++++----- inst/extdata/OSD/K/KEALIA.json | 10 +++++----- inst/extdata/OSD/K/KEAWAKAPU.json | 6 +++--- inst/extdata/OSD/K/KEISER.json | 6 +++--- inst/extdata/OSD/K/KEITH.json | 4 ++-- inst/extdata/OSD/K/KEKAHA.json | 12 ++++++------ inst/extdata/OSD/K/KELVIN.json | 6 +++--- inst/extdata/OSD/K/KEMOO.json | 12 ++++++------ inst/extdata/OSD/K/KENESAW.json | 2 +- inst/extdata/OSD/K/KENHILL.json | 2 +- inst/extdata/OSD/K/KENSAL.json | 4 ++-- inst/extdata/OSD/K/KENTLAND.json | 10 +++++----- inst/extdata/OSD/K/KHYBER.json | 6 +++--- inst/extdata/OSD/K/KIBIN.json | 6 +++--- inst/extdata/OSD/K/KIESEL.json | 4 ++-- inst/extdata/OSD/K/KINDRED.json | 8 ++++---- inst/extdata/OSD/K/KINGCO.json | 2 +- inst/extdata/OSD/K/KINGFISHER.json | 2 +- inst/extdata/OSD/K/KINGMAN.json | 10 +++++----- inst/extdata/OSD/K/KINGS_LAKE.json | 6 +++--- inst/extdata/OSD/K/KINZIE.json | 2 +- inst/extdata/OSD/K/KIPSON.json | 6 +++--- inst/extdata/OSD/K/KIRLEY.json | 8 ++++---- inst/extdata/OSD/K/KISSICK.json | 6 +++--- inst/extdata/OSD/K/KITCHELL.json | 4 ++-- inst/extdata/OSD/K/KITTITAS.json | 10 +++++----- inst/extdata/OSD/K/KITTSON.json | 6 +++--- inst/extdata/OSD/K/KIWANIS.json | 6 +++--- inst/extdata/OSD/K/KLAWASI.json | 2 +- inst/extdata/OSD/K/KNIFERIVER.json | 4 ++-- inst/extdata/OSD/K/KOEHLER.json | 2 +- inst/extdata/OSD/K/KOELE.json | 4 ++-- inst/extdata/OSD/K/KOHALA.json | 2 +- inst/extdata/OSD/K/KOKEE.json | 6 +++--- inst/extdata/OSD/K/KOKOKAHI.json | 8 ++++---- inst/extdata/OSD/K/KOLBERG.json | 2 +- inst/extdata/OSD/K/KOLEKOLE.json | 2 +- inst/extdata/OSD/K/KOLLS.json | 14 +++++++------- inst/extdata/OSD/K/KOLOA.json | 6 +++--- inst/extdata/OSD/K/KORCHEA.json | 10 +++++----- inst/extdata/OSD/K/KOSSUTH.json | 8 ++++---- inst/extdata/OSD/K/KOTO.json | 8 ++++---- inst/extdata/OSD/K/KOUNTER.json | 2 +- inst/extdata/OSD/K/KRANZBURG.json | 8 ++++---- inst/extdata/OSD/K/KREM.json | 2 +- inst/extdata/OSD/K/KUBE.json | 4 ++-- inst/extdata/OSD/K/KULA.json | 2 +- inst/extdata/OSD/K/KUMA.json | 2 +- inst/extdata/OSD/K/KUNIA.json | 10 +++++----- inst/extdata/OSD/K/KUNUWEIA.json | 2 +- inst/extdata/OSD/K/KYLE.json | 10 +++++----- inst/extdata/OSD/L/LABELLE.json | 4 ++-- inst/extdata/OSD/L/LABENZO.json | 14 +++++++------- inst/extdata/OSD/L/LABETTE.json | 2 +- inst/extdata/OSD/L/LABLATZ.json | 2 +- inst/extdata/OSD/L/LABU.json | 10 +++++----- inst/extdata/OSD/L/LACERDA.json | 2 +- inst/extdata/OSD/L/LADELLE.json | 10 +++++----- inst/extdata/OSD/L/LADNER.json | 4 ++-- inst/extdata/OSD/L/LAEWEST.json | 6 +++--- inst/extdata/OSD/L/LAHAINA.json | 12 ++++++------ inst/extdata/OSD/L/LAHONTAN.json | 2 +- inst/extdata/OSD/L/LAKEWIN.json | 2 +- inst/extdata/OSD/L/LAKE_CHARLES.json | 12 ++++++------ inst/extdata/OSD/L/LAKI.json | 6 +++--- inst/extdata/OSD/L/LAKOA.json | 2 +- inst/extdata/OSD/L/LAKOMA.json | 10 +++++----- inst/extdata/OSD/L/LAKOTA.json | 4 ++-- inst/extdata/OSD/L/LALAMILO.json | 4 ++-- inst/extdata/OSD/L/LAMO.json | 10 +++++----- inst/extdata/OSD/L/LAMOILLE.json | 2 +- inst/extdata/OSD/L/LAMOURE.json | 12 ++++++------ inst/extdata/OSD/L/LANE.json | 8 ++++---- inst/extdata/OSD/L/LANKIN.json | 6 +++--- inst/extdata/OSD/L/LANONA.json | 4 ++-- inst/extdata/OSD/L/LANSING.json | 2 +- inst/extdata/OSD/L/LANTRY.json | 12 ++++++------ inst/extdata/OSD/L/LAPED.json | 2 +- inst/extdata/OSD/L/LARIOSCAMP.json | 4 ++-- inst/extdata/OSD/L/LARSON.json | 8 ++++---- inst/extdata/OSD/L/LARVIE.json | 10 +++++----- inst/extdata/OSD/L/LAS.json | 8 ++++---- inst/extdata/OSD/L/LASITA.json | 2 +- inst/extdata/OSD/L/LAUREL.json | 6 +++--- inst/extdata/OSD/L/LAWET.json | 10 +++++----- inst/extdata/OSD/L/LAWSHE.json | 8 ++++---- inst/extdata/OSD/L/LAWTHER.json | 8 ++++---- inst/extdata/OSD/L/LAZARE.json | 4 ++-- inst/extdata/OSD/L/LA_PRAIRIE.json | 6 +++--- inst/extdata/OSD/L/LEADORE.json | 2 +- inst/extdata/OSD/L/LEATHERS.json | 2 +- inst/extdata/OSD/L/LEAVITT.json | 2 +- inst/extdata/OSD/L/LEFOR.json | 4 ++-- inst/extdata/OSD/L/LEHR.json | 6 +++--- inst/extdata/OSD/L/LEITER.json | 2 +- inst/extdata/OSD/L/LEMERT.json | 12 ++++++------ inst/extdata/OSD/L/LEMOND.json | 8 ++++---- inst/extdata/OSD/L/LEMOYNE.json | 10 +++++----- inst/extdata/OSD/L/LESHARA.json | 8 ++++---- inst/extdata/OSD/L/LESHO.json | 8 ++++---- inst/extdata/OSD/L/LETA.json | 8 ++++---- inst/extdata/OSD/L/LETCHER.json | 10 +++++----- inst/extdata/OSD/L/LEVASY.json | 8 ++++---- inst/extdata/OSD/L/LEWELLEN.json | 6 +++--- inst/extdata/OSD/L/LEX.json | 8 ++++---- inst/extdata/OSD/L/LEXSWORTH.json | 6 +++--- inst/extdata/OSD/L/LIENDRE.json | 4 ++-- inst/extdata/OSD/L/LIHUE.json | 8 ++++---- inst/extdata/OSD/L/LINDAAS.json | 4 ++-- inst/extdata/OSD/L/LINDALE.json | 2 +- inst/extdata/OSD/L/LINKVILLE.json | 2 +- inst/extdata/OSD/L/LINTON.json | 8 ++++---- inst/extdata/OSD/L/LIONHEAD.json | 4 ++-- inst/extdata/OSD/L/LISAM.json | 6 +++--- inst/extdata/OSD/L/LISCO.json | 10 +++++----- inst/extdata/OSD/L/LISMORE.json | 6 +++--- inst/extdata/OSD/L/LITIMBER.json | 4 ++-- inst/extdata/OSD/L/LITTLEMO.json | 8 ++++---- inst/extdata/OSD/L/LITTLENAN.json | 2 +- inst/extdata/OSD/L/LITTLESWAN.json | 4 ++-- inst/extdata/OSD/L/LITTLE_HORN.json | 6 +++--- inst/extdata/OSD/L/LIVIA.json | 2 +- inst/extdata/OSD/L/LIVINGSTON.json | 2 +- inst/extdata/OSD/L/LIVONA.json | 6 +++--- inst/extdata/OSD/L/LIVONIA.json | 4 ++-- inst/extdata/OSD/L/LOBURN.json | 6 +++--- inst/extdata/OSD/L/LODESTONE.json | 6 +++--- inst/extdata/OSD/L/LOHLER.json | 4 ++-- inst/extdata/OSD/L/LOHMILLER.json | 2 +- inst/extdata/OSD/L/LOHNES.json | 2 +- inst/extdata/OSD/L/LOMETA.json | 2 +- inst/extdata/OSD/L/LORAIN.json | 2 +- inst/extdata/OSD/L/LORETTO.json | 2 +- inst/extdata/OSD/L/LOVELOCK.json | 6 +++--- inst/extdata/OSD/L/LOWE.json | 14 +++++++------- inst/extdata/OSD/L/LOWRY.json | 8 ++++---- inst/extdata/OSD/L/LOX.json | 2 +- inst/extdata/OSD/L/LUALUALEI.json | 12 ++++++------ inst/extdata/OSD/L/LUANA.json | 2 +- inst/extdata/OSD/L/LUBBOCK.json | 6 +++--- inst/extdata/OSD/L/LUDDEN.json | 10 +++++----- inst/extdata/OSD/L/LUNDY.json | 2 +- inst/extdata/OSD/L/LUTE.json | 12 ++++++------ inst/extdata/OSD/L/LYNCH.json | 12 ++++++------ inst/extdata/OSD/L/LYNNDYL.json | 8 ++++---- inst/extdata/OSD/M/MACE.json | 4 ++-- inst/extdata/OSD/M/MACHUELO.json | 12 ++++++------ inst/extdata/OSD/M/MACIVER.json | 2 +- inst/extdata/OSD/M/MACKEN.json | 4 ++-- inst/extdata/OSD/M/MACKINAC.json | 2 +- inst/extdata/OSD/M/MADELIA.json | 2 +- inst/extdata/OSD/M/MADRAS.json | 2 +- inst/extdata/OSD/M/MAGNUS.json | 12 ++++++------ inst/extdata/OSD/M/MAHANA.json | 2 +- inst/extdata/OSD/M/MAHONEY.json | 4 ++-- inst/extdata/OSD/M/MAITLAND.json | 2 +- inst/extdata/OSD/M/MAKALAPA.json | 12 ++++++------ inst/extdata/OSD/M/MAKAWAO.json | 4 ++-- inst/extdata/OSD/M/MAKAWELI.json | 10 +++++----- inst/extdata/OSD/M/MAKENA.json | 2 +- inst/extdata/OSD/M/MAKIKI.json | 4 ++-- inst/extdata/OSD/M/MAKOTI.json | 8 ++++---- inst/extdata/OSD/M/MALA.json | 2 +- inst/extdata/OSD/M/MALTESE.json | 8 ++++---- inst/extdata/OSD/M/MAMALA.json | 4 ++-- inst/extdata/OSD/M/MANAWA.json | 2 +- inst/extdata/OSD/M/MANDAN.json | 10 +++++----- inst/extdata/OSD/M/MANFRED.json | 12 ++++++------ inst/extdata/OSD/M/MANNING.json | 6 +++--- inst/extdata/OSD/M/MANTADOR.json | 14 +++++++------- inst/extdata/OSD/M/MANVEL.json | 4 ++-- inst/extdata/OSD/M/MANZANILLO.json | 8 ++++---- inst/extdata/OSD/M/MARIANO.json | 2 +- inst/extdata/OSD/M/MARIAVILLE.json | 10 +++++----- inst/extdata/OSD/M/MARISSA.json | 2 +- inst/extdata/OSD/M/MARLAKE.json | 4 ++-- inst/extdata/OSD/M/MARMARTH.json | 4 ++-- inst/extdata/OSD/M/MARTILLO.json | 20 ++++++++++---------- inst/extdata/OSD/M/MARTINSON.json | 2 +- inst/extdata/OSD/M/MASCHETAH.json | 2 +- inst/extdata/OSD/M/MASSANETTA.json | 14 +++++++------- inst/extdata/OSD/M/MATCHWOOD.json | 4 ++-- inst/extdata/OSD/M/MAUVAIS.json | 6 +++--- inst/extdata/OSD/M/MAWER.json | 2 +- inst/extdata/OSD/M/MAX.json | 6 +++--- inst/extdata/OSD/M/MAZUMA.json | 2 +- inst/extdata/OSD/M/MCCLURE.json | 8 ++++---- inst/extdata/OSD/M/MCCONAUGHY.json | 10 +++++----- inst/extdata/OSD/M/MCCOOK.json | 10 +++++----- inst/extdata/OSD/M/MCCRACKEN.json | 2 +- inst/extdata/OSD/M/MCCULIGAN.json | 4 ++-- inst/extdata/OSD/M/MCDONALDSVILLE.json | 4 ++-- inst/extdata/OSD/M/MCGREW.json | 6 +++--- inst/extdata/OSD/M/MCKEEN.json | 14 +++++++------- inst/extdata/OSD/M/MCKELVIE.json | 2 +- inst/extdata/OSD/M/MCKENZIE.json | 8 ++++---- inst/extdata/OSD/M/MCKNIGHT.json | 6 +++--- inst/extdata/OSD/M/MCRAE.json | 4 ++-- inst/extdata/OSD/M/MEDBURN.json | 12 ++++++------ inst/extdata/OSD/M/MEDLIN.json | 8 ++++---- inst/extdata/OSD/M/MEGUIN.json | 14 +++++++------- inst/extdata/OSD/M/MEHURIN.json | 4 ++-- inst/extdata/OSD/M/MEKINOCK.json | 2 +- inst/extdata/OSD/M/MELADO.json | 14 +++++++------- inst/extdata/OSD/M/MENDELTNA.json | 2 +- inst/extdata/OSD/M/MENTO.json | 8 ++++---- inst/extdata/OSD/M/MERCERCAVE.json | 2 +- inst/extdata/OSD/M/METIGOSHE.json | 4 ++-- inst/extdata/OSD/M/METRE.json | 10 +++++----- inst/extdata/OSD/M/MIDDLEHILL.json | 2 +- inst/extdata/OSD/M/MIDFIELD.json | 4 ++-- inst/extdata/OSD/M/MILLBORO.json | 12 ++++++------ inst/extdata/OSD/M/MINATARE.json | 8 ++++---- inst/extdata/OSD/M/MINCHEY.json | 2 +- inst/extdata/OSD/M/MINGO.json | 2 +- inst/extdata/OSD/M/MINNEISKA.json | 4 ++-- inst/extdata/OSD/M/MINNETONKA.json | 2 +- inst/extdata/OSD/M/MINNEWASTA.json | 8 ++++---- inst/extdata/OSD/M/MINNEWAUKAN.json | 14 +++++++------- inst/extdata/OSD/M/MINOT.json | 10 +++++----- inst/extdata/OSD/M/MINWELLS.json | 8 ++++---- inst/extdata/OSD/M/MIRANDA.json | 6 +++--- inst/extdata/OSD/M/MIRASOL.json | 2 +- inst/extdata/OSD/M/MISERY.json | 2 +- inst/extdata/OSD/M/MISSLER.json | 4 ++-- inst/extdata/OSD/M/MITCHELL.json | 10 +++++----- inst/extdata/OSD/M/MIVIDA.json | 4 ++-- inst/extdata/OSD/M/MOBRIDGE.json | 6 +++--- inst/extdata/OSD/M/MODKIN.json | 2 +- inst/extdata/OSD/M/MOKULEIA.json | 6 +++--- inst/extdata/OSD/M/MOLINE.json | 6 +++--- inst/extdata/OSD/M/MOLOKAI.json | 10 +++++----- inst/extdata/OSD/M/MONDAMIN.json | 10 +++++----- inst/extdata/OSD/M/MONIA.json | 12 ++++++------ inst/extdata/OSD/M/MONOWI.json | 12 ++++++------ inst/extdata/OSD/M/MOODY.json | 4 ++-- inst/extdata/OSD/M/MORBENCH.json | 2 +- inst/extdata/OSD/M/MOREAU.json | 10 +++++----- inst/extdata/OSD/M/MORITZ.json | 16 ++++++++-------- inst/extdata/OSD/M/MORPH.json | 4 ++-- inst/extdata/OSD/M/MORSET.json | 2 +- inst/extdata/OSD/M/MORTON.json | 4 ++-- inst/extdata/OSD/M/MOSBY.json | 6 +++--- inst/extdata/OSD/M/MOSHER.json | 4 ++-- inst/extdata/OSD/M/MOSTVAL.json | 2 +- inst/extdata/OSD/M/MOTT.json | 2 +- inst/extdata/OSD/M/MOTTLAND.json | 6 +++--- inst/extdata/OSD/M/MOUNDHAVEN.json | 12 ++++++------ inst/extdata/OSD/M/MOUNDPRAIRIE.json | 4 ++-- inst/extdata/OSD/M/MOUNTMUMMY.json | 6 +++--- inst/extdata/OSD/M/MUDGEDRAW.json | 4 ++-- inst/extdata/OSD/M/MUDGETTS.json | 8 ++++---- inst/extdata/OSD/M/MUNJOR.json | 6 +++--- inst/extdata/OSD/M/MURDO.json | 4 ++-- inst/extdata/OSD/M/MUSKELLUNGE.json | 2 +- inst/extdata/OSD/N/NACHES.json | 2 +- inst/extdata/OSD/N/NACK.json | 6 +++--- inst/extdata/OSD/N/NACLINA.json | 6 +++--- inst/extdata/OSD/N/NAHON.json | 8 ++++---- inst/extdata/OSD/N/NAHRUB.json | 2 +- inst/extdata/OSD/N/NAKOY.json | 14 +++++++------- inst/extdata/OSD/N/NALCASE.json | 4 ++-- inst/extdata/OSD/N/NARANJO.json | 10 +++++----- inst/extdata/OSD/N/NAVO.json | 2 +- inst/extdata/OSD/N/NEBISH.json | 2 +- inst/extdata/OSD/N/NECHE.json | 10 +++++----- inst/extdata/OSD/N/NESS.json | 6 +++--- inst/extdata/OSD/N/NEVEE.json | 6 +++--- inst/extdata/OSD/N/NEVIOT.json | 2 +- inst/extdata/OSD/N/NEWALLA.json | 6 +++--- inst/extdata/OSD/N/NEWELL.json | 2 +- inst/extdata/OSD/N/NEWFOLDEN.json | 8 ++++---- inst/extdata/OSD/N/NEWPARK.json | 8 ++++---- inst/extdata/OSD/N/NEW_CAMBRIA.json | 12 ++++++------ inst/extdata/OSD/N/NIAGARA.json | 2 +- inst/extdata/OSD/N/NIARADA.json | 4 ++-- inst/extdata/OSD/N/NIBEN.json | 6 +++--- inst/extdata/OSD/N/NIBSON.json | 6 +++--- inst/extdata/OSD/N/NICHOLFLAT.json | 2 +- inst/extdata/OSD/N/NIMBRO.json | 6 +++--- inst/extdata/OSD/N/NINCH.json | 2 +- inst/extdata/OSD/N/NIOBELL.json | 8 ++++---- inst/extdata/OSD/N/NIOBRARA.json | 6 +++--- inst/extdata/OSD/N/NIU.json | 8 ++++---- inst/extdata/OSD/N/NOFET.json | 4 ++-- inst/extdata/OSD/N/NOHILI.json | 12 ++++++------ inst/extdata/OSD/N/NONOPAHU.json | 8 ++++---- inst/extdata/OSD/N/NOONAN.json | 6 +++--- inst/extdata/OSD/N/NOROD.json | 2 +- inst/extdata/OSD/N/NORREST.json | 10 +++++----- inst/extdata/OSD/N/NORTHCOTE.json | 10 +++++----- inst/extdata/OSD/N/NORTHWAY.json | 2 +- inst/extdata/OSD/N/NORTH_POWDER.json | 2 +- inst/extdata/OSD/N/NORWEST.json | 12 ++++++------ inst/extdata/OSD/N/NOTREES.json | 4 ++-- inst/extdata/OSD/N/NOVINA.json | 6 +++--- inst/extdata/OSD/N/NOXVILLE.json | 2 +- inst/extdata/OSD/N/NOYES.json | 6 +++--- inst/extdata/OSD/N/NUCKOLLS.json | 4 ++-- inst/extdata/OSD/N/NUCLA.json | 6 +++--- inst/extdata/OSD/N/NULEY.json | 2 +- inst/extdata/OSD/N/NUMA.json | 2 +- inst/extdata/OSD/N/NUNICA.json | 4 ++-- inst/extdata/OSD/N/NUTLEY.json | 8 ++++---- inst/extdata/OSD/N/NUTRIOSO.json | 2 +- inst/extdata/OSD/N/NYSSATON.json | 2 +- inst/extdata/OSD/O/OAHE.json | 4 ++-- inst/extdata/OSD/O/OANAPUKA.json | 6 +++--- inst/extdata/OSD/O/OBERT.json | 4 ++-- inst/extdata/OSD/O/OGLALA.json | 2 +- inst/extdata/OSD/O/OJATA.json | 10 +++++----- inst/extdata/OSD/O/OJINAGA.json | 18 +++++++++--------- inst/extdata/OSD/O/OKATON.json | 12 ++++++------ inst/extdata/OSD/O/OKO.json | 10 +++++----- inst/extdata/OSD/O/OKREEK.json | 8 ++++---- inst/extdata/OSD/O/OLBUT.json | 8 ++++---- inst/extdata/OSD/O/OLDHAM.json | 14 +++++++------- inst/extdata/OSD/O/OLTON.json | 2 +- inst/extdata/OSD/O/OMAK.json | 2 +- inst/extdata/OSD/O/OMIO.json | 8 ++++---- inst/extdata/OSD/O/ONITA.json | 6 +++--- inst/extdata/OSD/O/OPAL.json | 12 ++++++------ inst/extdata/OSD/O/OPECHEKAHTA.json | 12 ++++++------ inst/extdata/OSD/O/OPNISH.json | 10 +++++----- inst/extdata/OSD/O/ORD.json | 4 ++-- inst/extdata/OSD/O/ORELIA.json | 8 ++++---- inst/extdata/OSD/O/ORONOCO.json | 2 +- inst/extdata/OSD/O/ORTON.json | 6 +++--- inst/extdata/OSD/O/ORWET.json | 2 +- inst/extdata/OSD/O/OSHONE.json | 2 +- inst/extdata/OSD/O/OTOOLE.json | 8 ++++---- inst/extdata/OSD/O/OTTUMWA.json | 12 ++++++------ inst/extdata/OSD/O/OVERBOARD.json | 6 +++--- inst/extdata/OSD/O/OVERLAKE.json | 4 ++-- inst/extdata/OSD/O/OVERLY.json | 8 ++++---- inst/extdata/OSD/O/OVIDCREEK.json | 8 ++++---- inst/extdata/OSD/O/OVINA.json | 12 ++++++------ inst/extdata/OSD/O/OWANKA.json | 6 +++--- inst/extdata/OSD/P/PAAIKI.json | 8 ++++---- inst/extdata/OSD/P/PAGARI.json | 4 ++-- inst/extdata/OSD/P/PAIA.json | 6 +++--- inst/extdata/OSD/P/PAKA.json | 6 +++--- inst/extdata/OSD/P/PAKALA.json | 8 ++++---- inst/extdata/OSD/P/PALERF.json | 2 +- inst/extdata/OSD/P/PALMERS.json | 4 ++-- inst/extdata/OSD/P/PAMOA.json | 10 +++++----- inst/extdata/OSD/P/PANE.json | 2 +- inst/extdata/OSD/P/PANKY.json | 4 ++-- inst/extdata/OSD/P/PANOCHE.json | 2 +- inst/extdata/OSD/P/PANOZA.json | 2 +- inst/extdata/OSD/P/PANTON.json | 12 ++++++------ inst/extdata/OSD/P/PAPAA.json | 6 +++--- inst/extdata/OSD/P/PAPOOSE.json | 2 +- inst/extdata/OSD/P/PARANAT.json | 2 +- inst/extdata/OSD/P/PARCHIN.json | 8 ++++---- inst/extdata/OSD/P/PARKVILLE.json | 8 ++++---- inst/extdata/OSD/P/PARKWASH.json | 6 +++--- inst/extdata/OSD/P/PARMOD.json | 2 +- inst/extdata/OSD/P/PARNELL.json | 2 +- inst/extdata/OSD/P/PAROWAN.json | 4 ++-- inst/extdata/OSD/P/PARRITA.json | 4 ++-- inst/extdata/OSD/P/PARSHALL.json | 6 +++--- inst/extdata/OSD/P/PASCO.json | 10 +++++----- inst/extdata/OSD/P/PATE.json | 6 +++--- inst/extdata/OSD/P/PATENT.json | 4 ++-- inst/extdata/OSD/P/PATHFINDER.json | 12 ++++++------ inst/extdata/OSD/P/PATIDIDIT.json | 4 ++-- inst/extdata/OSD/P/PAUWELA.json | 10 +++++----- inst/extdata/OSD/P/PAWHUSKA.json | 4 ++-- inst/extdata/OSD/P/PAXICO.json | 8 ++++---- inst/extdata/OSD/P/PAYNE.json | 4 ++-- inst/extdata/OSD/P/PEAGRE.json | 2 +- inst/extdata/OSD/P/PEARL_HARBOR.json | 10 +++++----- inst/extdata/OSD/P/PEASLEY.json | 2 +- inst/extdata/OSD/P/PEEVER.json | 8 ++++---- inst/extdata/OSD/P/PEEVYWELL.json | 2 +- inst/extdata/OSD/P/PELAN.json | 6 +++--- inst/extdata/OSD/P/PENDEN.json | 8 ++++---- inst/extdata/OSD/P/PENO.json | 6 +++--- inst/extdata/OSD/P/PERELLA.json | 4 ++-- inst/extdata/OSD/P/PESOWYO.json | 4 ++-- inst/extdata/OSD/P/PHING.json | 6 +++--- inst/extdata/OSD/P/PHLISS.json | 2 +- inst/extdata/OSD/P/PIBLER.json | 2 +- inst/extdata/OSD/P/PIDINEEN.json | 8 ++++---- inst/extdata/OSD/P/PINEPOINT.json | 2 +- inst/extdata/OSD/P/PINERY.json | 8 ++++---- inst/extdata/OSD/P/PINEVAL.json | 2 +- inst/extdata/OSD/P/PINICON.json | 2 +- inst/extdata/OSD/P/PISHKUN.json | 6 +++--- inst/extdata/OSD/P/PITCHDRAW.json | 2 +- inst/extdata/OSD/P/PLANKINTON.json | 6 +++--- inst/extdata/OSD/P/PLATTE.json | 6 +++--- inst/extdata/OSD/P/PLAYMOOR.json | 10 +++++----- inst/extdata/OSD/P/PLAYORICO.json | 8 ++++---- inst/extdata/OSD/P/PLEDGER.json | 6 +++--- inst/extdata/OSD/P/POBLANO.json | 2 +- inst/extdata/OSD/P/POE.json | 2 +- inst/extdata/OSD/P/POGANEAB.json | 2 +- inst/extdata/OSD/P/POHAKUPU.json | 6 +++--- inst/extdata/OSD/P/POHOCCO.json | 6 +++--- inst/extdata/OSD/P/POINSETT.json | 10 +++++----- inst/extdata/OSD/P/PONCA.json | 6 +++--- inst/extdata/OSD/P/PONDEROSA.json | 2 +- inst/extdata/OSD/P/PORTAGEVILLE.json | 2 +- inst/extdata/OSD/P/PORTAL.json | 6 +++--- inst/extdata/OSD/P/POSEN.json | 2 +- inst/extdata/OSD/P/POSO.json | 10 +++++----- inst/extdata/OSD/P/POTWISHA.json | 4 ++-- inst/extdata/OSD/P/POWER.json | 2 +- inst/extdata/OSD/P/PRIM.json | 6 +++--- inst/extdata/OSD/P/PROMISE.json | 10 +++++----- inst/extdata/OSD/P/PROSPER.json | 6 +++--- inst/extdata/OSD/P/PUHI.json | 2 +- inst/extdata/OSD/P/PULEHU.json | 4 ++-- inst/extdata/OSD/P/PULLOUT.json | 6 +++--- inst/extdata/OSD/P/PURDIN.json | 4 ++-- inst/extdata/OSD/P/PUTCO.json | 4 ++-- inst/extdata/OSD/P/PUTNEY.json | 8 ++++---- inst/extdata/OSD/P/PUUONE.json | 4 ++-- inst/extdata/OSD/P/PUU_OPAE.json | 8 ++++---- inst/extdata/OSD/P/PYRON.json | 14 +++++++------- inst/extdata/OSD/P/PYXO.json | 8 ++++---- inst/extdata/OSD/Q/QUARTERBACK.json | 8 ++++---- inst/extdata/OSD/Q/QUEENCREEK.json | 6 +++--- inst/extdata/OSD/R/RABER.json | 8 ++++---- inst/extdata/OSD/R/RAD.json | 2 +- inst/extdata/OSD/R/RADIUM.json | 10 +++++----- inst/extdata/OSD/R/RAGLAN.json | 2 +- inst/extdata/OSD/R/RAINDANCE.json | 8 ++++---- inst/extdata/OSD/R/RALOCK.json | 6 +++--- inst/extdata/OSD/R/RALPH.json | 8 ++++---- inst/extdata/OSD/R/RALTON.json | 12 ++++++------ inst/extdata/OSD/R/RAMIRES.json | 4 ++-- inst/extdata/OSD/R/RANSLO.json | 8 ++++---- inst/extdata/OSD/R/RAPHO.json | 2 +- inst/extdata/OSD/R/RAPIDCREEK.json | 14 +++++++------- inst/extdata/OSD/R/RATONWEST.json | 6 +++--- inst/extdata/OSD/R/RAUVILLE.json | 8 ++++---- inst/extdata/OSD/R/RAVINE.json | 8 ++++---- inst/extdata/OSD/R/RAZOR.json | 6 +++--- inst/extdata/OSD/R/REAKOR.json | 4 ++-- inst/extdata/OSD/R/REDBIRD.json | 4 ++-- inst/extdata/OSD/R/REDIG.json | 12 ++++++------ inst/extdata/OSD/R/REDMORE.json | 2 +- inst/extdata/OSD/R/REDSTOE.json | 14 +++++++------- inst/extdata/OSD/R/REE.json | 6 +++--- inst/extdata/OSD/R/REEDER.json | 6 +++--- inst/extdata/OSD/R/REGAL.json | 10 +++++----- inst/extdata/OSD/R/REGAN.json | 12 ++++++------ inst/extdata/OSD/R/REINACH.json | 6 +++--- inst/extdata/OSD/R/REINER.json | 12 ++++++------ inst/extdata/OSD/R/RELIANCE.json | 8 ++++---- inst/extdata/OSD/R/RENNER.json | 2 +- inst/extdata/OSD/R/RENSHAW.json | 4 ++-- inst/extdata/OSD/R/RENTILL.json | 6 +++--- inst/extdata/OSD/R/REVA.json | 6 +++--- inst/extdata/OSD/R/RHAME.json | 4 ++-- inst/extdata/OSD/R/RHINEBECK.json | 2 +- inst/extdata/OSD/R/RHOADES.json | 10 +++++----- inst/extdata/OSD/R/RICHFIELD.json | 6 +++--- inst/extdata/OSD/R/RIDGEVIEW.json | 10 +++++----- inst/extdata/OSD/R/RIDOTT.json | 2 +- inst/extdata/OSD/R/RIFLEPIT.json | 4 ++-- inst/extdata/OSD/R/RILLOSO.json | 2 +- inst/extdata/OSD/R/RIMLAP.json | 2 +- inst/extdata/OSD/R/RITA.json | 2 +- inst/extdata/OSD/R/RITIDIAN.json | 4 ++-- inst/extdata/OSD/R/RITOAZUL.json | 2 +- inst/extdata/OSD/R/RIVERWAY.json | 4 ++-- inst/extdata/OSD/R/ROCKCUT.json | 2 +- inst/extdata/OSD/R/ROCKERVILLE.json | 6 +++--- inst/extdata/OSD/R/ROCKSPRING.json | 2 +- inst/extdata/OSD/R/ROCKWELL.json | 8 ++++---- inst/extdata/OSD/R/ROETEX.json | 2 +- inst/extdata/OSD/R/ROGRUBE.json | 14 +++++++------- inst/extdata/OSD/R/ROLETTE.json | 2 +- inst/extdata/OSD/R/ROLLA.json | 4 ++-- inst/extdata/OSD/R/ROLLINGER.json | 8 ++++---- inst/extdata/OSD/R/ROMAR_RANCH.json | 2 +- inst/extdata/OSD/R/RONDELL.json | 12 ++++++------ inst/extdata/OSD/R/RONSON.json | 10 +++++----- inst/extdata/OSD/R/ROOKS.json | 2 +- inst/extdata/OSD/R/ROOT.json | 2 +- inst/extdata/OSD/R/ROSEBUD.json | 8 ++++---- inst/extdata/OSD/R/ROSEGLEN.json | 6 +++--- inst/extdata/OSD/R/ROSEWOOD.json | 12 ++++++------ inst/extdata/OSD/R/ROSIE.json | 2 +- inst/extdata/OSD/R/ROSSFIELD.json | 2 +- inst/extdata/OSD/R/ROTHSAY.json | 4 ++-- inst/extdata/OSD/R/ROTURA.json | 4 ++-- inst/extdata/OSD/R/ROXANA.json | 2 +- inst/extdata/OSD/R/ROXBURY.json | 8 ++++---- inst/extdata/OSD/R/RUELLA.json | 6 +++--- inst/extdata/OSD/R/RUMLEY.json | 2 +- inst/extdata/OSD/R/RUNGE.json | 6 +++--- inst/extdata/OSD/R/RUSCO.json | 4 ++-- inst/extdata/OSD/R/RUSHCREEK.json | 12 ++++++------ inst/extdata/OSD/R/RUSKLYN.json | 10 +++++----- inst/extdata/OSD/R/RUSO.json | 4 ++-- inst/extdata/OSD/R/RYAN.json | 8 ++++---- inst/extdata/OSD/R/RYEGATE.json | 2 +- inst/extdata/OSD/R/RYUS.json | 10 +++++----- inst/extdata/OSD/S/SAEMO.json | 2 +- inst/extdata/OSD/S/SAGOLA.json | 2 +- inst/extdata/OSD/S/SAKAKAWEA.json | 12 ++++++------ inst/extdata/OSD/S/SALIDA.json | 2 +- inst/extdata/OSD/S/SALINAS.json | 2 +- inst/extdata/OSD/S/SALMO.json | 12 ++++++------ inst/extdata/OSD/S/SALTILLO.json | 12 ++++++------ inst/extdata/OSD/S/SALTINE.json | 6 +++--- inst/extdata/OSD/S/SAMSIL.json | 8 ++++---- inst/extdata/OSD/S/SANBORN.json | 10 +++++----- inst/extdata/OSD/S/SANCAJO.json | 2 +- inst/extdata/OSD/S/SANDOSE.json | 2 +- inst/extdata/OSD/S/SANGER.json | 10 +++++----- inst/extdata/OSD/S/SANSARC.json | 8 ++++---- inst/extdata/OSD/S/SANTA_CLARA.json | 4 ++-- inst/extdata/OSD/S/SANTONI.json | 14 +++++++------- inst/extdata/OSD/S/SAN_SEBASTIAN.json | 12 ++++++------ inst/extdata/OSD/S/SARBEN.json | 2 +- inst/extdata/OSD/S/SARDAK.json | 6 +++--- inst/extdata/OSD/S/SATANTA.json | 10 +++++----- inst/extdata/OSD/S/SAVO.json | 6 +++--- inst/extdata/OSD/S/SAWDUST.json | 10 +++++----- inst/extdata/OSD/S/SCHAEFERVILLE.json | 10 +++++----- inst/extdata/OSD/S/SCHALLER.json | 2 +- inst/extdata/OSD/S/SCHAMBER.json | 6 +++--- inst/extdata/OSD/S/SCHUELKE.json | 4 ++-- inst/extdata/OSD/S/SCORIO.json | 6 +++--- inst/extdata/OSD/S/SCOTT.json | 2 +- inst/extdata/OSD/S/SCOVILLE.json | 2 +- inst/extdata/OSD/S/SCROGGIN.json | 8 ++++---- inst/extdata/OSD/S/SEAGOVILLE.json | 6 +++--- inst/extdata/OSD/S/SEARING.json | 4 ++-- inst/extdata/OSD/S/SEEPRID.json | 4 ++-- inst/extdata/OSD/S/SEEYA.json | 2 +- inst/extdata/OSD/S/SELIA.json | 6 +++--- inst/extdata/OSD/S/SELPATS.json | 4 ++-- inst/extdata/OSD/S/SEN.json | 6 +++--- inst/extdata/OSD/S/SENLAR.json | 12 ++++++------ inst/extdata/OSD/S/SHAM.json | 6 +++--- inst/extdata/OSD/S/SHAMBO.json | 6 +++--- inst/extdata/OSD/S/SHEEPROCK.json | 6 +++--- inst/extdata/OSD/S/SHEFFIELD.json | 2 +- inst/extdata/OSD/S/SHELLWOOD.json | 12 ++++++------ inst/extdata/OSD/S/SHERDAHL.json | 8 ++++---- inst/extdata/OSD/S/SHIPS.json | 8 ++++---- inst/extdata/OSD/S/SHIPSHE.json | 2 +- inst/extdata/OSD/S/SHONKIN.json | 4 ++-- inst/extdata/OSD/S/SHUE.json | 4 ++-- inst/extdata/OSD/S/SHULLSBURG.json | 2 +- inst/extdata/OSD/S/SIDDOWAY.json | 6 +++--- inst/extdata/OSD/S/SIDNEY.json | 10 +++++----- inst/extdata/OSD/S/SIECHE.json | 4 ++-- inst/extdata/OSD/S/SILVER_CREEK.json | 10 +++++----- inst/extdata/OSD/S/SIMONIN.json | 2 +- inst/extdata/OSD/S/SINAI.json | 4 ++-- inst/extdata/OSD/S/SINGSAAS.json | 2 +- inst/extdata/OSD/S/SIOUX.json | 6 +++--- inst/extdata/OSD/S/SISSETON.json | 6 +++--- inst/extdata/OSD/S/SKELRIDGE.json | 2 +- inst/extdata/OSD/S/SKIDOOSPRINGS.json | 2 +- inst/extdata/OSD/S/SLAN.json | 2 +- inst/extdata/OSD/S/SLIDELL.json | 2 +- inst/extdata/OSD/S/SLIMBUTTE.json | 8 ++++---- inst/extdata/OSD/S/SLIPBACK.json | 2 +- inst/extdata/OSD/S/SMILEY.json | 10 +++++----- inst/extdata/OSD/S/SNEAD.json | 4 ++-- inst/extdata/OSD/S/SNYDER.json | 14 +++++++------- inst/extdata/OSD/S/SOEN.json | 2 +- inst/extdata/OSD/S/SOFIA.json | 6 +++--- inst/extdata/OSD/S/SOGN.json | 4 ++-- inst/extdata/OSD/S/SOHOLT.json | 2 +- inst/extdata/OSD/S/SOLEDAD.json | 4 ++-- inst/extdata/OSD/S/SOLOMON.json | 10 +++++----- inst/extdata/OSD/S/SONIC.json | 10 +++++----- inst/extdata/OSD/S/SONTAG.json | 4 ++-- inst/extdata/OSD/S/SOPHIA.json | 12 ++++++------ inst/extdata/OSD/S/SORUM.json | 6 +++--- inst/extdata/OSD/S/SOURIS.json | 8 ++++---- inst/extdata/OSD/S/SOUTHAM.json | 14 +++++++------- inst/extdata/OSD/S/SOUTHSIDE.json | 6 +++--- inst/extdata/OSD/S/SPEARFISH.json | 8 ++++---- inst/extdata/OSD/S/SPEARVILLE.json | 6 +++--- inst/extdata/OSD/S/SPILLCO.json | 8 ++++---- inst/extdata/OSD/S/SPORLEY.json | 2 +- inst/extdata/OSD/S/SPOTTEDHORSE.json | 2 +- inst/extdata/OSD/S/SPRAUER.json | 2 +- inst/extdata/OSD/S/SPRINGCOVE.json | 10 +++++----- inst/extdata/OSD/S/SPRINGCREEK.json | 2 +- inst/extdata/OSD/S/SPURLOCK.json | 4 ++-- inst/extdata/OSD/S/SQUARE_BUTTE.json | 4 ++-- inst/extdata/OSD/S/ST._ONGE.json | 14 +++++++------- inst/extdata/OSD/S/STADY.json | 8 ++++---- inst/extdata/OSD/S/STEALTH.json | 10 +++++----- inst/extdata/OSD/S/STEERSTOMPED.json | 10 +++++----- inst/extdata/OSD/S/STEINAUER.json | 8 ++++---- inst/extdata/OSD/S/STICKNEY.json | 4 ++-- inst/extdata/OSD/S/STILL_LAKE.json | 8 ++++---- inst/extdata/OSD/S/STIRK.json | 6 +++--- inst/extdata/OSD/S/STIRUM.json | 10 +++++----- inst/extdata/OSD/S/STOCKBRIDGE.json | 4 ++-- inst/extdata/OSD/S/STORLA.json | 14 +++++++------- inst/extdata/OSD/S/STRAHAN.json | 2 +- inst/extdata/OSD/S/STRAYHOSS.json | 6 +++--- inst/extdata/OSD/S/STROM.json | 2 +- inst/extdata/OSD/S/SUEPERT.json | 2 +- inst/extdata/OSD/S/SUGAR.json | 2 +- inst/extdata/OSD/S/SULLY.json | 4 ++-- inst/extdata/OSD/S/SUNRAY.json | 2 +- inst/extdata/OSD/S/SUSIE_CREEK.json | 2 +- inst/extdata/OSD/S/SUTLEY.json | 6 +++--- inst/extdata/OSD/S/SUTPHEN.json | 6 +++--- inst/extdata/OSD/S/SUZMAYNE.json | 6 +++--- inst/extdata/OSD/S/SVEA.json | 4 ++-- inst/extdata/OSD/S/SWALA.json | 2 +- inst/extdata/OSD/S/SWANBOY.json | 8 ++++---- inst/extdata/OSD/S/SWEDEGROVE.json | 2 +- inst/extdata/OSD/S/SWEETCREEK.json | 2 +- inst/extdata/OSD/S/SWEETGRASS.json | 8 ++++---- inst/extdata/OSD/S/SWENODA.json | 4 ++-- inst/extdata/OSD/S/SWINT.json | 10 +++++----- inst/extdata/OSD/S/SYRENE.json | 8 ++++---- inst/extdata/OSD/T/TACOOSH.json | 2 +- inst/extdata/OSD/T/TAGUS.json | 4 ++-- inst/extdata/OSD/T/TALAG.json | 6 +++--- inst/extdata/OSD/T/TANAHA.json | 6 +++--- inst/extdata/OSD/T/TANAZZA.json | 2 +- inst/extdata/OSD/T/TANSEM.json | 8 ++++---- inst/extdata/OSD/T/TAOPI.json | 2 +- inst/extdata/OSD/T/TASSEL.json | 6 +++--- inst/extdata/OSD/T/TEAKETTLE.json | 2 +- inst/extdata/OSD/T/TECKLA.json | 2 +- inst/extdata/OSD/T/TEEMAT.json | 2 +- inst/extdata/OSD/T/TEETERS.json | 2 +- inst/extdata/OSD/T/TELA.json | 6 +++--- inst/extdata/OSD/T/TEMVIK.json | 6 +++--- inst/extdata/OSD/T/TENCEE.json | 2 +- inst/extdata/OSD/T/TENDERFOOT.json | 2 +- inst/extdata/OSD/T/TENNEYCANYON.json | 2 +- inst/extdata/OSD/T/TENPLY.json | 2 +- inst/extdata/OSD/T/TETILLA.json | 4 ++-- inst/extdata/OSD/T/TETONKA.json | 2 +- inst/extdata/OSD/T/THEDFORD.json | 6 +++--- inst/extdata/OSD/T/THESISTERS.json | 6 +++--- inst/extdata/OSD/T/THREETOP.json | 6 +++--- inst/extdata/OSD/T/THURBER.json | 2 +- inst/extdata/OSD/T/TIETON.json | 4 ++-- inst/extdata/OSD/T/TIFFANY.json | 4 ++-- inst/extdata/OSD/T/TILFORD.json | 10 +++++----- inst/extdata/OSD/T/TILLMAN.json | 10 +++++----- inst/extdata/OSD/T/TILVERN.json | 8 ++++---- inst/extdata/OSD/T/TIMBERG.json | 2 +- inst/extdata/OSD/T/TIMPER.json | 4 ++-- inst/extdata/OSD/T/TINSLEY.json | 2 +- inst/extdata/OSD/T/TIPPIPAH.json | 2 +- inst/extdata/OSD/T/TOBIN.json | 2 +- inst/extdata/OSD/T/TOBY.json | 2 +- inst/extdata/OSD/T/TOLMAN.json | 2 +- inst/extdata/OSD/T/TOLNA.json | 2 +- inst/extdata/OSD/T/TOMERA.json | 2 +- inst/extdata/OSD/T/TONIO.json | 10 +++++----- inst/extdata/OSD/T/TONKA.json | 2 +- inst/extdata/OSD/T/TOOELE.json | 2 +- inst/extdata/OSD/T/TOOTALL.json | 4 ++-- inst/extdata/OSD/T/TOPSEY.json | 8 ++++---- inst/extdata/OSD/T/TOTTEN.json | 14 +++++++------- inst/extdata/OSD/T/TOULON.json | 2 +- inst/extdata/OSD/T/TOWNER.json | 4 ++-- inst/extdata/OSD/T/TRACK.json | 10 +++++----- inst/extdata/OSD/T/TRACTUFF.json | 2 +- inst/extdata/OSD/T/TRAER.json | 2 +- inst/extdata/OSD/T/TREADWAY.json | 16 ++++++++-------- inst/extdata/OSD/T/TREBOR.json | 4 ++-- inst/extdata/OSD/T/TRENARY.json | 2 +- inst/extdata/OSD/T/TREON.json | 4 ++-- inst/extdata/OSD/T/TREY.json | 2 +- inst/extdata/OSD/T/TRIBBEY.json | 2 +- inst/extdata/OSD/T/TRIPP.json | 4 ++-- inst/extdata/OSD/T/TROSKY.json | 2 +- inst/extdata/OSD/T/TROUT_COVE.json | 10 +++++----- inst/extdata/OSD/T/TRUJILLO.json | 2 +- inst/extdata/OSD/T/TRULON.json | 10 +++++----- inst/extdata/OSD/T/TRUMBULL.json | 2 +- inst/extdata/OSD/T/TSAYA.json | 2 +- inst/extdata/OSD/T/TUFFMAN.json | 8 ++++---- inst/extdata/OSD/T/TUGAS.json | 4 ++-- inst/extdata/OSD/T/TUGHILL.json | 2 +- inst/extdata/OSD/T/TULELAKE.json | 4 ++-- inst/extdata/OSD/T/TULIA.json | 14 +++++++------- inst/extdata/OSD/T/TUPPER.json | 4 ++-- inst/extdata/OSD/T/TURTON.json | 6 +++--- inst/extdata/OSD/T/TUSLER.json | 8 ++++---- inst/extdata/OSD/T/TUTHILL.json | 2 +- inst/extdata/OSD/T/TUTTLE.json | 8 ++++---- inst/extdata/OSD/T/TWILIGHT.json | 4 ++-- inst/extdata/OSD/T/TWINPALMS.json | 2 +- inst/extdata/OSD/T/TWOBITTER.json | 2 +- inst/extdata/OSD/T/TWOJAYAY.json | 14 +++++++------- inst/extdata/OSD/T/TWOTOP.json | 10 +++++----- inst/extdata/OSD/T/TYCREEK.json | 2 +- inst/extdata/OSD/U/UBLY.json | 2 +- inst/extdata/OSD/U/UFFENS.json | 4 ++-- inst/extdata/OSD/U/ULEN.json | 10 +++++----- inst/extdata/OSD/U/ULUPALAKUA.json | 2 +- inst/extdata/OSD/U/ULY.json | 4 ++-- inst/extdata/OSD/U/ULYSSES.json | 10 +++++----- inst/extdata/OSD/U/URANDA.json | 6 +++--- inst/extdata/OSD/U/UTURIN.json | 2 +- inst/extdata/OSD/U/UWALA.json | 10 +++++----- inst/extdata/OSD/V/VALLERS.json | 8 ++++---- inst/extdata/OSD/V/VANOCKER.json | 8 ++++---- inst/extdata/OSD/V/VASSETT.json | 2 +- inst/extdata/OSD/V/VEBAR.json | 4 ++-- inst/extdata/OSD/V/VEGOCITO.json | 8 ++++---- inst/extdata/OSD/V/VELENO.json | 16 ++++++++-------- inst/extdata/OSD/V/VELVA.json | 10 +++++----- inst/extdata/OSD/V/VENLO.json | 2 +- inst/extdata/OSD/V/VENUM.json | 2 +- inst/extdata/OSD/V/VERDEL.json | 6 +++--- inst/extdata/OSD/V/VERDIGRE.json | 6 +++--- inst/extdata/OSD/V/VERENDRYE.json | 12 ++++++------ inst/extdata/OSD/V/VERGENNES.json | 6 +++--- inst/extdata/OSD/V/VERICK.json | 2 +- inst/extdata/OSD/V/VIBORG.json | 8 ++++---- inst/extdata/OSD/V/VICTORIA.json | 12 ++++++------ inst/extdata/OSD/V/VIENNA.json | 6 +++--- inst/extdata/OSD/V/VIKING.json | 8 ++++---- inst/extdata/OSD/V/VINCOM.json | 2 +- inst/extdata/OSD/V/VINJE.json | 2 +- inst/extdata/OSD/V/VINSON.json | 6 +++--- inst/extdata/OSD/V/VIVIAN.json | 8 ++++---- inst/extdata/OSD/V/VODA.json | 6 +++--- inst/extdata/OSD/W/WABEK.json | 4 ++-- inst/extdata/OSD/W/WADENA.json | 2 +- inst/extdata/OSD/W/WADENILL.json | 2 +- inst/extdata/OSD/W/WAHIAWA.json | 12 ++++++------ inst/extdata/OSD/W/WAHIKULI.json | 10 +++++----- inst/extdata/OSD/W/WAHPETON.json | 12 ++++++------ inst/extdata/OSD/W/WAHTUM.json | 8 ++++---- inst/extdata/OSD/W/WAIAKOA.json | 6 +++--- inst/extdata/OSD/W/WAIALEALE.json | 6 +++--- inst/extdata/OSD/W/WAIALUA.json | 10 +++++----- inst/extdata/OSD/W/WAIAWA.json | 4 ++-- inst/extdata/OSD/W/WAIHUNA.json | 16 ++++++++-------- inst/extdata/OSD/W/WAIKALOA.json | 4 ++-- inst/extdata/OSD/W/WAIKANE.json | 2 +- inst/extdata/OSD/W/WAIKAPU.json | 12 ++++++------ inst/extdata/OSD/W/WAIKOMO.json | 6 +++--- inst/extdata/OSD/W/WAILUKU.json | 10 +++++----- inst/extdata/OSD/W/WAINEE.json | 8 ++++---- inst/extdata/OSD/W/WAIPAHU.json | 8 ++++---- inst/extdata/OSD/W/WAKEEN.json | 6 +++--- inst/extdata/OSD/W/WAKO.json | 4 ++-- inst/extdata/OSD/W/WALDECK.json | 8 ++++---- inst/extdata/OSD/W/WALDRON.json | 10 +++++----- inst/extdata/OSD/W/WALKE.json | 6 +++--- inst/extdata/OSD/W/WALUM.json | 8 ++++---- inst/extdata/OSD/W/WAMBA.json | 2 +- inst/extdata/OSD/W/WAMDUSKA.json | 14 +++++++------- inst/extdata/OSD/W/WANAGAN.json | 10 +++++----- inst/extdata/OSD/W/WANBLEE.json | 8 ++++---- inst/extdata/OSD/W/WANN.json | 6 +++--- inst/extdata/OSD/W/WARSING.json | 8 ++++---- inst/extdata/OSD/W/WASHTENAW.json | 2 +- inst/extdata/OSD/W/WASIOJA.json | 2 +- inst/extdata/OSD/W/WATERTOWN.json | 2 +- inst/extdata/OSD/W/WATROUS.json | 4 ++-- inst/extdata/OSD/W/WATTON.json | 2 +- inst/extdata/OSD/W/WAUBAY.json | 6 +++--- inst/extdata/OSD/W/WAUCEDAH.json | 2 +- inst/extdata/OSD/W/WAUKENABO.json | 2 +- inst/extdata/OSD/W/WAUKON.json | 2 +- inst/extdata/OSD/W/WAURIKA.json | 4 ++-- inst/extdata/OSD/W/WAYDEN.json | 8 ++++---- inst/extdata/OSD/W/WEGA.json | 2 +- inst/extdata/OSD/W/WELLSFORD.json | 4 ++-- inst/extdata/OSD/W/WENDOVER.json | 6 +++--- inst/extdata/OSD/W/WENDTE.json | 8 ++++---- inst/extdata/OSD/W/WENTWORTH.json | 6 +++--- inst/extdata/OSD/W/WERNER.json | 8 ++++---- inst/extdata/OSD/W/WESO.json | 2 +- inst/extdata/OSD/W/WESTGATE.json | 4 ++-- inst/extdata/OSD/W/WESTMORE.json | 2 +- inst/extdata/OSD/W/WESTOVER.json | 10 +++++----- inst/extdata/OSD/W/WESWIND.json | 4 ++-- inst/extdata/OSD/W/WETA.json | 10 +++++----- inst/extdata/OSD/W/WETROCK.json | 6 +++--- inst/extdata/OSD/W/WEWELA.json | 2 +- inst/extdata/OSD/W/WHETSOON.json | 6 +++--- inst/extdata/OSD/W/WHIRLO.json | 2 +- inst/extdata/OSD/W/WHITECLIFF.json | 6 +++--- inst/extdata/OSD/W/WHITELAKE.json | 10 +++++----- inst/extdata/OSD/W/WHITEWATER.json | 6 +++--- inst/extdata/OSD/W/WHITE_SWAN.json | 4 ++-- inst/extdata/OSD/W/WILDHORSE.json | 14 +++++++------- inst/extdata/OSD/W/WILDORS.json | 6 +++--- inst/extdata/OSD/W/WILDROSE.json | 16 ++++++++-------- inst/extdata/OSD/W/WILID.json | 10 +++++----- inst/extdata/OSD/W/WILLARD.json | 2 +- inst/extdata/OSD/W/WILLIAMS.json | 6 +++--- inst/extdata/OSD/W/WILLIAMSBURG.json | 2 +- inst/extdata/OSD/W/WILLOWDALE.json | 2 +- inst/extdata/OSD/W/WILTON.json | 6 +++--- inst/extdata/OSD/W/WITTEN.json | 12 ++++++------ inst/extdata/OSD/W/WOLCOTT.json | 4 ++-- inst/extdata/OSD/W/WOLF_POINT.json | 2 +- inst/extdata/OSD/W/WOLVERINE.json | 6 +++--- inst/extdata/OSD/W/WOODSLAKE.json | 4 ++-- inst/extdata/OSD/W/WOOD_RIVER.json | 8 ++++---- inst/extdata/OSD/W/WORMSER.json | 8 ++++---- inst/extdata/OSD/W/WORTHING.json | 2 +- inst/extdata/OSD/W/WORTMAN.json | 8 ++++---- inst/extdata/OSD/W/WYANDOTTE.json | 12 ++++++------ inst/extdata/OSD/W/WYARD.json | 4 ++-- inst/extdata/OSD/W/WYATT.json | 4 ++-- inst/extdata/OSD/W/WYKEHAM.json | 6 +++--- inst/extdata/OSD/W/WYNDMERE.json | 10 +++++----- inst/extdata/OSD/W/WYRENE.json | 12 ++++++------ inst/extdata/OSD/Y/YAWDIM.json | 8 ++++---- inst/extdata/OSD/Y/YEATON.json | 10 +++++----- inst/extdata/OSD/Y/YECROSS.json | 4 ++-- inst/extdata/OSD/Y/YELLOW_MEDICINE.json | 4 ++-- inst/extdata/OSD/Y/YOCKEY.json | 8 ++++---- inst/extdata/OSD/Y/YTURRIA.json | 2 +- inst/extdata/OSD/Z/ZABOROSKY.json | 2 +- inst/extdata/OSD/Z/ZAHL.json | 6 +++--- inst/extdata/OSD/Z/ZAPA.json | 4 ++-- inst/extdata/OSD/Z/ZARK.json | 2 +- inst/extdata/OSD/Z/ZEELAND.json | 4 ++-- inst/extdata/OSD/Z/ZELL.json | 10 +++++----- inst/extdata/OSD/Z/ZELLA.json | 4 ++-- inst/extdata/OSD/Z/ZENDA.json | 6 +++--- inst/extdata/OSD/Z/ZEONA.json | 2 +- inst/extdata/OSD/Z/ZIPPEL.json | 10 +++++----- inst/extdata/OSD/Z/ZOE.json | 4 ++-- inst/extdata/OSD/Z/ZOLA.json | 10 +++++----- inst/extdata/OSD/Z/ZUMAN.json | 8 ++++---- inst/extdata/OSD/Z/ZUMBRO.json | 6 +++--- 1553 files changed, 4457 insertions(+), 4457 deletions(-) diff --git a/inst/extdata/OSD/A/AAZDAHL.json b/inst/extdata/OSD/A/AAZDAHL.json index 24d6f119c6..eb00377a0e 100644 --- a/inst/extdata/OSD/A/AAZDAHL.json +++ b/inst/extdata/OSD/A/AAZDAHL.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--20 to 36 inches; grayish brown (2.5Y 5/2) clay loam; weak medium subangular blocky structure; friable; about 5 percent coarse fragments; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; light olive brown (2.5Y 5/4) clay loam; common fine faint yellowish brown (10YR 5/6) and few fine prominent gray (5Y 5/1) mottles; massive; friable; about 5 percent coarse fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ABERDEEN.json b/inst/extdata/OSD/A/ABERDEEN.json index 8590585124..bc318d4a67 100644 --- a/inst/extdata/OSD/A/ABERDEEN.json +++ b/inst/extdata/OSD/A/ABERDEEN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkyz1--26 to 31 inches; light gray (2.5Y 7/2) silty clay loam, grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; hard, firm, sticky and plastic; common fine nests of gypsum and other salts; common very fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyz2--31 to 38 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; hard, firm, sticky and plastic; common fine nests of gypsum and other salts; common very fine accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined Bkyz horizons 0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--38 to 51 inches; light gray (2.5Y 7/2) silt loam, grayish brown (2.5Y 5/2) moist; few fine prominent of yellowish brown (10YR 5/6) redoximorphic concentrations and few fine distinct gray (10YR 5/1) moist redoximorphic depletions; massive; hard, friable, slightly sticky and slightly plastic; few fine threads and nests of gypsum and other salts; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--51 to 60 inches; pale yellow (2.5Y 7/4) silt loam, laminated with thin layers of silty clay and very fine sandy loam, light olive brown (2.5Y 5/4) moist; common fine prominent yellowish brown (10YR 5/6) and strong brown (7.5YR 5/6) redoximorphic concentrations, and gray (10YR 5/1) moist redoximorphic depletions; massive; laminations 1 to 3 mm thick; slightly hard, friable, slightly sticky and slightly plastic; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/A/ACKETT.json b/inst/extdata/OSD/A/ACKETT.json index 723cfa5ace..cc17c601dd 100644 --- a/inst/extdata/OSD/A/ACKETT.json +++ b/inst/extdata/OSD/A/ACKETT.json @@ -158,7 +158,7 @@ "cf_class": "extremely cobbly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Btkq--15 to 20 cm; light gray (10YR 7/2) extremely cobbly clay, very pale brown (10YR 7/3) moist; massive; extremely hard, extremely firm, moderately sticky and moderately plastic; common distinct clay films on faces of peds and in pores; many continuous silica cemented laminations throughout; fractures are 0.6 cm wide and are 20 cm apart; few very fine roots in fractures; few very fine tubular pores; 70 percent cobbles, 10 percent gravel; violent effervescence; moderately alkaline (pH 8.4); abrupt smooth boundary. (0 to 8 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Btk--20 to 36 cm; very pale brown (10YR 7/3) very gravelly clay loam, pale brown (10YR 6/3) moist; weak medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few very fine and fine roots; few very fine tubular pores; common distinct clay films on faces of peds and in pores; 40 percent gravel size duripan fragments; violent effervescence (25 percent calcium carbonate); moderately alkaline (pH 8.4); abrupt smooth boundary. (8 to 18 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bkqm--36 to 71 cm; white (10YR 8/1) fractured indurated duripan; very pale brown (10YR 7/3) moist; massive; many continuous silica cemented laminations throughout the duripan; fractures are 0.6 cm wide and are 50 cm apart; few very fine roots in fractures of the duripan; violent effervescence; abrupt smooth boundary. (20 to 38 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "3Bkq--71 to 127 cm; multi-colored extremely gravelly sand; single grain; loose in places; 80 percent gravel; weak carbonate-silica cementation with carbonate pendants on undersides of gravel; violent effervescence; moderately alkaline (pH 8.2); abrupt smooth boundary. (25 to 60 cm)" diff --git a/inst/extdata/OSD/A/ADE.json b/inst/extdata/OSD/A/ADE.json index cf597d802c..86676b59ff 100644 --- a/inst/extdata/OSD/A/ADE.json +++ b/inst/extdata/OSD/A/ADE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--60 to 70 inches; brownish yellow (10YR 6/6) fine sand; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/AGAR.json b/inst/extdata/OSD/A/AGAR.json index 27e40fa93f..b0b1fed52b 100644 --- a/inst/extdata/OSD/A/AGAR.json +++ b/inst/extdata/OSD/A/AGAR.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--18 to 22 inches; grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to moderate medium and fine subangular blocky; hard, friable; few fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--22 to 34 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable; common medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk3--34 to 40 inches; light brownish gray (2.5Y 6/2) silt loam, grayish brown (2.5Y 5/2) moist; weak medium subangular blocky structure; hard, friable; common medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizon is 10 to 25 inches.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--40 to 61 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; massive; slightly hard, friable; few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/AGENCY.json b/inst/extdata/OSD/A/AGENCY.json index 0a55b1e804..6985936aa9 100644 --- a/inst/extdata/OSD/A/AGENCY.json +++ b/inst/extdata/OSD/A/AGENCY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Crkq--29 to 33 inches; paralithic tuff with silica and calcium carbonate coatings along fractures; moderately effervescent. ( 0 to 6 inches thick )" diff --git a/inst/extdata/OSD/A/AGUILAR.json b/inst/extdata/OSD/A/AGUILAR.json index 06c68c16a7..aa23939d86 100644 --- a/inst/extdata/OSD/A/AGUILAR.json +++ b/inst/extdata/OSD/A/AGUILAR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btn2--10 to 14 inches (25 to 36 cm); brown (10YR 5/3), silty clay, brown (10YR 4/3) moist; moderate coarse columnar structure parting to strong medium subangular blocks; extremely hard, very firm, very sticky and very plastic; few very fine and fine roots; common continuous distinct clay films on faces of peds; common fine salt threads; slight effervescence, 21 percent sodium absorption ratio; strongly alkaline (pH 8.8); clear smooth boundary. (combined thickness of the Btn horizons is 8 to 14 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btny--14 to 23 inches (36 to 58 cm); brown (10YR 5/3) clay, brown (10YR 4/3) moist; moderate medium columnar structure parting to strong medium angular blocks; extremely hard, very firm, very sticky and very plastic; few very fine roots; common continuous distinct clay films on faces of peds; common medium salt and gypsum threads; strong effervescence, 21 percent sodium absorption ratio; strongly alkaline (pH 8.8); clear smooth boundary. (7 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btkny--23 to 29 inches (58 to 74 cm); brown (10YR 5/3) clay loam, brown (10YR 4/3) moist; strong medium subangular blocky structure; extremely hard, very firm, moderately sticky and moderately plastic; few patchy distinct clay films on faces of peds; common coarse carbonate threads and common coarse salt and gypsum masses; violent effervescence, 22 percent sodium absorption ratio; strongly alkaline (pH 8.6); clear smooth boundary. (2 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkny--29 to 45 inches (74 to 114 cm); grayish brown (10YR 5/2) silty clay loam, brown (10YR 5/3) moist; 18 percent sand; moderate medium subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; common medium salt and gypsum threads; common medium distinct carbonate threads; violent effervescence (3 percent calcium carbonate equivalent), 22 percent sodium absorption ratio; moderately alkaline (pH 8.4); gradual smooth boundary. (10 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bny--45 to 65 inches (114 to 165 cm); grayish brown (10YR 5/2) silty clay loam, brown (10YR 5/3) moist; weak medium subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; common medium salt and gypsum threads; common medium carbonate threads; violent effervescence (2 percent calcium carbonate equivalent); 21 percent sodium absorption ratio; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/A/AHOLT.json b/inst/extdata/OSD/A/AHOLT.json index 73052b281a..0ac3066699 100644 --- a/inst/extdata/OSD/A/AHOLT.json +++ b/inst/extdata/OSD/A/AHOLT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 6 inches; black (10YR 2/1) clay, very dark gray (10YR 3/1) dry; strong fine and very fine granular structure; very sticky, very hard; many fine roots; slight effervescence; neutral; clear smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bg1--6 to 14 inches; black (10YR 2/1) clay, dark gray (N 4/0) dry; few fine distinct brown (10YR 4/3) mottles; strong very fine angular and subangular blocky structure; very sticky, very hard; common fine roots; shiny pressure faces; slight effervescence, mildly alkaline; smooth gradual boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg2--14 to 22 inches; very dark gray (10YR 3/1) clay, dark gray (N 4/0) dry; few fine distinct dark grayish brown (2.5Y 4/2) and brown (10YR 4/3) mottles; moderate medium angular and subangular blocky structure; very sticky, very hard; few fine roots; few very fine calcium carbonate concretions; shiny pressure faces; strong effervescence; mildly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg3--22 to 34 inches; gray (5Y 5/1) clay, common fine distinct dark grayish brown (2.5Y 4/2) and common fine prominent olive brown (2.5Y 4/4) mottles; moderate medium angular and subangular blocky structure; very sticky, very hard; few fine calcium carbonate concretions; shiny pressure faces; strong effervescence; mildly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bg4--34 to 46 inches; mixed gray (5Y 5/1) and dark gray (5Y 4/1) clay; common fine prominent olive brown (2.5Y 4/4) mottles; weak coarse subangular blocky structure; very sticky, very hard; few fine calcium carbonate concretions; shiny pressure faces; strong effervescence; mildly alkaline; clear smooth boundary. (Combined thickness of the Bg horizon is 34 to more than 70 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cg1--46 to 58 inches; gray (5Y 5/1) and (5Y 6/1) silty clay loam; common medium prominent light olive brown (2.5Y 5/4) mottles; massive; sticky, hard; strong effervescence; mildly alkaline; gradual smooth boundary. Cg2--58 to 66 inches; mottled gray (10YR 5/1) and yellowish brown (10YR 5/6) silty clay loam; massive; sticky, hard; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/A/AHOY.json b/inst/extdata/OSD/A/AHOY.json index 465b4f71be..6982576287 100644 --- a/inst/extdata/OSD/A/AHOY.json +++ b/inst/extdata/OSD/A/AHOY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "3Bt3--26 to 33 inches, (67 to 84 cm); black (5Y 2.5/2) clay, very dark grayish brown (2.5Y 3/2) moist; 45 percent clay; moderate medium subangular blocky structure; hard, firm, very sticky, very plastic; common very fine roots throughout; distinct clay films on all faces of peds; slight effervescence; moderately acid (pH 6.0 by Phenol red); clear wavy boundary. (Horizon thickness ranges from 10 to 18 cm, 4 to 7 inches)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Bss--33 to 47 inches, (84 to 152 cm);, black (5Y 2.5/2) clay, black (5Y 2.5/2) moist; 65 percent clay; massive; very hard, very firm, very sticky, very plastic; common very fine roots throughout; prominent slickensides (pedogenic) on vertical faces of peds; strong effervescence; neutral (pH 7.0 by Phenol red)." diff --git a/inst/extdata/OSD/A/AHTANUM.json b/inst/extdata/OSD/A/AHTANUM.json index f04f6b15d4..cdba3f476b 100644 --- a/inst/extdata/OSD/A/AHTANUM.json +++ b/inst/extdata/OSD/A/AHTANUM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1--0 to 4 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; many roots; common fine pores; violent effervescence; very strongly alkaline (pH 9.4); abrupt smooth boundary. (2 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--4 to 10 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak medium platy structure; slightly hard, friable, slightly sticky and slightly plastic; common roots; common fine pores; violent effervescence; very strongly alkaline (pH 9.4; clear wavy boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bn--10 to 21 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; common roots; many fine pores; violent effervescence; very strongly alkaline (pH 9.4); gradual wavy boundary. (1 to 24 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkqm--21 to 31 inches; pale brown (10YR 6/3) silt loam, dark brown (10YR 4/3) moist; massive; weakly cemented lime-silica hardpan; brittle, hard; few roots; many fine pores; some disseminated lime; violent effervescence; abrupt wavy boundary. (1 to 20 inches thick)" diff --git a/inst/extdata/OSD/A/AIDO.json b/inst/extdata/OSD/A/AIDO.json index f6b3984e7b..d4ba1f58de 100644 --- a/inst/extdata/OSD/A/AIDO.json +++ b/inst/extdata/OSD/A/AIDO.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bssk--10 to 26 inches; brown (10YR 5/3) clay, dark brown (10YR 4/3) moist; strong very coarse prismatic structure; hard, friable, very sticky and very plastic; common very fine roots; common very fine tubular and many very fine interstitial pores; about 7 percent pebbles; visible cracks greater than 1 cm in diameter; many pressure faces; few weak slickenslides; strong effervescent, disseminated lime and a few fine soft lime masses; moderately alkaline (pH 8.2); clear wavy boundary. (10 to 30 inches thick)." diff --git a/inst/extdata/OSD/A/AIRSHIP.json b/inst/extdata/OSD/A/AIRSHIP.json index 558ba2cbb8..4e1106b3d7 100644 --- a/inst/extdata/OSD/A/AIRSHIP.json +++ b/inst/extdata/OSD/A/AIRSHIP.json @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--35 to 43 inches, (90 to 110 cm); brownish yellow (10YR 6/6) broken face extremely gravelly sandy loam, yellowish brown (10YR 5/6) broken face moist; 8 percent clay; massive; slightly hard, loose, nonsticky, nonplastic; many very fine interstitial pores; 60 percent well rounded indurated 2 to 75 millimeter mixed rock fragments; very slight effervescence, by HCl, 1 normal; slightly alkaline, pH 7.4 by pH meter 1:1 water; abrupt smooth boundary. (20 to 30 centimeters thick)" diff --git a/inst/extdata/OSD/A/AKASKA.json b/inst/extdata/OSD/A/AKASKA.json index 9b4273acc0..5751d1edfa 100644 --- a/inst/extdata/OSD/A/AKASKA.json +++ b/inst/extdata/OSD/A/AKASKA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--14 to 17 inches; grayish brown (10YR 5/2) silty clay loam; very dark grayish brown (10YR 3/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common fine roots; thin patchy clay films, slight effervescence; slightly alkaline; gradual wavy boundary. (Combined Bt horizons is 10 to 20 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 27 inches; light brownish gray (2.5Y 6/2) silt clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak, medium and coarse subangular blocky; hard, friable, slightly sticky and slightly plastic; few fine roots; common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--27 to 37 inches; light brownish gray (2.5Y 6/2) silt clay loam, grayish brown (2.5Y 5/2) moist; weak medium and coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; common fine accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (Combined Bk horizons is 0 to 20 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--37 to 60 inches; multicolored sand and gravel, single grained; loose; slight effervescence; neutral." diff --git a/inst/extdata/OSD/A/ALAE.json b/inst/extdata/OSD/A/ALAE.json index cd72c88ac7..d6b247ddf3 100644 --- a/inst/extdata/OSD/A/ALAE.json +++ b/inst/extdata/OSD/A/ALAE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "CB--18 to 36 centimeters (7 to 14 inches); very dark grayish brown (10YR 3/2) sandy loam, brown (10YR 4/3) dry; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; common very fine pores; many ash particles up to 2 millimeters in diameter that do not break down on continued rubbing; slight effervescence with hydrochloric acid; slightly alkaline (pH 7.4); abrupt wavy boundary. (5 to 15 inches)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk1--36 to 74 centimeters (14 to 29 inches); very dark gray (10YR 3/1) gravelly coarse and very coarse sand, gray (10YR 5/1) dry; single grained; loose; many ash particles up to 2 millimeters in diameter; 20 percent subangular 'a'a gravel-size fragments of basalt; violent effervescence with hydrochloric acid; moderately alkaline (pH 8.2); clear wavy boundary. (10 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk2--74 to 140 centimeters (29 to 55 inches); grayish brown (10YR 5/2) very gravelly, very coarse sand, gray (10YR 5/1) dry; single grained; loose; 35 percent subangular 'a'a gravel and 15 percent subangular 'a'a cobbles; many volcanic ash particles up to 2 millimeters in diameter; strong effervescence with hydrochloric acid; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/A/ALCAZAR.json b/inst/extdata/OSD/A/ALCAZAR.json index eea7060741..66b41ce99d 100644 --- a/inst/extdata/OSD/A/ALCAZAR.json +++ b/inst/extdata/OSD/A/ALCAZAR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 46 centimeters (0.0 to 18.1 inches); light brown (7.5YR 6/4) crushed loam, brown (7.5YR 4/4) crushed, moist; 51 percent sand; 38 percent silt; 11 percent clay; weak medium subangular blocky structure; noncemented, nonsticky, nonplastic; moderate excavation difficulty; common fine roots throughout; electrical conductivity of 5.0 mmhos/cm by ec meter, 1:1 water; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 8.4, pH meter 1:1 water; gradual smooth boundary. Lab sample # D7377. (15 to 30 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--46 to 203 centimeters (18.1 to 79.9 inches); light brown (7.5YR 6/4) crushed stratified loamy fine sand, brown (7.5YR 4/4) crushed, moist; 87 percent sand; 9 percent silt; 4 percent clay; massive; noncemented, nonsticky, nonplastic; moderate excavation difficulty; electrical conductivity of 1.4 mmhos/cm by ec meter, 1:1 water; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 8.1, pH meter 1:1 water; common thin (.5 to 2 inch thick) pink (7.5YR 7/3) crushed strata of fine sand and loamy very fine sand, brown (7.5YR 5/3) crushed, moist. Lab sample # D7378." diff --git a/inst/extdata/OSD/A/ALDA.json b/inst/extdata/OSD/A/ALDA.json index cd9af7a662..6c1a0759a2 100644 --- a/inst/extdata/OSD/A/ALDA.json +++ b/inst/extdata/OSD/A/ALDA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--28 to 43 centimeters (11 to 17 inches); grayish brown (10YR 5/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; soft, very friable; common fine roots; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 20 centimeters (0 to 8 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--43 to 74 centimeters (17 to 29 inches); light brownish gray (10YR 6/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; common fine distinct dark yellowish brown (10YR 4/4) iron stains in the matrix; weak fine subangular blocky structure; soft, very friable; few fine roots; fine strata of fine sand and coarse sand; strong effervescence; moderately alkaline; clear wavy boundary. (30 to 43 centimeters (12 to 17 inches) thick)" diff --git a/inst/extdata/OSD/A/ALDAPE.json b/inst/extdata/OSD/A/ALDAPE.json index e182bb2fd9..c2b461d521 100644 --- a/inst/extdata/OSD/A/ALDAPE.json +++ b/inst/extdata/OSD/A/ALDAPE.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkq--47 to 53 inches; very pale brown (10YR 7/4) sandy loam, yellowish brown (10YR 5/4) moist; moderate fine subangular blocky structure; hard, friable, nonsticky and nonplastic; few very fine and fine roots; few very fine and fine tubular pores; 20 percent weakly cemented durinodes; violently effervescent, common fine and medium strongly effervescent masses and seams of segregated calcium carbonates; strongly alkaline (pH 8.6); abrupt wavy boundary. (6 to 24 inches thick)" diff --git a/inst/extdata/OSD/A/ALGOMA.json b/inst/extdata/OSD/A/ALGOMA.json index 56aadb4302..d4c055a8e9 100644 --- a/inst/extdata/OSD/A/ALGOMA.json +++ b/inst/extdata/OSD/A/ALGOMA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 11 inches; black (10YR 2/1) silt loam, gray (10YR 5/1) dry; weak medium platy structure; friable, slightly sticky and nonplastic; many roots; many very fine pores; weakly effervescent; strongly alkaline (pH 8.7); abrupt smooth boundary. (7 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--11 to 24 inches; grayish brown (2.5Y 5/2) silt loam, white (N 8/) dry; common fine olive brown mottles; weak thin platy structure; firm, slightly sticky and nonplastic; many roots; common very fine tubular pores; weakly effervescent; strongly alkaline (pH 8.6); abrupt smooth boundary. (8 to 15 inches thick)" diff --git a/inst/extdata/OSD/A/ALIBATES.json b/inst/extdata/OSD/A/ALIBATES.json index 5ed4c3a54e..309acd61b1 100644 --- a/inst/extdata/OSD/A/ALIBATES.json +++ b/inst/extdata/OSD/A/ALIBATES.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 18 cm (0 to 7 in); brown (7.5YR 4/3) loam, dark brown (7.5YR 3/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable; many very fine and fine roots; common fine pores; very slight effervescence; slightly alkaline, pH 7.4; clear smooth boundary. (Thickness of the A or Ap horizons is 13 to 30 cm [5 to 12 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt--18 to 46 cm (7 to 18 in); brown (7.5YR 4/3) clay loam, dark brown (7.5YR 3/3) moist; moderate coarse prismatic parting to moderate medium subangular blocky structure; hard, firm; few fine roots; common fine pores; common faint clay films on ped surfaces; very slight effervescence; slightly alkaline, pH 7.8; clear smooth boundary. (Thickness of Bt horizon is 46 to 100 cm [18 to 40 in])" diff --git a/inst/extdata/OSD/A/ALICE.json b/inst/extdata/OSD/A/ALICE.json index 119ebf449d..72c1294034 100644 --- a/inst/extdata/OSD/A/ALICE.json +++ b/inst/extdata/OSD/A/ALICE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--26 to 43 inches; light gray (10YR 7/2) fine sandy loam, grayish brown (10YR 5/2) moist; weak medium prismatic structure; soft, friable; violent effervescence; moderately alkaline; gradual smooth boundary. (6 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--43 to 57 inches; light gray (10YR 7/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; massive; soft, friable; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--57 to 60 inches; light gray (10YR 7/2) very fine sandy loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ALINE.json b/inst/extdata/OSD/A/ALINE.json index 4c7b5ea867..5a68dbb5f0 100644 --- a/inst/extdata/OSD/A/ALINE.json +++ b/inst/extdata/OSD/A/ALINE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly acid", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "E--20 to 86 cm (8 to 34 in); light brown (7.5YR 6/4) fine sand; brown (7.5YR 5/4) moist; single grained; loose; many fine roots; slightly acid; slightly effervescent to strongly effervescent; clear wavy boundary. [Thickness of the E horizon is 0 to 91 cm ([8 to 36 in])" diff --git a/inst/extdata/OSD/A/ALKABO.json b/inst/extdata/OSD/A/ALKABO.json index 9b6995b24d..659b0e1b71 100644 --- a/inst/extdata/OSD/A/ALKABO.json +++ b/inst/extdata/OSD/A/ALKABO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 27 inches; light olive brown (2.5Y 5/4) silt loam, olive brown (2.5Y 4/4) moist; moderate medium prismatic structure parting to moderate medium angular blocky; slightly hard, friable, sticky and plastic; common fine and medium irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--27 to 45 inches; light gray (2.5Y 7/2) silt loam, grayish brown (2.5Y 5/2) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; slightly hard, friable, sticky and plastic; common medium and few coarse irregularly shaped masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 10 to 30 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--45 to 60 inches; olive (5Y 5/3) clay loam, olive (5Y 4/3) moist; massive; hard, firm, very sticky and very plastic; about 10 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ALLEY.json b/inst/extdata/OSD/A/ALLEY.json index 889ca1552c..413195ce9f 100644 --- a/inst/extdata/OSD/A/ALLEY.json +++ b/inst/extdata/OSD/A/ALLEY.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk--46 to 71 cm; pale brown (10YR 6/3) gravelly fine sandy loam, dark yellowish brown (10YR 4/4) moist; many fine and medium distinct very pale brown (10YR 8/2) carbonate filaments; massive; slightly hard, friable, nonsticky and nonplastic; few very fine roots; few fine tubular pores; 20 percent gravel; few faint clay bridges between sand grains; matrix is slightly effervescent with strongly effervescent carbonate filaments; moderately alkaline (pH 8.4); abrupt smooth boundary. (0 to 30 cm thick)" diff --git a/inst/extdata/OSD/A/ALLIANCE.json b/inst/extdata/OSD/A/ALLIANCE.json index dd9e2ec1a4..e27b758b3b 100644 --- a/inst/extdata/OSD/A/ALLIANCE.json +++ b/inst/extdata/OSD/A/ALLIANCE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--26 to 51 inches; light gray (10YR 7/2) very fine sandy loam, light brownish gray (10YR 6/2) moist; massive; soft, very friable; 5 percent by volume sandstone gravel; violent effervescence; moderately alkaline; clear wavy boundary. (6 to 26 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--51 to 60 inches; light gray (10YR 7/2) weakly cemented very fine grain sandstone; light brownish gray (10YR 6/2) moist; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ALPOWA.json b/inst/extdata/OSD/A/ALPOWA.json index 9a90b4cff6..020180e293 100644 --- a/inst/extdata/OSD/A/ALPOWA.json +++ b/inst/extdata/OSD/A/ALPOWA.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--15 to 31 inches; pale brown (10YR 6/3) very gravelly silt loam, dark brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; many very fine pores; many coatings of lime on undersides of rock fragments; 40 percent pebbles and cobbles; violent effervescence; moderately alkaline (pH 8.2); gradual wavy boundary. (12 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--31 to 49 inches; very pale brown (10YR 7/3) very gravelly loam, brown (10YR 5/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; many very fine pores; 45 percent pebbles and cobbles; violent effervescence; strongly alkaline (pH 8.5); gradual wavy boundary. (14 to 22 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk3--49 to 60 inches; light yellowish brown (10YR 6/4) very gravelly coarse sandy loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; common fine roots; 45 percent pebbles and cobbles; continuous coatings of lime on undersides of rock fragments; violent effervescence; strongly alkaline (pH 9.0)." diff --git a/inst/extdata/OSD/A/ALSTAD.json b/inst/extdata/OSD/A/ALSTAD.json index 1f2ce80afb..61100b9efa 100644 --- a/inst/extdata/OSD/A/ALSTAD.json +++ b/inst/extdata/OSD/A/ALSTAD.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--124 to 152 centimeters; dark yellowish brown (10YR 4/4) fine sandy loam; massive; friable; common medium rounded iron-manganese concretions; common fine carbonate threads; few medium rounded soft masses of calcium carbonate; many medium prominent strong brown (7.5YR 5/6) and common fine distinct dark brown (7.5YR 3/4) masses of iron accumulation; common fine distinct grayish brown (10YR 5/2) iron depletions; about 6 percent gravel and 1 percent cobbles; some of the gravel are shale fragments; moderately alkaline; strong effervescence." diff --git a/inst/extdata/OSD/A/ALTASLOUGH.json b/inst/extdata/OSD/A/ALTASLOUGH.json index 30ccbe35bf..ee1b5530ed 100644 --- a/inst/extdata/OSD/A/ALTASLOUGH.json +++ b/inst/extdata/OSD/A/ALTASLOUGH.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--13 to 24 inches; 70 percent dark gray (5Y 4/1) and 30 percent light olive gray (5Y 6/2) clay loam, 70 percent black (5Y 2/1) moist and 30 percent olive gray (5Y 5/2) moist; weak medium subangular blocky structure; very hard, extremely firm, moderately sticky and moderately plastic; common very fine and few fine and medium roots throughout; many very fine and fine and moderately few medium tubular and interstitial pores; slightly effervescent with disseminated carbonates in dark gray (5Y 4/1) matrix, and strongly effervescent with disseminated carbonates in dark gray (5Y 4/1) matrix, and segregated in light olive gray (5Y 6/2) matrix as few (1 percent), fine, irregular carbonate threads and as few (1 percent), medium, irregular hard carbonate concretions, that dissolve in acid, with accessory recent redoximorphic iron and manganese accumulations; electrical conductivity is 8.1 decisiemens per meter; sodium adsorption ratio is 9; moderately alkaline (pH 7.9); abrupt smooth boundary. (The combined thickness of the Ap1 and Ap2 horizons is 15 to 26 inches)" diff --git a/inst/extdata/OSD/A/ALTURAS.json b/inst/extdata/OSD/A/ALTURAS.json index ef367fb93d..ac13fd765b 100644 --- a/inst/extdata/OSD/A/ALTURAS.json +++ b/inst/extdata/OSD/A/ALTURAS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "soft effervescent", "distinctness": "clear", "topography": "irregular", "narrative": "B3tca--30 to 42 inches; dark brown (10YR 4/3) heavy clay loam, dark brown (10YR 3/3) moist; massive; hard, very friable, sticky, plastic; few very fine roots; few very fine tubular and interstitial pores; many moderately thick clay films line pores and as bridges; violently effervescent, lime segregated in fine rounded soft effervescent, lime segregated in fine rounded soft bodies; moderately alkaline (pH 8.0); clear irregular boundary. (6 to 24 inches thick)" diff --git a/inst/extdata/OSD/A/ALTVAN.json b/inst/extdata/OSD/A/ALTVAN.json index 5f653ad482..de0adc63c6 100644 --- a/inst/extdata/OSD/A/ALTVAN.json +++ b/inst/extdata/OSD/A/ALTVAN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--58 to 66 centimeters (23 to 26 inches); very pale brown (10YR 7/3) loam, pale brown (10YR 6/3) moist; weak medium and coarse subangular blocky structure; slightly hard, very friable; disseminated carbonates in root channels and on faces of peds; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 46 centimeters (0 to 18 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--66 to 89 centimeters (26 to 35 inches); very pale brown (10YR 7/3) loam, pale brown (10YR 6/3) moist; massive; soft, very friable; strong effervescence; strongly alkaline; gradual wavy boundary. (0 to 25 centimeters (0 to 10 inches) thick)" @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--89 to 152 centimeters (35 to 60 inches); pale brown (10YR 6/3) gravelly sand, brown (10YR 5/3) moist; single grain; 20 percent gravel by volume; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/A/ALWILDA.json b/inst/extdata/OSD/A/ALWILDA.json index 1447a987b7..7a55898985 100644 --- a/inst/extdata/OSD/A/ALWILDA.json +++ b/inst/extdata/OSD/A/ALWILDA.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--29 to 46 inches; multicolored gravelly sand; single grain; loose; 25 percent gravel by volume; carbonates coat undersides of pebbles; slight effervescence; slightly mildly alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--46 to 60 inches; multicolored gravelly sand; single grain; loose; 15 percent gravel by volume; carbonates coat undersides of pebbles; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/A/ALZADA.json b/inst/extdata/OSD/A/ALZADA.json index 974740db32..d622b514c1 100644 --- a/inst/extdata/OSD/A/ALZADA.json +++ b/inst/extdata/OSD/A/ALZADA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "sightly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--2 to 10 inches; brown (10YR 5/3) clay, dark grayish brown (10YR 4/2) moist; weak medium prismatic structure parting to moderate fine and medium subangular blocky; hard, firm, very sticky and very plastic; common very fine roots; few very fine and fine pores; common faint clay films on faces of peds and in pores; disseminated lime; sightly effervescent; mildly alkaline (pH 7.8); gradual smooth boundary. (6 to 15 inches thick)" diff --git a/inst/extdata/OSD/A/AMARADA.json b/inst/extdata/OSD/A/AMARADA.json index f8741917d7..a273259a63 100644 --- a/inst/extdata/OSD/A/AMARADA.json +++ b/inst/extdata/OSD/A/AMARADA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Aseg--0 to 15 centimeters (0 to 6 in); dark greenish gray (10Y 4/1) loam; massive; very fluid; thin discontinuous coating of dark yellowish brown (10YR 4/4) iron manganese on surface; electrical conductivity of 19.0 dS/m; rapid color change and moderately effervescent to 3 percent and 30 percent hydrogen peroxide; neutral; abrupt boundary." diff --git a/inst/extdata/OSD/A/AMOR.json b/inst/extdata/OSD/A/AMOR.json index 32791fb0e1..8a4a475799 100644 --- a/inst/extdata/OSD/A/AMOR.json +++ b/inst/extdata/OSD/A/AMOR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--13 to 19 inches; light brownish gray (2.5Y 6/2) loam; dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common fine roots; common fine pores; slight effervescence; slightly alkaline; gradual wavy boundary. (Combined Bw horizons 4 to 27 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--19 to 31 inches; light gray (2.5Y 7/2) loam; grayish brown (2.5Y 5/2) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic; few fine roots; common fine pores; few masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 21 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--31 to 60 inches; pale yellow (2.5Y 7/3) and light gray (5Y 7/2) soft sandstone and siltstone; light olive gray (5Y 6/2) and light olive brown (2.5Y 5/3) moist; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ANCHUSTEQUI.json b/inst/extdata/OSD/A/ANCHUSTEQUI.json index d1eeccc8de..5027d0c5c1 100644 --- a/inst/extdata/OSD/A/ANCHUSTEQUI.json +++ b/inst/extdata/OSD/A/ANCHUSTEQUI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap--0 to 7 inches; pale brown (10YR 6/3) loam, dark brown (10YR 4/3) moist; moderate fine subangular blocky structure parting to weak fine granular; slightly hard, very friable, slightly sticky, slightly plastic; many very fine and few fine roots; common very fine and few fine tubular pores; slight effervescence; strongly alkaline (pH 8.9); abrupt wavy boundary. (3 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.3, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "AC--7 to 11 inches; very pale brown (10YR 7/3) loam, dark brown (10YR 4/3) moist; weak fine subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; common very fine and fine roots; common very fine irregular and few very fine tubular pores; slight effervescence; very strongly alkaline (pH 9.3); abrupt smooth boundary. (2 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.5, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--11 to 16 inches; white (10YR 8/2) silt loam, yellowish brown (10YR 5/4) moist; massive; hard, friable, slightly sticky, slightly plastic; few very fine roots; common very fine tubular pores; strong effervescence; very strongly alkaline (pH 9.5); abrupt smooth boundary. (4 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--16 to 20 inches; white (10YR 8/2) silt loam, brown (10YR 5/3) moist; few fine distinct light yellowish brown (10YR 6/4) moist mottles; moderate thin platy structure parting to weak fine subangular blocky; soft, friable, slightly sticky, slightly plastic; few very fine roots; many very fine irregular pores; violent effervescence; very strongly alkaline (pH 10.4); abrupt wavy boundary. (3 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.8, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C3--20 to 41 inches; light brownish gray (10YR 6/2) loamy very fine sand, dark brown (10YR 4/3) moist; common fine distinct light yellowish brown (10YR 6/4) moist mottles; massive; soft, very friable, slightly sticky, slightly plastic; few very fine roots, (common very fine roots near the lower boundary); many very fine irregular pores; strong effervescence; very strongly alkaline (pH 9.8); gradual wavy boundary. (12 to 22 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9.5, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C4--41 to 51 inches; light gray (10YR 7/2) silt loam, dark brown (10YR 4/3) moist; moderate thin platy structure; slightly hard, friable, slightly sticky, slightly plastic; common very fine roots; few very fine and fine tubular pores; strong effervescence; very strongly alkaline (pH 9.5); abrupt smooth boundary. (7 to 18 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 9.8, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--51 to 60 inches; pale brown (10YR 6/3) loamy very fine sand and very fine sandy loam, dark brown (10YR 4/3) moist; massive; soft, very friable; many very fine and fine pores; strong effervescence; very strongly alkaline (pH 9.8)." diff --git a/inst/extdata/OSD/A/ANDER.json b/inst/extdata/OSD/A/ANDER.json index 7a94fed615..21363cfb29 100644 --- a/inst/extdata/OSD/A/ANDER.json +++ b/inst/extdata/OSD/A/ANDER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk1--97 to 114 cm (38 to 45 in); pale brown (10YR 6/3) sandy clay loam, brown (10YR 5/3), moist; moderate medium and coarse prismatic structure parting to moderate medium and coarse angular blocky; very firm, hard; common very fine and fine roots; common very fine to medium tubular pores; 10 percent faint clay films; 1 percent medium faint brown (10YR 4/3) masses of oxidized iron with clear boundaries in matrix; 3 percent fine white (10YR 8/1) masses of calcium carbonate masses; 2 percent medium white (10YR 8/1) nodules of calcium carbonate; very slight effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk2--114 to 151 cm (45 to 59 in); pale yellow (2.5Y 7/3) sandy clay loam, light yellowish brown (2.5Y 6/3), moist; moderate medium and coarse subangular blocky structure; firm, moderately hard; common very fine roots; common medium tubular and common very fine tubular pores; 10 percent distinct clay films; 3 percent fine prominent strong brown (7.5YR 5/6) masses of oxidized iron with clear boundaries in matrix surrounding redox concentrations; 8 percent fine and medium prominent yellowish red (5YR 5/8) masses of oxidized iron with sharp boundaries in matrix; 3 percent fine white (10YR 8/1) masses of calcium carbonate; 2 percent medium white (10YR 8/1) nodules of calcium carbonate; very slight effervescence; slightly alkaline; clear smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk3--151 to 183 cm (59 to 72 in); light reddish brown (5YR 6/4) sandy clay loam, reddish brown (5YR 5/4), moist; moderate medium and coarse subangular blocky structure; very firm, moderately hard; common fine tubular and common very fine tubular pores; 10 percent distinct clay films; slight effervescence; moderately alkaline; abrupt wavy boundary. [combined thickness of the Btk horizon is 51 to 91 cm (20 to 36 in)]" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--183 to 203 cm (72 to 80 in); light brown (7.5YR 6/4) loam, brown (7.5YR 5/4), moist; weak very coarse subangular blocky structure; very firm, moderately hard; 35 percent coarse white (10YR 8/1) masses of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ANGELUS.json b/inst/extdata/OSD/A/ANGELUS.json index 4104eeb40a..d7ae3f18d7 100644 --- a/inst/extdata/OSD/A/ANGELUS.json +++ b/inst/extdata/OSD/A/ANGELUS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 5 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; moderate fine granular structure; slightly hard, friable; many fine roots; porous; many very fine chalk fragments; strong effervescence; moderately alkaline; gradual smooth boundary. (3 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--5 to 30 inches; light brownish gray (10YR 6/2) silt loam, dark brown (10YR 4/3) moist; moderate fine granular structure; slightly hard, friable; many worm casts; many roots; strong effervescence; moderately alkaline; gradual smooth boundary. (5 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--30 to 42 inches; light gray (10YR 7/2) stratified loam and silt loam, brown (10YR 5/3) moist; weak very fine granular structure; slightly hard, friable; few fine roots; porous; few soft fine calcium carbonate accumulations and many fine chalk fragments; violent effervescence; moderately alkaline; gradual smooth boundary. (10 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--42 to 64 inches; very pale brown (10YR 7/3) silt loam, brown (10YR 5/3) moist; massive; slightly hard, friable; porous; many very fine chalk fragments; few pockets of crystaline salts, probably gypsum; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ANGORA.json b/inst/extdata/OSD/A/ANGORA.json index 0af171f3ef..f118bd473d 100644 --- a/inst/extdata/OSD/A/ANGORA.json +++ b/inst/extdata/OSD/A/ANGORA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--28 to 41 cm (11 to 16 inches); pale brown (10YR 6/3) very fine sandy loam, brown (10YR 5/3) moist; weak coarse prismatic structure; soft, very friable; lacework pattern of calcium carbonate threads 1 millimeter wide; strong effervescence; slightly alkaline; clear smooth boundary. (0 to 13 cm (0 to 5 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ck--41 to 61 cm (16 to 24 inches); very pale brown (10YR 7/3) and light gray (2.5Y 7/2) very fine sandy loam, brown (10YR 5/3) and light brownish gray (2.5Y 6/2) moist; massive; slightly hard; friable; irregular pattern of calcium carbonate accumulations; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 23 cm (0 to 9 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--61 to 152 cm (24 to 60 inches); very pale brown (10YR 7/3) very fine sandy loam, brown (10YR 5/3) moist; massive; soft; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ANGUS.json b/inst/extdata/OSD/A/ANGUS.json index dd99d743d4..bc16ca0fd1 100644 --- a/inst/extdata/OSD/A/ANGUS.json +++ b/inst/extdata/OSD/A/ANGUS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--89 to 102 cm; brown (10YR 5/3) clay loam; weak medium subangular blocky structure; friable; few faint brown (10YR 4/3) clay films in root channels; 4 percent gravel; slight effervescence; slightly alkaline (pH 7.6); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--102 to 200 cm; brown (10YR 5/3) loam; massive; friable; common fine distinct grayish brown (2.5Y 5/2) Iron depletions and common medium distinct yellowish brown (10YR 5/6) Iron concentrations; 7 percent gravel; strong effervescence; slightly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/A/ANNAROSE.json b/inst/extdata/OSD/A/ANNAROSE.json index fb0d3e9aec..aa3584891a 100644 --- a/inst/extdata/OSD/A/ANNAROSE.json +++ b/inst/extdata/OSD/A/ANNAROSE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "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." diff --git a/inst/extdata/OSD/A/ANTELOPEFLAT.json b/inst/extdata/OSD/A/ANTELOPEFLAT.json index d260c6233a..2edded5035 100644 --- a/inst/extdata/OSD/A/ANTELOPEFLAT.json +++ b/inst/extdata/OSD/A/ANTELOPEFLAT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bssky--74 to 104 centimeters (29 to 41 inches); brown (10YR 5/3) broken face, clay, dark brown (10YR 3/3) crushed, moist; 47 percent clay; moderate medium and coarse wedge structure parting to moderate medium prismatic structure parting to strong fine, medium, and coarse subangular blocky structure; extremely hard, extremely firm, very sticky, very plastic; common very fine roots throughout; many very fine and common fine tubular pores; common prominent slickensides (pedogenic) on tops of peds; calcium carbonate occurs as common fine and medium irregular masses on faces of peds, very slight effervescent; few fine and medium irregular gypsum masses on faces of peds (EC = 1.18 mmhos/cm); moderately alkaline (pH 8.2); clear wavy boundary. (20 to 53 centimeters (8 to 21 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--104 to 196 centimeters (41 to 77 inches); pale brown (10YR 6/3) broken face, coarse sandy loam, olive brown (2.5Y 4/3) crushed, moist; 8 percent clay; massive; soft, very friable, nonsticky, nonplastic; common very fine vesicular pores; secondary calcium carbonate is finely disseminated; slight effervescent; slightly alkaline (pH 7.8). (0 to 71 centimeters (0 to 28 inches thick)" diff --git a/inst/extdata/OSD/A/ANTLER.json b/inst/extdata/OSD/A/ANTLER.json index 41d17f5e4c..6b753fe4e0 100644 --- a/inst/extdata/OSD/A/ANTLER.json +++ b/inst/extdata/OSD/A/ANTLER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 12 inches; black (10YR 2/1) clay loam, very dark gray (10YR 3/1) dry; weak medium subangular blocky structure parting to moderate fine and very fine granular; hard, friable, slightly sticky and slightly plastic; many fine roots; many pores; slight effervescence; slightly alkaline; abrupt smooth boundary. (6 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ak--12 to 15 inches; very dark gray (10YR 3/1) clay loam, gray (N 5/0) dry; few fine light gray (10YR 7/1) mottles; weak very coarse subangular blocky structure parting to moderate fine granular; hard, friable, slightly sticky and slightly plastic; common fine roots; common pores; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--15 to 25 inches; gray (5Y 5/1) clay loam, gray (5Y 6/1) dry; weak very coarse angular blocky structure parting to weak fine subangular blocky; hard, friable, slightly sticky and slightly plastic; few roots; common fine pores; a few cobblestones and pebbles at base of horizon; few nests of gypsum crystals; violent effervescence; moderately alkaline; clear wavy boundary. (6 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk2--25 to 28 inches; grayish brown (2.5Y 5/2) gravelly clay loam, light gray (2.5Y 7/2) dry; weak coarse and fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few roots; few cobblestones; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C1--28 to 35 inches; light olive brown (2.5Y 5/4) clay loam, pale yellow (2.5Y 7/4) and gray (5Y 5/1) dry; massive; very hard, friable, sticky and slightly plastic; strong effervescence; moderately alkaline; gradual boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--35 to 60 inches; light olive brown (2.5Y 5/4) clay loam, pale yellow (2.5Y 7/4) dry; common distinct gray (5Y 5/1), reddish brown (5YR 4/3), and brown (10YR 4/3) mottles; massive; very hard, firm, sticky and slightly plastic; about 5 percent by volume rock fragments; segregated gypsum crystals; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/AOWA.json b/inst/extdata/OSD/A/AOWA.json index 0f215f9b88..dc83aa4bd1 100644 --- a/inst/extdata/OSD/A/AOWA.json +++ b/inst/extdata/OSD/A/AOWA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ap--0 to 7 inches; after mixing, dark gray (10YR 4/1) silt loam, very dark brown (10YR 3/2) moist; weak, fine, granular structure; slightly hard, very friable, strong effervescence, moderately alkaline, abrupt, smooth boundary. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--7 to 16 inches; stratified very dark grayish brown (10YR 3/2) and grayish brown (10YR 5/2) silt loam, very dark gray (10YR 3/1) and gray (10YR 5/1) moist; weak, fine, granular structure; slightly hard, very friable; slight effervescence; moderately alkaline; gradual wavy boundary. (10 to 50 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--16 to 60 inches; stratified dark gray (10YR 4/1) and pale brown (10YR 6/3) silt loam, very dark gray, (10YR 3/1) and brown (10YR 5/3) moist; weak, fine, subangular blocky structure with some platy structure characteristics due to stratification, slightly hard, very friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/APPAM.json b/inst/extdata/OSD/A/APPAM.json index 5a1dd1ad8b..5ae3b95477 100644 --- a/inst/extdata/OSD/A/APPAM.json +++ b/inst/extdata/OSD/A/APPAM.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--15 to 19 inches; very pale brown (10YR 7/3) sandy loam, brown (10YR 5/3) moist; weak medium and coarse prismatic structure parting to weak medium and fine subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; about 12 percent gravel; many coarse irregularly shaped masses of carboantes; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 11 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--19 to 60 inches; light yellowish brown (10YR 6/4) gravelly coarse sand, yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky and nonplastic; about 30 percent gravel: strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/AQUARIUSMINE.json b/inst/extdata/OSD/A/AQUARIUSMINE.json index 17886ec00d..fc63d8f7a0 100644 --- a/inst/extdata/OSD/A/AQUARIUSMINE.json +++ b/inst/extdata/OSD/A/AQUARIUSMINE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--113 to 200 cm; Indurated marble bedrock; strong effervescence, by HCl, 1 normal." diff --git a/inst/extdata/OSD/A/ARCHIN.json b/inst/extdata/OSD/A/ARCHIN.json index afbf0f8eff..a01ef17569 100644 --- a/inst/extdata/OSD/A/ARCHIN.json +++ b/inst/extdata/OSD/A/ARCHIN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--17 to 28 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse prismatic structure parting to moderate coarse and medium subangular blocky; very hard, friable, slightly sticky, and plastic; shiny coats on the faces of the peds; few fine compressed roots; common fine accumulations of carbonate; common fine nests of gypsum crystals and other salts; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--28 to 48 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable; slightly sticky and slightly plastic; very few fine roots; strong effervescence; strongly alkaline; diffuse boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--48 to 60 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; massive; hard, friable, slightly sticky and slightly plastic; common very fine nests of gypsum crystals and other salts; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ARCTANDER.json b/inst/extdata/OSD/A/ARCTANDER.json index 8a0e6a8feb..d7acd5bae4 100644 --- a/inst/extdata/OSD/A/ARCTANDER.json +++ b/inst/extdata/OSD/A/ARCTANDER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--142 to 203 centimeters; gray (5Y 6/1) sandy loam; weak coarse subangular blocky structure; firm; many medium and coarse prominent olive brown (2.5Y 4/4) iron concentrations; about 6 percent gravel; moderately effervescent; slightly alkaline." diff --git a/inst/extdata/OSD/A/ARIKARA.json b/inst/extdata/OSD/A/ARIKARA.json index 9a7b39ad71..7cc632c0a1 100644 --- a/inst/extdata/OSD/A/ARIKARA.json +++ b/inst/extdata/OSD/A/ARIKARA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--14 to 39 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 5/2) moist; moderate medium subangular blocky structure; hard, friable, sticky and plastic; few fine and medium roots; common masses of lime; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--39 to 54 inches; light yellowish brown (2.5Y 6/4) loam, olive brown (2.5Y 4/4) moist; massive; soft, very friable, slightly sticky and slightly plastic; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--54 to 60 inches; light yellowish brown (2.5Y 6/4) fine sandy loam, olive brown (2.5Y 4/4) moist; massive; loose, nonsticky and nonplastic; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/A/ARLO.json b/inst/extdata/OSD/A/ARLO.json index f08142d0ad..dfb51fe6a9 100644 --- a/inst/extdata/OSD/A/ARLO.json +++ b/inst/extdata/OSD/A/ARLO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 11 inches; black (10YR 2/1) clay loam, dark gray (10YR 4/1) dry; weak fine and medium granular structure; slightly hard, friable, slightly sticky, and slightly plastic; strong effervescence (11 percent calcium carbonate); slightly alkaline; abrupt smooth boundary. (6 to 23 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ak--11 to 18 inches; very dark gray (10YR 3/1) loam, gray (10YR 5/1) dry; weak medium subangular blocky structure parting to weak fine and medium granular; slightly hard, friable; violent effervescence (20 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg1--18 to 31 inches; gray (10YR 5/1) sandy clay loam, light gray (10YR 7/1) dry; weak medium subangular blocky structure; slightly hard, friable, slightly sticky, and slightly plastic; violent effervescence (24 percent calcium carbonate); moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg2--31 to 35 inches; dark grayish brown (2.5Y 4/2) sandy clay loam, light brownish gray (2.5Y 6/2) dry; common distinct fine gray (10YR 5/1) redox depletions and light olive brown (2.5Y 5/6) redox concentrations; massive; soft, very friable, slightly sticky, and slightly plastic; few fine dark concretions (Fe and Mn oxides); many coarse accumulations of carbonate; strong effervescence (12 percent calcium carbonate); moderately alkaline; clear smooth boundary. (Combined Bk horizons is 8 to 25 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Cg1--35 to 50 inches; olive brown (2.5Y 4/4) gravelly sand, light olive brown (2.5Y 5/4) dry; common fine and medium prominent dark brown (7.5YR 3/2) redox depletions and yellowish brown (10YR 5/6) redox concentrations; single grain; loose; common fine dark concretions (Fe and Mn oxides); strong effervescence (7 percent calcium carbonate); moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--50 to 60 inches; light brownish gray (2.5Y 6/2) loamy sand, light gray (2.5Y 7/2) dry; common fine and medium prominent yellowish brown (10YR 5/6) redox concentrations; single grain; few pebbles; loose; common rounded shale chips; few fine dark concretions (Fe and Mn oxides); sand grains coated with calcium carbonate; strong effervescence (6 percent calcium carbonate); moderately alkaline." diff --git a/inst/extdata/OSD/A/ARMISTEAD.json b/inst/extdata/OSD/A/ARMISTEAD.json index f5c86138b0..6f9097a7ca 100644 --- a/inst/extdata/OSD/A/ARMISTEAD.json +++ b/inst/extdata/OSD/A/ARMISTEAD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bt1--62 to 85 cm (24 to 33 in); yellowish red (5YR 4/6) silty clay loam; moderate coarse prismatic structure parting to moderate medium subangular blocky; firm, moderately hard; common fine roots, common fine irregular and many very fine irregular pores; 50 percent faint reddish brown (5YR 4/4) moist, clay films on all ped faces; few fine irregular carbonate nodules in the matrix; very slight effervescence, by HCl, 1 normal; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C1--135 to 161 cm (53 to 63 in); 55 percent reddish brown (5YR 4/4) and 45 percent yellowish red (5YR 5/6) stratified silty clay loam to silt loam; structureless, massive; firm, moderately hard; common medium roots; common fine irregular and common very fine irregular pores; strong effervescence, by HCl, 1 normal; moderately alkaline, clear smooth boundary." diff --git a/inst/extdata/OSD/A/ARMO.json b/inst/extdata/OSD/A/ARMO.json index 7b81fdf8bb..f4e215beec 100644 --- a/inst/extdata/OSD/A/ARMO.json +++ b/inst/extdata/OSD/A/ARMO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 10 inches; dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; moderate medium granular structure; slightly hard, friable, slightly sticky, slightly plastic; many fine grass roots; few fragments of chalk 2 mm to 2 cm in diameter; strong effervescence; moderately alkaline; gradual smooth boundary. (7 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AB--10 to 15 inches; grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; weak coarse subangular blocky and weak medium granular structure; hard, friable, slightly sticky, slightly plastic; many fine grass roots; few chalk fragments 2 mm to 2 cm in diameter; strong effervescence; mildly alkaline; gradual smooth boundary. (0 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--15 to 28 inches; pale brown (10YR 6/3) clay loam, yellowish brown (10YR 5/4) moist; weak fine granular structure; slightly hard, friable, slightly sticky, slightly plastic; few fine grass roots; violent effervescence; moderately alkaline; gradual wavy boundary. (10 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--28 to 41 inches; pale brown (10YR 6/3) clay loam, yellowish brown (10YR 5/4) moist; massive; very hard, friable, moderately sticky, moderately plastic; few fine roots; porous; few nests of worm casts; thin lenses of lighter colored loamy sand; common soft spherical carbonate accumulations from 5 mm to 15 mm in diameter; violent effervescence; moderately alkaline; gradual wavy boundary. (5 to 17 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--41 to 51 inches; pale brown (10YR 6/3) silt loam, yellowish brown (10YR 5/4) moist; massive; hard, friable, slightly sticky, slightly plastic; interbedded with strata of gravelly loamy sand; sand particles and pebbles mostly chalk; coarse strata comprise about 40 percent of horizon; few fine roots; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/A/ARNEGARD.json b/inst/extdata/OSD/A/ARNEGARD.json index bb1a28d2bc..5cacba689f 100644 --- a/inst/extdata/OSD/A/ARNEGARD.json +++ b/inst/extdata/OSD/A/ARNEGARD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--36 to 60 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; common very fine roots; few fine irregular masses of lime; strong effervescence; moderately alkaline. (0 to 25 inches thick)" diff --git a/inst/extdata/OSD/A/ARTESIAN.json b/inst/extdata/OSD/A/ARTESIAN.json index 01846c65a6..437ef041fc 100644 --- a/inst/extdata/OSD/A/ARTESIAN.json +++ b/inst/extdata/OSD/A/ARTESIAN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--7 to 12 inches; very dark gray (10YR 3/1) clay, black (10YR 2/1) moist; weak medium prismatic structure parting to moderate medium and fine subangular blocky; very hard, very firm, sticky, and plastic; shiny films on surfaces of peds; common fine roots; slight effervescence; neutral; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--12 to 22 inches; dark gray (N 4/0) clay, black (N 2/0) moist; weak medium prismatic structure parting to moderate medium and fine blocky and subangular blocky; very hard, very firm, sticky, and plastic; shiny films on surfaces of peds; few medium roots; strong effervescence; slightly alkaline; clear wavy boundary. (Combined Bw horizons is 10 to 24 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--22 to 32 inches; gray (5Y 5/1) and dark gray (5Y 4/1) clay, very dark gray (5Y 3/1) and black (5Y 2/1) moist; weak coarse prismatic structure parting to moderate medium and fine blocky and subangular blocky; very hard, very firm, sticky, and plastic; shiny coats on faces of peds; few medium roots; common fine and medium accumulations of carbonates; strong effervescence; slightly alkaline; gradual wavy boundary. (8 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bzg--32 to 41 inches; gray (5Y 5/1) clay, dark gray (5Y 4/1) moist; fine distinct mottles of black (5Y 2/1) moist; weak coarse subangular blocky structure; very hard, very firm, sticky, and plastic; common fine and medium nests of gypsum and other salts; few fine and medium accumulations of carbonates; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--41 to 60 inches; gray (5Y 5/1) clay, dark gray (5Y 4/1) moist; common fine faint mottles of light olive gray (5Y 6/2) moist; massive; very hard, very firm, sticky, and plastic; thin buried very dark gray (5Y 3/1) layer at depth of about 42 inches; common fine dark stains (iron and manganese oxides); few fine nests of gypsum and other salts; few to common medium accumulations of carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/A/ARVESON.json b/inst/extdata/OSD/A/ARVESON.json index 8afe625f48..168ded8909 100644 --- a/inst/extdata/OSD/A/ARVESON.json +++ b/inst/extdata/OSD/A/ARVESON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 20 cm; black (10YR 2/1) clay loam, dark gray (10YR 4/1) dry; weak fine granular structure; very friable, slightly sticky; strong effervescence; slightly alkaline; gradual smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg1--20 to 36 cm; very dark gray (10YR 3/1) clay loam, gray (10YR 5/1) dry; weak very fine granular structure; very friable, slightly sticky; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg2--36 to 64 cm; light gray (5Y 7/1) loam; weak very fine granular structure; very friable, slightly sticky; common convolutions of very dark gray (10YR 3/1); violent effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg3--64 to 86 cm; gray (5Y 6/1) sandy loam; weak very fine granular structure; very friable, slightly sticky; many fine and medium masses of gray (5Y 5/1); violent effervescence; moderately alkaline; clear smooth boundary. (Combined Bkg horizons 15 to 81 thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Cg1--86 to 117 cm; gray (5Y 6/1) loamy sand; few fine distinct pale olive (5Y 6/3) redoximorphic concentrations; weak very fine granular structure; very friable, slightly sticky; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--117 to 200 cm; light olive gray (5Y 6/2) fine sand; few fine prominent olive yellow (2.5Y 6/8) and few fine distinct pale olive (5Y 6/4) redoximorphic concentrations; single grain; loose; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ARVILLA.json b/inst/extdata/OSD/A/ARVILLA.json index c317f59009..f6e48ac3ce 100644 --- a/inst/extdata/OSD/A/ARVILLA.json +++ b/inst/extdata/OSD/A/ARVILLA.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--16 to 31 inches; brown (10YR 4/3) gravelly coarse sand, pale brown (10YR 6/3) dry; single grain; loose, nonsticky and nonplastic; about 30 percent gravel; carbonates coat underside of pebbles; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined Bk and 2Bk horizons 0 to 45 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--31 to 60 inches; brown (10YR 4/3) gravelly coarse sand, pale brown (10YR 6/3) dry; single grain; loose, nonsticky and nonplastic; about 30 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/A/ASHER.json b/inst/extdata/OSD/A/ASHER.json index e146fa5c04..69fd3b5df1 100644 --- a/inst/extdata/OSD/A/ASHER.json +++ b/inst/extdata/OSD/A/ASHER.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--25 to 53 cm (10 to 21 in); reddish brown (5YR 5/3) silty clay loam, reddish brown (5YR 4/3) moist; weak fine blocky structure; very hard, firm; dark gray (10YR 4/1) coatings on faces of some peds; secondary carbonates below 14 in; slightly effervescence; moderately alkaline; clear smooth boundary. (25 to 61 cm [10 to 24 in] thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--53 to 165 cm (21 to 65 in); brown (10YR 5/3) silt loam, brown (10YR 4/3) moist; massive; slightly hard, very friable; common thin strata of brown very fine sandy loam, fine sandy loam and silty clay loam; slightly effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/ATCHISON.json b/inst/extdata/OSD/A/ATCHISON.json index fd1d7c8ccd..57a9a87f0b 100644 --- a/inst/extdata/OSD/A/ATCHISON.json +++ b/inst/extdata/OSD/A/ATCHISON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 15 centimeters, (0 to 6 inches); brown (10YR 4/3), loam, dark brown (10YR 3/3) moist; weak fine granular structure; friable, slightly hard, moderately sticky, slightly plastic; many fine and medium roots throughout; slight effervescence; slightly alkaline; clear smooth boundary. (8 to 22 centimeters, 3 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--15 to 33 centimeters, (6 to 13 inches); yellowish brown (10YR5/4), loam, dark yellowish brown (10YR 4/4), moist, weak medium subangular blocky structure; friable, slightly hard, moderately sticky, slightly plastic; many fine roots throughout; common fine continuous tubular pores; discontinuous faint very dark grayish brown (10YR 3/2) coats on faces of peds; strong effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--33 to 43 centimeters, (13 to 17 inches); yellowish brown (10YR 5/4), loam, dark yellowish brown (10YR 4/4), moist, weak fine subangular blocky structure; friable, slightly hard, moderately sticky, slightly plastic; many very fine roots throughout; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 46 centimeters, 0 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--43 to 76 centimeters, (17 to 30 inches); light yellowish brown (10YR 6/4), loam, yellowish brown (10YR 5/4), moist, moderate medium subangular blocky structure; friable, hard, moderately sticky, slightly plastic; many very fine roots throughout; 5 percent fine irregular carbonate threads throughout and 15 percent fine and medium irregular carbonate masses throughout; violent effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--76 to 94 centimeters, (30 to 37 inches); yellow (10YR 7/6), very fine sandy loam, brownish yellow (10YR 6/6), moist; moderate medium subangular blocky structure; friable, hard, moderately sticky, slightly plastic; common fine roots throughout; many fine continuous tubular pores; 3 percent very coarse irregular carbonate masses throughout; violent effervescence; strongly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--94 to 104 centimeters, (37 to 41 inches); very pale brown (10YR 7/4), very fine sandy loam, yellowish brown (10YR 5/4), moist; moderate medium subangular blocky structure; friable, hard, moderately sticky, slightly plastic; common fine roots throughout; many fine moderate continuity continuous tubular pores; 3 percent fine spherical extremely weakly cemented very dark grayish brown (10YR 3/2) iron-manganese concretions throughout; 1 percent fine and medium irregular extremely weakly cemented carbonate concretions throughout; violent effervescence; strongly alkaline; clear wavy boundary. (Combined thickness of the Bk horizons is 25 to 114 centimeters, 10 to 45 inches)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk1--104 to 127 centimeters, (41 to 50 inches); very pale brown (10YR 7/4), fine sandy loam, yellowish brown (10YR 5/4), moist; weak medium prismatic and weak medium subangular blocky structure; friable, slightly hard, slightly sticky, slightly plastic; common fine roots; many fine moderate continuity continuous tubular pores; 1 percent fine irregular carbonate masses throughout and 1 percent fine irregular carbonate concretions throughout; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk2--127 to 147 centimeters, (50 to 58 inches); light yellowish brown (10YR 6/4), fine sandy loam, yellowish brown (10YR 5/4), moist; loose, nonsticky, nonplastic; common very fine roots; fine irregular iron-manganese concretions throughout; 5 percent fine and medium irregular carbonate concretions throughout; strong effervescence; strongly alkaline; gradual wavy boundary. (Combined thickness of the BCk horizons is 25 to 76 centimeters, 10 to 30 inches thick.)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2C1--147 to 170 centimeters, (58 to 67 inches); very pale brown (10YR 7/4), loamy sand, light yellowish brown (10YR 6/4), moist; loose; dark brown (10YR 3/3) black stains; 1 percent fine and medium irregular carbonate nodules throughout; violent effervescence; strongly alkaline; abrupt wavy boundary." @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--170 to 200 centimeters, (67 to 80 inches); very pale brown (10YR 7/4) loamy sand, light yellowish brown (10YR 6/4), moist; loose; dark brown (10YR 3/3) black stains; 3 percent fine irregular carbonate nodules throughout; strong effervescence; strongly alkaline. (Combined thickness of the 2C horizons is 0 to 76 centimeters, 0 to 30 inches thick.)" diff --git a/inst/extdata/OSD/A/ATESH.json b/inst/extdata/OSD/A/ATESH.json index 60b37ea75e..868eac59c4 100644 --- a/inst/extdata/OSD/A/ATESH.json +++ b/inst/extdata/OSD/A/ATESH.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap7--36 to 43 inches; light yellowish brown (10YR 6/4) loamy coarse sand, dark yellowish brown (10YR 4/4) moist; massive; hard and firm; common very fine tubular pores; common moderately thick clay films in root channels and lining pores of displaced fragments of a natric horizon; 90 percent highly fractured (fractures 2 to 3.5 inches apart) remnant weakly silica cemented duripan material that has been mechanically fractured (ripper shank gouges occur at 2 foot intervals) and partially dissolved by farm chemicals and irrigation water; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates segregated as common fine filaments and soft masses; electrical conductivity 0.53 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.8); abrupt smooth boundary. (The combined thickness of the Ap horizons is 40 to 60 inches)." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Btkqyb--49 to 58 inches; very pale brown (10YR 7/3) coarse sandy loam, dark yellowish brown (10YR 4/4) moist; massive; very hard, friable, slightly sticky and slightly plastic; many very fine tubular pores; 15 percent fine rounded durinodes that are hard and firm; common moderately thick clay films lining pores and few thin clay films bridging sand grains; few 1/4 to 1 1/2 inch pockets of gypsum; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates are segregated as common fine soft masses, seams and filaments; electrical conductivity 0.53 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.7); abrupt smooth boundary." @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Btkqb1--58 to 71 inches; pale brown (10YR 6/3) 80 percent weakly silica cemented sandy loam, dark yellowish brown (10YR 4/4) moist; massive; very hard, firm, slightly sticky and slightly plastic; many very fine and few fine tubular pores; few thin clay films lining pores and bridging sand grains; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates are segregated as common fine filaments; electrical conductivity 0.65 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.7); clear smooth boundary." @@ -319,7 +319,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Btkqb2--71 to 83 inches; very pale brown (10YR 7/3) sandy loam, dark yellowish brown (10YR 4/4) moist; massive; very hard, friable, slightly sticky and slightly plastic; many very fine and few fine tubular pores; 20 percent fine rounded durinodes that are hard and firm; few thin clay films bridging sand grains; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates are segregated as few fine filaments; electrical conductivity 0.79 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.7); clear smooth boundary. (The combined thickness of the 2Btkqyb and 2Btkqb horizons is 0 to 40 inches)." @@ -342,7 +342,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Btkb--83 to 92 inches; very pale brown (10YR 7/3) sandy loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; many very fine and few fine tubular pores; common thin clay films bridging sand grains; slightly effervescent, carbonates disseminated and strongly effervescent, segregated as few fine filaments; electrical conductivity 0.87 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.6); abrupt smooth boundary. (0 to 20 inches thick)." diff --git a/inst/extdata/OSD/A/ATHELWOLD.json b/inst/extdata/OSD/A/ATHELWOLD.json index 62b6028039..8ec7fc653d 100644 --- a/inst/extdata/OSD/A/ATHELWOLD.json +++ b/inst/extdata/OSD/A/ATHELWOLD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--30 to 36 inches; light gray (5Y 7/2) silty clay loam, olive gray (5Y 5/2) moist; few fine distinct mottles of brownish yellow (10YR 6/6) moist; weak medium and coarse subangular blocky structure; hard, very friable; slightly sticky and slightly plastic; many fine and medium accumulations of carbonate; few fine carbonate concretions; strong effervescence; moderately alkaline; gradual wavy boundary. (3 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--36 to 60 inches; multicolored sand and gravel; single grained; loose; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/A/ATHENA.json b/inst/extdata/OSD/A/ATHENA.json index 31a1152086..cd4b062979 100644 --- a/inst/extdata/OSD/A/ATHENA.json +++ b/inst/extdata/OSD/A/ATHENA.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk2--135 to 165 centimeters; silt loam, light yellowish brown (10YR 6/4) dry, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; many very fine pores; few coarse and very coarse sand particles; intermittent slight effervescence with segregated lime; moderately alkaline (pH 8.1); abrupt smooth boundary" diff --git a/inst/extdata/OSD/A/AUGSBURG.json b/inst/extdata/OSD/A/AUGSBURG.json index 104f313a78..b92decc5f7 100644 --- a/inst/extdata/OSD/A/AUGSBURG.json +++ b/inst/extdata/OSD/A/AUGSBURG.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) very fine sandy loam, very dark gray (10YR 3/1) dry; weak very fine subangular blocky structure; very friable; strong effervescence; moderately alkaline; abrupt smooth boundary. (6 to 13 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak--8 to 11 inches; very dark grayish brown (2.5Y 3/2) loam, dark grayish brown (2.5Y 4/2) dry; weak very fine subangular blocky structure; very friable; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg--11 to 18 inches; dark gray (2.5Y 4/1) very fine sandy loam; weak very fine subangular blocky structure; very friable; disseminated lime; violent effervescence; moderately alkaline; clear smooth boundary. (6 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bg1--18 to 33 inches; light brownish gray (2.5Y 6/2) loamy very fine sand; few fine distinct yellowish brown (10YR 5/6) redox concentrations and few fine pale yellow (2.5Y 8/2) carbonates masses; single grain; massive; loose; strong effervescence; moderately alkaline; abrupt smooth boundary. (0 to 28 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bg2--33 to 62 inches; olive gray (5Y 5/2) clay; many medium prominent dark reddish gray (5YR 4/2) redox depletions and dark yellowish brown (10YR 4/4) redox concentrations; and few medium very pale brown (10YR 8/2) carbonate masses; weak moderate very fine angular blocky structure; firm; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/AVAR.json b/inst/extdata/OSD/A/AVAR.json index 72df4125f9..c507c64fa5 100644 --- a/inst/extdata/OSD/A/AVAR.json +++ b/inst/extdata/OSD/A/AVAR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.8, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnz1--8 to 11 inches; brown (10YR 5/3) sandy clay loam, dark grayish brown (10YR 4/2) moist; moderate medium subangular blocky structure; hard, firm; strong effervescence; SAR 27; very strongly alkaline (pH 9.8); clear smooth boundary. (2 to 7 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9.9, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Eknzb--38 to 50 inches; very pale brown (10YR 7/3) sandy clay loam, pale brown (10YR 6/3) moist; massive; slightly hard, friable; violent effervescence; SAR 65; very strongly alkaline (pH 9.9); gradual wavy boundary. (0 to 13 inches thick)" diff --git a/inst/extdata/OSD/A/AXTELL.json b/inst/extdata/OSD/A/AXTELL.json index 9f7a3e2fdf..55e86ca3c7 100644 --- a/inst/extdata/OSD/A/AXTELL.json +++ b/inst/extdata/OSD/A/AXTELL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btss2--74 to 94 cm (29 to 37 in); grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; strong medium and coarse angular blocky structure; few wedge-shaped peds; extremely hard, very firm; moderately sticky, moderately plastic; common fine and medium roots; few fine tubular pores; 15 percent faint slickensides (pedogenic) and 37 percent distinct pressure faces; 1 percent fine iron-manganese concretions and 1 percent medium faint dark yellowish brown (10YR 4/4), moist, masses of oxidized iron; slight effervescence; moderately acid; clear wavy boundary. (Combined thickness of the Btss horizon is 38 to 114 cm [15 to 45 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btky1--94 to 135 cm (37 to 53 in); light brownish gray (10YR 6/2) clay loam, grayish brown (10YR 5/2) moist; moderate medium and coarse prismatic structure parting to moderate coarse angular blocky; extremely hard, very firm; moderately sticky, moderately plastic; common fine and medium roots; 15 percent faint pressure faces and 25 percent continuous clay films on all faces of peds; 1 percent fine iron-manganese concretions and 10 percent fine distinct yellowish brown (10YR 5/6), moist, masses of iron oxidized iron; 7 percent carbonate masses infused into matrix along faces of peds and 1 percent fine gypsum masses; strong effervescence; neutral; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btky3--152 to 190 cm (75 to 94 in); light gray (2.5Y 7/2) clay loam, light brownish gray (2.5Y 6/2) moist; moderate medium and coarse prismatic structure parting to moderate coarse angular blocky; extremely hard, very firm, moderately sticky, moderately plastic; common fine and medium roots; 15 percent faint pressure faces; 1 percent fine iron-manganese concretions and 1 percent fine distinct grayish brown (10YR 5/2), moist, masses of oxidized iron and 5 percent medium brownish yellow (10YR 6/8), moist, masses of oxidized iron and 5 percent coarse brownish yellow (10YR 6/8), moist, masses of oxidized iron; 3 percent carbonate masses infused into matrix along faces of peds and 1 percent fine gypsum masses; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined thickness of the Btky horizon is 41 to 142 cm [16 to 56 in])" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btkssy--190 to 203 cm (75 to 80 in); light gray (2.5Y 7/2) clay loam, brownish yellow (10YR 6/8) moist; moderate medium and coarse prismatic structure parting to moderate medium and coarse angular blocky; extremely hard, very firm, moderately sticky and moderately plastic; few fine roots; 15 percent faint slickensides (pedogenic); 1 percent fine iron-manganese concretions; 1 percent carbonate masses and 1 percent gypsum masses; 1 percent 2 to 75 mm quartzite fragments; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/A/AYR.json b/inst/extdata/OSD/A/AYR.json index 71e7404f9a..e3cc2f0aab 100644 --- a/inst/extdata/OSD/A/AYR.json +++ b/inst/extdata/OSD/A/AYR.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--37 to 60 inches; brown (10YR 5/3) loam; massive; friable; common discontinuous gray (10YR 6/1) carbonate coatings on internal planes; 5 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/AYRMOUNT.json b/inst/extdata/OSD/A/AYRMOUNT.json index c37d4b30f0..50c8909758 100644 --- a/inst/extdata/OSD/A/AYRMOUNT.json +++ b/inst/extdata/OSD/A/AYRMOUNT.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--44 to 60 inches; yellowish brown (10YR 5/4) loam; common fine distinct grayish brown (10YR 5/2) mottles; massive; friable; 3 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/A/AZURERIDGE.json b/inst/extdata/OSD/A/AZURERIDGE.json index 84235afd12..0b08ae2fbb 100644 --- a/inst/extdata/OSD/A/AZURERIDGE.json +++ b/inst/extdata/OSD/A/AZURERIDGE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Crkq--14 inches; pale brown (10YR 6/3) weakly cemented to moderately cemented fanglomerate, brown (10YR 4/3) moist; does not slake in water; slightly effervescent to strongly effervescent; ." diff --git a/inst/extdata/OSD/B/BAAHISH.json b/inst/extdata/OSD/B/BAAHISH.json index de1f7477a6..f1976f1c13 100644 --- a/inst/extdata/OSD/B/BAAHISH.json +++ b/inst/extdata/OSD/B/BAAHISH.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--8 to 13 inches; brown (10YR 5/3) fine sandy loam, brown (10YR 4/3) moist; weak medium prismatic structure; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; few fine masses of carbonates; strong effervescence; 5 to 10 percent limestone pebbles; slightly alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2BCk--13 to 28 inches; light gray (10YR 7/2) very gravelly fine sandy loam; brown (10YR 5/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; few fine masses of carbonates; strong effervescence; 60 percent limestone pebbles and cobbles; slightly alkaline; clear smooth boundary. (4 to 24 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C1--28 to 47 inches; light gray (2.5Y 7/2) very gravelly fine sandy loam, light olive brown (2.5Y 5/4) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; few fine masses of carbonates; strong effervescence; 60 percent limestone pebbles and cobbles; slightly alkaline; clear smooth boundary. (15 to 32 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--47 to 60 inches; light gray (2.5Y 7/2) and light yellowish brown (2.5Y 6/4) very gravelly loam, light olive brown (2.5Y 5/4) moist; massive; slightly hard, friable, sticky and plastic; few very fine roots; strong effervescence; 40 percent limestone pebbles and cobbles; slightly alkaline." diff --git a/inst/extdata/OSD/B/BABBINGTON.json b/inst/extdata/OSD/B/BABBINGTON.json index cf9934ac7d..d8b95555fe 100644 --- a/inst/extdata/OSD/B/BABBINGTON.json +++ b/inst/extdata/OSD/B/BABBINGTON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--74 to 107 cm; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; moderate medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; common very fine pores; many faint clay films in pores; moderately effervescent; common carbonate veins; moderately alkaline (pH 8.4); clear wavy boundary. (15 to 61 cm thick)" diff --git a/inst/extdata/OSD/B/BADUS.json b/inst/extdata/OSD/B/BADUS.json index 12a57aa8f3..7b6f2cd4f2 100644 --- a/inst/extdata/OSD/B/BADUS.json +++ b/inst/extdata/OSD/B/BADUS.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ak--7 to 14 inches; black (10YR 2/1) silty clay loam, dark gray (10YR 4/1) dry; weak coarse and medium subangular blocky structure parting to weak fine granular; slightly hard, friable, slightly sticky; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the A horizons is 12 to 24 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz1--14 to 25 inches; black (10YR 2/1) silty clay loam, dark gray (10YR 4/1) dry; weak very coarse and coarse subangular blocky structure parting to moderate fine granular; slightly hard, friable, sticky; many fine accumulations of gypsum and other salts; common fine accumulations of carbonate; strong effervescence; mildly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz2--25 to 34 inches; very dark gray (10YR 3/1) silty clay loam, dark gray (10YR 4/1) dry; weak very coarse and coarse subangular blocky structure parting to weak fine granular; slightly hard, friable, sticky; many fine accumulations of gypsum and other salts; few fine accumulations of carbonate; strong effervescence; mildly alkaline; clear wavy boundary. (Combined thickness of the Bk horizons is 16 to 25 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCg--35 to 50 inches; gray (5Y 5/1) and olive gray (5Y 5/2) silty clay loam, light gray (5Y 6/1) and light olive gray (5Y 6/2) dry; common fine distinct yellowish brown (10YR 5/6) mottles; weak very coarse and coarse subangular blocky structure parting to weak fine subangular blocky; hard, friable, sticky; few fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (10 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--50 to 60 inches; olive gray (5Y 5/2) silty clay loam, gray (5Y 6/1) dry; many fine and medium distinct yellowish brown (10YR 5/6) and strong brown (7.5YR 5/6) mottles; massive; hard, friable, sticky; common fine and medium dark concretions (Fe and Mn oxides); few to common fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BAILCREEK.json b/inst/extdata/OSD/B/BAILCREEK.json index 22ef50aada..0a4d845ac3 100644 --- a/inst/extdata/OSD/B/BAILCREEK.json +++ b/inst/extdata/OSD/B/BAILCREEK.json @@ -227,7 +227,7 @@ "cf_class": "very cobbly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btk--43 to 60 inches; yellowish brown (10YR 5/4) very cobbly clay, brown (10YR 4/3) moist; moderate medium prismatic structure parting to moderate fine and medium angular blocky; very hard, very firm, moderately sticky and moderately plastic; common very fine and fine roots; many very fine and fine tubular pores; common distinct clay films lining pores and on faces of peds; 10 percent gravel and 35 percent cobbles; few lime coats on undersides of rock fragments and few fine masses and threads of lime; strongly effervescent in areas of lime and noneffervescent in matrix; slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/B/BAILEYVILLE.json b/inst/extdata/OSD/B/BAILEYVILLE.json index 7ae00d67b0..8cb7e05463 100644 --- a/inst/extdata/OSD/B/BAILEYVILLE.json +++ b/inst/extdata/OSD/B/BAILEYVILLE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "non effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bt4--48 to 81 centimeters (19 to 32 inches); grayish brown (2.5Y 5/2) exterior, silty clay ; weak medium prismatic structure parting to moderate and fine subangular blocky; firm, very hard, very sticky, very plastic; few fine roots throughout; common discontinuous distinct dark grayish brown (10YR 4/2), moist, clay films on all ped faces; 2 percent prominent spherical iron-manganese concretions throughout and common prominent irregular strong brown (7.5YR 5/6), moist, masses of oxidized iron infused into matrix along ped faces; non effervescent, by HCL, 1 normal; neutral; 10YR 3/1 fill in old crack channels; linear extensibility percent is 4; abrupt smooth boundary. (Combined thickness of Bt horizon is 43 to 74 centimeters (17 to 29 inches).)" diff --git a/inst/extdata/OSD/B/BALLAST.json b/inst/extdata/OSD/B/BALLAST.json index e31d7069c6..3ee012b39e 100644 --- a/inst/extdata/OSD/B/BALLAST.json +++ b/inst/extdata/OSD/B/BALLAST.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 4 inches, (0 to 10 cm); dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; moderate medium subangular blocky structure; moderately hard, very friable, moderately sticky, moderately plastic; common fine roots and common very fine roots; common very fine moderate continuity tubular pores; 10 percent 5 to 75 millimeter gravel; slight effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0 by Phenol red; clear wavy boundary. (1 to 10 inches thick, 2 to 25 centimeters)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--4 to 12 inches, (10 to 30 cm); dark grayish brown (10YR 4/2) clay loam, very dark brown (10YR 2/2) moist; moderate fine subangular blocky structure; slightly hard, very friable, moderately sticky, moderately plastic; common very fine roots; common very fine low continuity tubular pores; few thin clay films on ped faces; 5 percent fine prominent irregular pale red (2.5YR 7/2), dry, carbonate masses with clear boundaries in matrix; 10 percent 2 to 75 millimeter gravel; slight effervescence, by HCl, 1 normal; CaCO3 equivalent is 4 percent; moderately alkaline, pH 8.0 by Phenol red; clear wavy boundary. (4 to 20 inches thick, 10 to 50 centimeters)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk2--12 to 24 inches, (30 to 60 cm); white (2.5YR 8/1) clay, light reddish brown (2.5YR 7/4) moist; moderate medium angular blocky structure; soft, very friable, moderately sticky, moderately plastic; common very fine roots; common very fine low continuity tubular pores; 10 percent dark yellowish brown (10YR 4/6), dry, and dark yellowish brown (10YR 4/6), moist; few thin clay films on ped faces; faint irregular carbonate, finely disseminated with clear boundaries in matrix and 10 percent fine distinct irregular light gray (10YR 7/2), dry, carbonate masses with clear boundaries around rock fragments and 10 percent fine distinct irregular light gray (10YR 7/2), dry, carbonate masses with clear boundaries in matrix; 10 percent 2 to 75 millimeter gravel; violent effervescence, by HCl, 1 normal; CaCO3 is 36 percent; moderately alkaline, pH 8.0 by Phenol red; abrupt wavy boundary. (6 to 20 inches thick, 15 to 50 centimeters)" diff --git a/inst/extdata/OSD/B/BALTA.json b/inst/extdata/OSD/B/BALTA.json index a563198340..3d53a673b0 100644 --- a/inst/extdata/OSD/B/BALTA.json +++ b/inst/extdata/OSD/B/BALTA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--18 to 28 inches (45 to 71 centimeters); 40 percent light brownish gray (10YR 6/2) and 60 percent pale brown (10YR 6/3) silty clay loam, 40 percent grayish brown (10YR 5/2) and 60 percent brown (10YR 5/3) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, firm; common very fine and fine roots; very few distinct patchy very dark grayish brown (10YR 3/2) moist, organic coats on faces of peds and very few faint discontinuous dark grayish brown (10YR 4/2) moist, clay films on faces of peds; few coarse irregular white (10YR 8/1) hard carbonate nodules and few fine irregular white (10YR 8/1) soft masses of lime; strongly effervescence throughout; gradual wavy boundary. (4 to 27 inches thick) (10 to 70 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk3--28 to 40 inches (71 to 101 centimeters); 40 percent light brownish gray (10YR 6/2) and 60 percent pale brown (10YR 6/3), silty clay loam, 40 percent grayish brown (10YR 5/2) and 60 percent brown (10YR 5/3) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, firm; common very fine and fine roots; very few faint patchy dark grayish brown (10YR 4/2) moist, clay films on vertical faces of peds; few medium irregular white (10YR 8/1) soft masses of lime and few medium irregular white (10YR 8/1) hard carbonate nodules; strongly effervescence throughout; gradual wavy boundary. (0 to 11 inches thick) (0 to 28 centimeters thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--40 to 56 inches (101 to 141 centimeters); pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; slightly hard, friable; few fine roots throughout; few fine moderate continuity tublar pores; few fine irregular white (10YR 8/1) soft masses of lime and few fine irregular white (10YR 8/1) hard carbonate nodules; strong effervescence throughout; gradual wavy boundary. (8 to 34 inches thick) (20 to 86 centimeters thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "very weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--65 to 80 inches (164 to 202 centimeters); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable; few fine roots; few fine and medium moderate continuity tubular pores; very few distinct patchy very dark grayish brown (10YR 3/2) moist, organic coats on vertical faces of peds; few fine irregular white (10YR 8/1) soft carbonate threads in cracks; very weakly effervescent throughout. (0 to 18 inches) (0 to 45 centimeters thick)" diff --git a/inst/extdata/OSD/B/BALTIC.json b/inst/extdata/OSD/B/BALTIC.json index 601fccc295..a63b80a379 100644 --- a/inst/extdata/OSD/B/BALTIC.json +++ b/inst/extdata/OSD/B/BALTIC.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; black (10YR 2/1) silty clay loam, dark gray (10YR 4/1) dry; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; common small snail shells; strong effervescence (about 5 percent calcium carbonate); moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--5 to 11 inches; black (10YR 2/1) silty clay loam, dark gray (10YR 4/1) dry; weak fine subangular blocky structure parting to weak fine and very fine granular; slightly hard, friable, slightly sticky and slightly plastic; few fine prominent dark brown (7.5YR 4/4) Fe concentrations; common small snail shells; strong effervescence (about 7 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (Combined thickness of the A horizon is 8 to 30 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--11 to 21 inches; black (10YR 2/1) silty clay, dark gray (10YR 4/1) dry; weak coarse and medium subangular blocky structure parting to fine and very fine subangular blocky; hard, firm, sticky and plastic; few fine prominent dark brown (7.5YR 4/4) Fe concentrations; common small snail shells; strong effervescence (about 6 percent calcium carbonate); moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--21 to 35 inches; black (10YR 2/1) silty clay, dark gray (10YR 4/1) dry; moderate medium and fine blocky structure; hard, firm, sticky and plastic; few fine prominent olive (5Y 5/3) Fe concentrations; strong effervescence (about 7 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (Combined thickness of the Bw horizon is 25 to 40 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "By--35 to 56 inches; very dark gray (10YR 3/1) silty clay, gray (10YR 5/1) dry; weak medium and fine subangular blocky structure; hard, firm, sticky and slightly plastic; few fine prominent olive (5Y 4/3) Fe concentrations; many fine gypsum crystals; few medium and fine accumulations of carbonate; strong effervescence (about 8 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--56 to 60 inches; very dark gray (5Y 3/1) silty clay, gray (5Y 5/1) dry; massive; very hard, firm, sticky and plastic; many fine and medium distinct olive (5Y 4/3), and few fine and medium prominent dark brown (10YR 4/3) Fe concentrations; few fine gypsum crystals; few fine accumulations of carbonate; violent effervescence (about 19 percent calcium carbonate); moderately alkaline." diff --git a/inst/extdata/OSD/B/BANKARD.json b/inst/extdata/OSD/B/BANKARD.json index b8c36c54d5..07e5f1f5d2 100644 --- a/inst/extdata/OSD/B/BANKARD.json +++ b/inst/extdata/OSD/B/BANKARD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 5 centimeters (0 to 2 inches); yellowish brown (10YR 5/4) sand, brown (10YR 4/3), moist; weak fine granular structure; very friable, soft, nonsticky, nonplastic; slightly effervescence, 2 percent calcium carbonate equivalent; moderately alkaline (pH 8.0); abrupt smooth boundary. (5 to 20 centimeters (2 to 8 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--5 to 30 centimeters (2 to 12 inches); yellowish brown (10YR 5/4) sand, brown (10YR 4/3), moist; weak medium platy structure; very friable, soft, nonsticky, nonplastic; slight effervescence, 1 percent calcium carbonate equivalent; moderately alkaline (pH 8.0); gradual wavy boundary. (10 to 33 centimeters (4 to 13 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--30 to 72 centimeters (12 to 28 inches); yellowish brown (10YR 5/4) loamy sand, brown (10YR 4/3), moist; 15 percent fine distinct irregular yellowish brown (10YR 5/6) relict masses of oxidized iron; weak medium subangular blocky structure; very friable, soft, nonsticky, nonplastic; slight effervescence, 2 percent calcium carbonate equivalent; moderately alkaline (pH 8.0); clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--72 to 200 centimeters (28 to 80 inches); yellowish brown (10YR 5/4) stratified clay loam to sand, brown (10YR 4/3), moist; single grain; friable, slightly hard, slightly sticky, slightly plastic; slight effervescence, 3 percent calcium carbonate equivalent; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/B/BANKS.json b/inst/extdata/OSD/B/BANKS.json index e526a8ef18..554a0bbbd6 100644 --- a/inst/extdata/OSD/B/BANKS.json +++ b/inst/extdata/OSD/B/BANKS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 4 inches; light brownish gray (2.5Y 6/2) very fine sandy loam, dark grayish brown (2.5Y 4/2) moist; weak medium granular structure; very friable; many roots; slight effervescence; slightly alkaline; abrupt wavy boundary. (2 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--4 to 30 inches; light brownish gray (2.5Y 6/2) fine sand, grayish brown (2.5Y 5/2) moist; single grain; loose; few roots; slight effervescence; slightly alkaline; abrupt wavy boundary. (0 to 40 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--30 to 60 inches; light brownish gray (2.5Y 6/2) loamy fine sand, dark grayish brown (2.5Y 4/2) moist; single grain; loose; some very thin (1/8 to 1/2 inch) bands of silt and very fine sand; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BANKSTON.json b/inst/extdata/OSD/B/BANKSTON.json index e8dcc3f898..aff0f1e590 100644 --- a/inst/extdata/OSD/B/BANKSTON.json +++ b/inst/extdata/OSD/B/BANKSTON.json @@ -112,7 +112,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "Violently effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--3 to 14 inches; pink (7.5YR 7/4) extremely cobbly loam, brown (7.5YR 5/4) moist; moderate fine subangular blocky structure; soft, very friable; nonsticky and nonplastic; few very fine roots throughout; 15 percent clay; many prominent continuous carbonate coats on rock fragments; common medium rounded carbonate nodules throughout; violently effervescent throughout ( HCL, 1 normal); 45 percent angular limestone cobbles and 20 percent angular limestone gravel and 5 percent channers; clear smooth boundary. Violently effervescent; moderately alkaline; gradual smooth boundary (5 to 15 inches thick)." diff --git a/inst/extdata/OSD/B/BANSHEE.json b/inst/extdata/OSD/B/BANSHEE.json index 03f57d2a77..7281e5024d 100644 --- a/inst/extdata/OSD/B/BANSHEE.json +++ b/inst/extdata/OSD/B/BANSHEE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--19 to 26 inches; grayish brown (10YR 5/2) clay, grayish brown (10YR 5/2) moist; moderate fine subangular blocky structure; soft, very friable, very sticky and very plastic; common fine and medium roots; common fine tubular pores; common distinct clay films on ped faces and rock fragments; many calcium carbonate coatings on ped faces and rock fragments; common calcium carbonate filaments; 5 percent gravel; slightly effervescent to strongly effervescent; slightly alkaline (pH 7.8); clear wavy boundary. (4 to 12 inches thick)" diff --git a/inst/extdata/OSD/B/BARBERT.json b/inst/extdata/OSD/B/BARBERT.json index cba408a21a..321a3e90cb 100644 --- a/inst/extdata/OSD/B/BARBERT.json +++ b/inst/extdata/OSD/B/BARBERT.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--43 to 60 inches; olive (5Y 5/3) heavy silty clay loam; many medium prominent yellowish brown (10YR 5/8) mottles; massive-laminated; firm; common dark colored concretions; slightly alkaline; strong effervescence." diff --git a/inst/extdata/OSD/B/BARNES.json b/inst/extdata/OSD/B/BARNES.json index 6b664ba210..f30845c7d4 100644 --- a/inst/extdata/OSD/B/BARNES.json +++ b/inst/extdata/OSD/B/BARNES.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--48 to 94 cm; olive brown (2.5Y 4/4) loam, pale yellow (2.5Y 7/4) dry; moderate coarse prismatic structure parting to moderate medium subangular blocky; friable, slightly sticky and slightly plastic; few medium pores; few masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (18 to 61 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--94 to 152 cm; light olive brown (2.5Y 5/4) loam, light yellowish brown (2.5Y 6/4) dry; few medium prominent yellowish brown (10YR 5/6) mottles; massive; hard, firm, slightly sticky and slightly plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BARNEY.json b/inst/extdata/OSD/B/BARNEY.json index 70a7ebbeab..49ed29cff4 100644 --- a/inst/extdata/OSD/B/BARNEY.json +++ b/inst/extdata/OSD/B/BARNEY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 7 inches; gray (10YR 5/1) loam, very dark gray (10YR 3/1) moist; common fine distinct strong brown (7.5YR 5/6) moist iron accumulations in the matrix; weak thin platy structure; slightly hard, friable; few thin strata of fine sandy loam and loamy fine sand; strong effervescence; moderately alkaline; clear smooth boundary. (6 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ACg--7 to 10 inches; gray (10YR 6/1) loam, dark gray (10YR 4/1) moist, common fine prominent strong brown (7.5YR 5/6) moist, iron accumulations in the matrix; weak thin platy structure; slightly hard, friable; few thin strata of fine sandy loam and loamy fine sand; common fine and very fine roots; strong effervescence; moderately alkaline, clear smooth boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/B/BASFORD.json b/inst/extdata/OSD/B/BASFORD.json index 2a0c27b4ba..dcea3a7485 100644 --- a/inst/extdata/OSD/B/BASFORD.json +++ b/inst/extdata/OSD/B/BASFORD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "NA", "topography": "NA", "narrative": "^Aseg--0 to 32 centimeters (0 to 13 in); dark greenish gray (10Y 4/1) loam; massive; slightly fluid; moderate color change and effervescence for 30 percent hydrogen peroxide; moderate color change and no effervescence for 3 percent hydrogen peroxide; electrical conductivity of 15.0 dS/m by ec meter; moderately alkaline (pH 8.0), abrupt boundary. (5 to 82 centimeters, 2 to 32 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "NA", "topography": "NA", "narrative": "^Cseg--32 to 76 centimeters (13 to 30 in); dark greenish gray (10Y 4/1) fine sandy loam; massive; slightly fluid; 3 percent shell fragments; moderate color change and slight effervescence for 30 percent hydrogen peroxide; slight color change and no effervescence for 3 percent hydrogen peroxide; electrical conductivity of 19.0 dS/m by ec meter; moderately alkaline (pH 8.0); clear boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "or effervescence", "distinctness": "NA", "topography": "NA", "narrative": "^Cg1--76 to 145 centimeters (30 to 57 in); dark greenish gray (10Y 4/1) very fine sandy loam; massive; nonfluid; 2 percent shell fragments; no color change or effervescence for 3 or 30 percent hydrogen peroxide; electrical conductivity of 21.0 dS/m by ec meter; moderately alkaline (pH 8.0); gradual boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "or effervescence", "distinctness": "NA", "topography": "NA", "narrative": "^Cg2--145 to 203 centimeters (57 to 80 in); dark gray (N 4/), very fine sandy loam; massive; nonfluid; 3 percent shell fragments; no color change or effervescence for 3 or 30 percent hydrogen peroxide; electrical conductivity of 21.0 dS/m by ec meter; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/B/BASKET.json b/inst/extdata/OSD/B/BASKET.json index 8eca8d93a2..b9c730779b 100644 --- a/inst/extdata/OSD/B/BASKET.json +++ b/inst/extdata/OSD/B/BASKET.json @@ -250,7 +250,7 @@ "cf_class": "very gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cqk--97 to 152 cm; light brown (7.5YR 6/3) very gravelly sandy loam, brown (7.5YR 4/3), moist; massive; soft, very friable, slightly sticky, slightly plastic; few fine roots; few fine tubular pores; 10 percent coarse strongly cemented silica and carbonate concretions and 35 percent fine to coarse weakly cemented carbonate masses; 5 percent cobbles and 40 percent gravel; violently effervescence; slightly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/B/BASSETT.json b/inst/extdata/OSD/B/BASSETT.json index 1ad6ecb721..8dcae0390b 100644 --- a/inst/extdata/OSD/B/BASSETT.json +++ b/inst/extdata/OSD/B/BASSETT.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2BC--117 to 152 centimeters; yellowish brown (10YR 5/6) loam; few prominent grayish brown (2.5Y 5/2) iron depletions; weak very coarse subangular blocky structure; firm; few moderately cemented carbonate masses; 1 percent mixed rock fragments (2 to 75 millimeters in diameter); strong effervescence; slightly alkaline, pH 7.6." diff --git a/inst/extdata/OSD/B/BAVARIA.json b/inst/extdata/OSD/B/BAVARIA.json index cf66981425..2fed9dc823 100644 --- a/inst/extdata/OSD/B/BAVARIA.json +++ b/inst/extdata/OSD/B/BAVARIA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btny--33 to 53 centimeters (13 to 21 inches); dark grayish brown (10YR 4/2) silty clay, very dark brown (10YR 2/2) moist; weak medium columnar structure parting to moderate fine subangular blocky; extremely hard, very firm; few very fine roots between peds; few faint discontinuous clay films; few medium irregular gypsum crystals; common medium masses of salt crystals; sodium adsorption ratio of 17; electrical conductivity of 9.38 dS/m; very slight effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btn--53 to 89 centimeters (21 to 35 inches); grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate medium subangular blocky structure; extremely hard, very firm; few very fine roots between peds; few faint discontinuous clay films; sodium adsorption ratio of 23; electrical conductivity of 1.96 dS/m; slight effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of Bt ranges from (25 to 67 centimeters (10 to 27 inches) thick)." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkn--89 to 114 centimeters (35 to 45 inches); brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; few fine prominent reddish brown (5YR 5/4) masses of oxidized iron; weak medium subangular blocky structure; very hard, very firm; few medium irregular calcium carbonate concretions; slight effervescence; moderately alkaline; gradual smooth boundary. (0 to 38 centimeters (0 to 15 inches) thick)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--114 to 200 centimeters (45 to 79 inches); pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; few fine prominent reddish brown (5YR 4/4) masses of oxidized iron; massive; hard, firm; few medium irregular gypsum crystals; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BAVIZA.json b/inst/extdata/OSD/B/BAVIZA.json index dc8dbcf526..f5f203b034 100644 --- a/inst/extdata/OSD/B/BAVIZA.json +++ b/inst/extdata/OSD/B/BAVIZA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; yellowish brown (10YR 5/4) loamy fine sand, brown (10YR 4/3) moist; weak coarse subangular blocky structure parting to weak fine and medium subangular blocky; loose, very friable, nonsticky and nonplastic; violent effervescence; moderately alkaline; clear smooth boundary. (2 to 19 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--3 to 29 inches; yellowish brown (10YR 5/4) sand, dark yellowish brown (10YR 4/4) moist; single grain; loose, loose, nonsticky and nonplastic; 1 percent igneous gravel; violent effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--29 to 47 inches; yellowish brown (10YR 5/4) gravelly sand, dark yellowish brown (10YR 4/4) moist; single grain; loose, loose, nonsticky and nonplastic; 5 percent distinct white (10YR 8/1), dry, coats of calcium carbonate on rock fragments; 15 percent igneous gravel; violent effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--47 to 80 inches; yellowish brown (10YR 5/4) gravelly sand, dark yellowish brown (10YR 4/4) moist; single grain; loose, loose, nonsticky and nonplastic; 5 percent distinct coats of calcium carbonate on rock fragments; 17 percent igneous gravel; violent effervescence; moderately alkaline. (Combined thickness of the C horizon is 61 inches or more)" diff --git a/inst/extdata/OSD/B/BAYARD.json b/inst/extdata/OSD/B/BAYARD.json index cbd57919ff..6b22b19a2a 100644 --- a/inst/extdata/OSD/B/BAYARD.json +++ b/inst/extdata/OSD/B/BAYARD.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--18 to 33 centimeters (7 to 13 inches); dark grayish brown (10YR 4/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; weak, coarse, subangular blocky structure; soft, very friable; slight effervescence; slightly alkaline; clear smooth boundary. (5 to 25 centimeters (2 to 10 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--56 to 107 centimeters (22 to 42 inches); light brownish gray (10YR 6/2) fine sandy loam, brown (10YR 5/3) moist; massive; soft, very friable; strong effervescence; slightly alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/B/BEADLE.json b/inst/extdata/OSD/B/BEADLE.json index 7f44b811c7..8207b09f65 100644 --- a/inst/extdata/OSD/B/BEADLE.json +++ b/inst/extdata/OSD/B/BEADLE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 30 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to moderate medium subangular blocky; hard, friable, sticky and plastic; few fine roots; many fine accumulations of calcium carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--30 to 36 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium and coarse subangular blocky structure; slightly hard, friable, slightly sticky and plastic; few fine roots; few fine accumulations of calcium carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined Bk horizons is 4 to 28 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; light brownish gray (2.5Y 6/2) and grayish brown (2.5Y 5/2) clay loam, grayish brown (2.5Y 5/2) and dark grayish brown (2.5Y 4/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BEARDEN.json b/inst/extdata/OSD/B/BEARDEN.json index b2b75b3347..a2b93c418d 100644 --- a/inst/extdata/OSD/B/BEARDEN.json +++ b/inst/extdata/OSD/B/BEARDEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) silty clay loam, very dark gray (10YR 3/1) dry; moderate very fine subangular blocky structure parting to moderate fine granular; very hard, friable, slightly sticky and slightly plastic; common fine roots; many fine pores; few threads of carbonates; strong effervescence (8 percent calcium carbonate); slightly alkaline; abrupt smooth boundary. (Combined A horizons 6 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "ABk--7 to 18 inches; dark gray (10YR 4/1) and very dark gray (10YR 3/1) silty clay loam, gray (10YR 5/1) and dark gray (10YR 4/1) dry, gray (10YR 6/1) dry in the lower part; weak coarse and medium subangular blocky structure; very hard, friable, sticky and plastic; common fine roots; many fine pores; few fine masses of carbonates; disseminated carbonates throughout with the amount increasing with depth; violent effervescence (15 to 20 percent calcium carbonate); moderately alkaline; clear irregular boundary. (0 to 14 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--18 to 28 inches; light olive brown (2.5Y 5/4) silty clay loam, light yellowish brown (2.5Y 6/4) dry; moderate medium and fine subangular blocky structure; hard, friable, sticky and plastic; few fine roots; many fine pores; violent effervescence (25 percent calcium carbonate); moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--28 to 36 inches; olive brown (2.5Y 4/4) silty clay loam, light yellowish brown (2.5Y 6/4) dry; few fine prominent gray (5Y 5/1) and few fine and medium prominent very dark brown (10YR 2/2) redoximorphic depletions; weak coarse subangular blocky structure parting to moderate fine and very fine subangular blocky; hard, friable, sticky and plastic; few fine pores; few masses of carbonates; violent effervescence (15 percent calcium carbonate); moderately alkaline; clear wavy boundary. (Combined Bk horizons 0 to 54 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--36 to 46 inches; light olive brown (2.5Y 5/4) laminated silty clay loam, light yellowish brown (2.5Y 6/4) dry; common medium and fine prominent gray (5Y 5/1) redoximorphic depletions and common medium faint dark yellowish brown (10YR 4/4) redoximorphic concentrations; few black non-manganese spots; massive; very hard, friable, sticky and plastic; masses of gypsum crystals; few masses of carbonates; strong effervescence (15 percent calcium carbonate); moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--46 to 60 inches; light olive brown (2.5Y 5/4) laminated silty clay loam; light yellowish brown (2.5Y 6/4) dry; common prominent gray (5Y 5/1) redoximorphic depletions and many fine and medium distinct dark yellowish brown (10YR 4/4) and prominent strong brown (7.5YR 5/6) redoximorphic concentrations; massive; very hard, firm, sticky and plastic; few masses of carbonates; strong effervescence (15 percent calcium carbonate); slightly alkaline." diff --git a/inst/extdata/OSD/B/BEARVILLE.json b/inst/extdata/OSD/B/BEARVILLE.json index b56b9f56d5..c48fb7f48e 100644 --- a/inst/extdata/OSD/B/BEARVILLE.json +++ b/inst/extdata/OSD/B/BEARVILLE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3BCg--35 to 60 inches; grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) clay; weak very coarse subangular blocky structure that parts to moderate fine and very fine subangular blocky; friable; common medium distinct light yellowish brown (2.5Y 6/4) Fe concentrations; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BEAUBIEN.json b/inst/extdata/OSD/B/BEAUBIEN.json index 01f4b39670..aa99f81b3c 100644 --- a/inst/extdata/OSD/B/BEAUBIEN.json +++ b/inst/extdata/OSD/B/BEAUBIEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkb--83 to 140 cm (33 to 55 in); brown (7.5YR 5/4) sandy clay loam, brown (7.5YR 4/3), moist; weak coarse prismatic structure parting to weak medium and fine subangular blocky; hard, very friable; very few fine roots between peds; common medium tubular pores; few carbonate coats in root channels and pores; few clay films on faces of peds; common fine dendritic carbonate masses in pore linings; slight effervescence (0.7 percent calcium carbonate); slightly alkaline, pH 7.4; gradual wavy boundary." diff --git a/inst/extdata/OSD/B/BEAUFORD.json b/inst/extdata/OSD/B/BEAUFORD.json index 3e50d88db2..515dd03ca4 100644 --- a/inst/extdata/OSD/B/BEAUFORD.json +++ b/inst/extdata/OSD/B/BEAUFORD.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--46 to 62 inches; grayish brown (2.5Y 5/2) clay; many fine and medium distinct light olive brown (2.5Y 5/6) mottles; massive; firm; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/B/BEAVERTAIL.json b/inst/extdata/OSD/B/BEAVERTAIL.json index 5bd2c59d9d..05fbfb7a07 100644 --- a/inst/extdata/OSD/B/BEAVERTAIL.json +++ b/inst/extdata/OSD/B/BEAVERTAIL.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cd--29 to 60 inches; pale brown (10YR 6/3) very gravelly fine sandy loam; massive; firm; few fine prominent strong brown (7.5YR 5/6) iron accumulations throughout; about 40 percent gravel and 15 percent cobbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BECKMAN.json b/inst/extdata/OSD/B/BECKMAN.json index e435e744b6..25dd46d7db 100644 --- a/inst/extdata/OSD/B/BECKMAN.json +++ b/inst/extdata/OSD/B/BECKMAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; reddish brown (5YR 4/3) clay, dark reddish brown (5YR 3/3) moist; moderate medium angular blocky parting to moderate medium platy structure; very firm, extremely hard; many fine and many medium roots; many fine and few medium pores; cracks 1/2 to 1 cm wide; nonsaline; very slight effervescence; slightly alkaline; clear smooth boundary. (3 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--4 to 14 inches; reddish brown (5YR 5/3) silty clay, reddish brown (5YR 4/3) moist; moderate medium prismatic parting to weak medium angular blocky structure; very firm, extremely hard; many fine and many medium roots; many fine and many medium pores; 15 percent distinct pressure faces; cracks 1/2 to 1 cm wide; very slightly saline; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkyz1--14 to 24 inches; reddish brown (5YR 5/3) silty clay, reddish brown (5YR 4/3) moist; weak coarse prismatic parting to weak fine and medium subangular blocky structure; very firm, extremely hard; common fine and common medium roots; common fine and common medium pores; cracks 1/2 to 1 cm wide; 2 percent fine masses of calcium carbonate; 5 percent visible fine gypsum and salt crystals, 2 percent by weight gypsum; slightly saline; violent effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bkyz horizons ranges from 20 to 50 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkyz2--24 to 41 inches; reddish brown (5YR 5/3) silty clay loam, reddish brown (5YR 4/3) moist; weak coarse prismatic parting to weak fine and medium subangular blocky structure; firm, very hard; common fine and very fine, and few medium roots; common fine and very fine, and few medium pores; 2 percent fine masses of calcium carbonate; 30 percent visible fine gypsum and salt crystals, 11 percent by weight gypsum; moderately saline; 1 percent distinct iron depletions lining pores; violent effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cyz1--41 to 51 inches; reddish brown (5YR 5/3) stratified clay loam, reddish brown (5YR 4/3) moist; massive; firm, hard; few fine and very fine roots; few fine and very fine pores; strata are 2 to 3 inches thick; 3 percent visible fine gypsum and salt crystals, 6 percent by weight gypsum; strongly saline; 1 percent distinct iron depletions lining pores; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cyz2--51 to 63 inches; reddish brown (5YR 5/3) silty clay loam, reddish brown (5YR 4/3) moist; massive; very firm, extremely hard; few fine and very fine roots; few fine and very fine pores; 2 percent visible fine gypsum and salt crystals, 11 percent by weight gypsum; moderately saline; 10 percent prominent greenish gray (5BG 6/1), moist, iron depletions lining pores; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Cyz3--63 to 72 inches; reddish brown (5YR 5/3) stratified gravelly silty clay, reddish brown (5YR 4/3) moist; massive; very firm, extremely hard; few very fine roots; few very fine pores; 7 percent visible fine gypsum and salt crystals, 11 percent by weight gypsum; moderately saline; 1 percent rounded quartzite gravel and 20 percent shale paragravel; 10 percent fine prominent greenish gray (5BG 6/1), moist, iron depletions lining pores; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cd--72 to 80 inches; dark red (2.5YR 3/6) densic claystone bedrock; moderately saline; very slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BEDNER.json b/inst/extdata/OSD/B/BEDNER.json index aed04ba54b..1f75434a1f 100644 --- a/inst/extdata/OSD/B/BEDNER.json +++ b/inst/extdata/OSD/B/BEDNER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "C1sim--21 to 31 inches; dark brown (10YR 3/3) duripan; pale brown (10YR 6/3) dry; many faint dark brown (7.5YR 4/3) mottles; many light gray (10YR 7/2) mottles dry; platy structure; very firm and brittle; weakly cemented; silica coatings on surface of plates; weakly effervescent; moderately alkaline (pH 8.3); clear wavy boundary. (4 to 20 inches thick)" diff --git a/inst/extdata/OSD/B/BEDSTEAD.json b/inst/extdata/OSD/B/BEDSTEAD.json index 130055c8c6..8898ab4774 100644 --- a/inst/extdata/OSD/B/BEDSTEAD.json +++ b/inst/extdata/OSD/B/BEDSTEAD.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bkqm--53 to 56 cm; white (10YR 8/2) continuous, indurated duripan; platy; extremely hard, very firm, brittle; moderately effervescent; slightly alkaline (pH 7.9); abrupt irregular boundary. (1/4 to 4 inches thick)" diff --git a/inst/extdata/OSD/B/BEEDE_LAKE.json b/inst/extdata/OSD/B/BEEDE_LAKE.json index 4779a6d101..c208a012ef 100644 --- a/inst/extdata/OSD/B/BEEDE_LAKE.json +++ b/inst/extdata/OSD/B/BEEDE_LAKE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3C--76 to 203 centimeters; stratified 45 percent reddish brown (2.5YR 4/4) silty clay, 30 percent reddish brown (5YR 4/3) silt loam, 20 percent brown (7.5YR 5/3) silt loam, and 5 percent red (10R 4/6) clay; massive parting to strong medium depositional plates; firm; few medium roots; violently effervescent (HCl, 1 normal)in the silt loam layers and none to slightly effervescent (HCl, 1 normal) in the silty clay and clay layers; moderately alkaline (pH 8.0, Hellige-Truog)." diff --git a/inst/extdata/OSD/B/BEISIGL.json b/inst/extdata/OSD/B/BEISIGL.json index 492c1d4538..e2a89f4cf6 100644 --- a/inst/extdata/OSD/B/BEISIGL.json +++ b/inst/extdata/OSD/B/BEISIGL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 5 inches; grayish brown (10YR 5/2) loamy fine sand, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine roots; many very fine pores; 1 percent sandstone channers; slight effervescence; slightly alkaline; clear smooth boundary. (2 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--5 to 12 inches; light yellowish brown (2.5Y 6/4) loamy fine sand, light olive brown (2.5Y 5/4) moist; weak medium prismatic structure parting to weak fine granular; soft, very friable; nonsticky and nonplastic; common very fine roots; common very fine pores; 1 percent sandstone channers; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--12 to 27 inches; pale yellow (2.5Y 7/4) loamy fine sand, light yellowish brown (2.5Y 6/4) moist; weak coarse and medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; common very fine roots; common very fine pores; 1 percent coarse sandstone channers; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined Bk horizons 10 to 30 inches thick)" diff --git a/inst/extdata/OSD/B/BELFIELD.json b/inst/extdata/OSD/B/BELFIELD.json index a163d6865e..e325235336 100644 --- a/inst/extdata/OSD/B/BELFIELD.json +++ b/inst/extdata/OSD/B/BELFIELD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--24 to 31 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to weak medium subangular blocky; very hard, friable; few roots; many fine and very fine pores; common threads and masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--31 to 43 inches; light brownish gray (2.5Y 6/2) and pale yellow (2.5Y 8/2) silty clay loam, dark grayish brown (2.5Y 4/2) and light brownish gray (2.5Y 6/2) moist; weak medium prismatic structure parting to moderate medium subangular blocky; very hard, friable; many fine pores; many threads and masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 0 to 36 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--43 to 60 inches; light olive brown (2.5Y 5/4) clay loam, olive brown (2.5Y 4/4) moist; massive; very hard, friable; many fine pores; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BELK.json b/inst/extdata/OSD/B/BELK.json index 0c6b08b70a..984e39be53 100644 --- a/inst/extdata/OSD/B/BELK.json +++ b/inst/extdata/OSD/B/BELK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 6 inches; reddish brown (5YR 4/3) clay, reddish brown (5YR 5/3) dry; moderate fine and medium subangular blocky structure; extremely hard, very firm, very sticky; few fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (3 to 9 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--26 to 45 inches; reddish brown (5YR 5/4) silt loam, light reddish brown (5YR 6/4) dry; massive; slightly hard, very friable; few thin bedding planes of yellowish red (5YR 4/6) very fine sandy loam; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--45 to 73 inches; yellowish red (5YR 5/6) silt loam, reddish yellow (5YR 6/6) dry; many thin discontinuous bedding planes; slightly hard, very friable; common thin bedding planes of reddish brown (5YR 5/4) very fine sandy loam; few thin bedding planes of reddish brown (5YR 4/4) clay in lower part; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BELSAC.json b/inst/extdata/OSD/B/BELSAC.json index 90d32ef77e..14d04fdb25 100644 --- a/inst/extdata/OSD/B/BELSAC.json +++ b/inst/extdata/OSD/B/BELSAC.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "A3--15 to 50 cm; dark grayish brown (10YR 4/2) very gravelly loam, very dark brown (10YR 2/2) moist; moderate medium and coarse subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine, few fine and medium roots; common very fine and few fine tubular pores; few thin strongly effervescent carbonate coats on gravel; 40 percent gravel; noneffervescent matrix; slightly alkaline (pH 7.5); clear wavy boundary. (0 to 38 cm thick)" diff --git a/inst/extdata/OSD/B/BELVUE.json b/inst/extdata/OSD/B/BELVUE.json index bb76c14236..9d543ac5e5 100644 --- a/inst/extdata/OSD/B/BELVUE.json +++ b/inst/extdata/OSD/B/BELVUE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--24 to 39 inches; brown (10YR 5/3) silt loam, very pale brown (10YR 7/3) dry; massive; soft, very friable, nonsticky and nonplastic; common fine roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C4--39 to 58 inches; brown (10YR 5/3) very fine sandy loam, pale brown (10YR 6/3) dry; massive; soft, very friable, nonsticky and nonplastic; few fine roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--58 to 80 inches; pale brown (10YR 6/3) silt loam, very pale brown (10YR 8/3) dry; massive; soft, very friable, nonsticky and nonplastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BEND.json b/inst/extdata/OSD/B/BEND.json index 81261426a3..6765e51388 100644 --- a/inst/extdata/OSD/B/BEND.json +++ b/inst/extdata/OSD/B/BEND.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--13 to 38 inches; light yellowish brown (2.5Y 6/3) loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to moderate medium and coarse subangular blocky; very hard, friable; slightly sticky and slightly plastic; few fine roots throughout; common fine accumulations of carbonate; violent effervescence; moderately alkaline; clear smooth boundary. (6 to 33 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--38 to 46 inches; light yellowish brown (2.5Y 6/3) silt loam, varved with very thin layers of very fine sand to clay; light olive brown (2.5Y 5/3) moist; many medium and coarse distinct relic mottles of light gray (10YR 7/1); common medium prominent brownish yellow (10YR 6/6) iron stains; massive; hard, friable; slightly sticky and slightly plastic; 1 to 2 mm thick varves;common fine cylindrical iron concretions; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cyz--46 to 60 inches; light yellowish brown (2.5Y 6/3) silt loam varved with very thin layers of very fine sand to clay, light olive brown (2.5Y 5/3) moist, many medium and coarse distinct relic mottles of light gray (10YR 7/1); common medium prominent brownish yellow (10YR 6/6) iron stains; massive; hard, friable; slightly sticky and slightly plastic; 1 to 2 mm thick varves; common fine and medium plate like nests of gypsum; few fine cylindrical salt masses; common fine cylindrical iron concretions; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BENFIELD.json b/inst/extdata/OSD/B/BENFIELD.json index dad84df9f2..4b5228e79b 100644 --- a/inst/extdata/OSD/B/BENFIELD.json +++ b/inst/extdata/OSD/B/BENFIELD.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bt2--51 to 66 centimeters (20 to 26 inches); dark reddish brown (5YR 3/3) exterior, moist, silty clay; moderate medium subangular blocky structure; hard, very firm, very sticky and very plastic; common fine roots throughout; 15 percent patchy faint dark brown (7.5YR 3/2) moist, clay films on faces of peds; strong effervescence; neutral; clear wavy boundary. (Combined thickness of the Bt horizons is 33 to 68 centimeters (13 to 27 inches).)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btk--66 to 85 centimeters (26 to 33 inches) dark reddish gray (5YR 4/2) exterior, moist, silty clay; weak medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; common fine roots throughout; 5 percent patchy faint dark brown (7.5YR 3/3) moist, clay films on faces of peds; 5 percent fine spherical carbonate nodules between peds; strong effervescence; slightly alkaline; abrupt wavy boundary. (12 to 46 centimeters (5 to 18 inches) thick.)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "3BCk--85 to 99 centimeters (33 to 39 inches); olive (5Y 5/4) exterior, moist, very paragravelly silty clay loam; weak fine subangular blocky structure; hard, firm, moderately sticky and moderately plastic; 10 percent fine irregular carbonate nodules between peds; 60 percent fine, medium, and coarse shale paragravel; violent effervescence; slightly alkaline; clear wavy boundary. (10 to 49 centimeters (4 to 19 inches) thick.)" diff --git a/inst/extdata/OSD/B/BENSON.json b/inst/extdata/OSD/B/BENSON.json index 469a4c602e..2dad9d3a5f 100644 --- a/inst/extdata/OSD/B/BENSON.json +++ b/inst/extdata/OSD/B/BENSON.json @@ -158,7 +158,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw2 -- 11 to 19 inches; dark grayish brown (10YR 4/2) very channery silt loam; weak fine subangular blocky structure; friable; many roots; 40 percent rock fragments; strongly effervescence; slightly alkaline; abrupt wavy boundary. (Combined thickness of the Bw horizon is 6 to 16 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--19 inches; dark gray (N 4/0) limestone; violent effervescence." diff --git a/inst/extdata/OSD/B/BENSTOT.json b/inst/extdata/OSD/B/BENSTOT.json index 5693cf867f..d7f5bace37 100644 --- a/inst/extdata/OSD/B/BENSTOT.json +++ b/inst/extdata/OSD/B/BENSTOT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--16 to 32 inches; dark grayish brown (10YR 4/2) silt loam; light brownish gray (10YR 6/2) dry; weak fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; many very fine and fine and few medium roots; few very fine tubular pores; moderately effervescent; mildly alkaline (pH 7.8); clear smooth boundary. (15 to 24 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C1--32 to 60 inches; dark brown (10YR 4/3) silt loam; pale brown (10YR 6/3) dry; massive; few weak distinct mottles (7.5YR 5/4); few very fine and fine roots; slightly hard, friable, slightly sticky, slightly plastic, few very fine and fine roots; moderately effervescent; mildly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/B/BEOTIA.json b/inst/extdata/OSD/B/BEOTIA.json index ac46a61ea1..ab711134d5 100644 --- a/inst/extdata/OSD/B/BEOTIA.json +++ b/inst/extdata/OSD/B/BEOTIA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--20 to 32 inches; pale yellow (2.5Y 7/4) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse prismatic structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; common fine pores; few fine accumulations of carbonate; violent effervescence (34 percent calcium carbonate); moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--32 to 42 inches; pale yellow (2.5Y 8/4) silt loam, light olive brown (2.5Y 5/4) moist; weak very coarse prismatic structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; many fine pores; few fine nests of gypsum and other salts; few fine accumulations of carbonate; violent effervescence (25 percent calcium carbonate); moderately alkaline; clear smooth boundary. (Combined Bk horizons are 10 to 29 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--42 to 60 inches; pale yellow (2.5Y 8/4) silt loam, light olive brown (2.5Y 5/4) moist; common fine prominent yellowish brown (10YR 5/6) and strong brown (7.5YR 5/6) redox concentrations and common fine prominent gray (10YR 6/1) moist redox depletions; massive, varved; slightly hard, friable, slightly sticky and slightly plastic; few fine mostly horizontal pores; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BERENT.json b/inst/extdata/OSD/B/BERENT.json index 39ddd31eb7..310006bacb 100644 --- a/inst/extdata/OSD/B/BERENT.json +++ b/inst/extdata/OSD/B/BERENT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; pale brown (10YR 6/3) loamy fine sand, dark grayish brown (10YR 4/2) moist; single grain; loose; many very fine and few fine roots; slight effervescence, carbonates are disseminated; moderately alkaline (pH 8.0); clear smooth boundary. (0 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--6 to 16 inches; pale brown (10YR 6/3) fine sand, brown (10YR 4/3) moist; single grain; loose; common very fine and few fine and medium roots; slight effervescence, carbonates are disseminated; moderately alkaline (pH 8.2); gradual wavy boundary. (2 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--16 to 39 inches; light yellowish brown (10YR 6/4) fine sand, dark yellowish brown (10YR 4/4) moist; single grain; loose; few very fine and fine roots; slight effervescence, carbonates are disseminated; strongly alkaline (pH 8.8); gradual wavy boundary. (5 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--39 to 60 inches; light yellowish brown (10YR 6/4) fine sand, brown (10YR 5/3) moist; single grain; loose; few very fine roots; slight effervescence, carbonates are disseminated; strongly alkaline (pH 9.0)." diff --git a/inst/extdata/OSD/B/BERGLAND.json b/inst/extdata/OSD/B/BERGLAND.json index 0c6bb1996c..4086c237bc 100644 --- a/inst/extdata/OSD/B/BERGLAND.json +++ b/inst/extdata/OSD/B/BERGLAND.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt1--25 to 35 inches; reddish brown (2.5YR 4/4) clay; moderate coarse subangular blocky structure; very firm; many light greenish gray (5G 7/1) clay films on faces of peds and threadlike veins in ped interiors; few small soft nodules of calcium carbonate; slight effervescence; moderately alkaline; gradual smooth boundary. (8 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bt2--35 to 48 inches; reddish brown (2.5YR 4/4) clay; moderate very coarse angular blocky structure; very firm; common light greenish gray (5G 7/1) clay films on faces of peds and threadlike veins in ped interiors; few soft modules of calcium carbonate; slight effervescence; moderately alkaline; abrupt smooth boundary. (10 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 80 inches; reddish brown (2.5YR 4/4) silty clay; massive, with some evidence of platiness; firm; few light greenish gray (5G 7/1) clay films in pores; about 5 percent rounded gravel, 1/8 to 1/4 inch in diameter; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BERREND.json b/inst/extdata/OSD/B/BERREND.json index c6c28c96fc..5778662cb6 100644 --- a/inst/extdata/OSD/B/BERREND.json +++ b/inst/extdata/OSD/B/BERREND.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--19 to 38 inches; brown (7.5YR 5/4) clay loam, brown (7.5YR 4/3) moist; weak fine and medium subangular blocky structure; very hard, firm, slightly sticky and slightly plastic; common very fine and fine roots; common fine and few medium pores; very few faint clay films on faces of peds; few fine and medium masses of calcium carbonate; 1 percent igneous gravel; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 45 inches)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk--38 to 60 inches; light brown (7.5YR 6/3) loam, brown (7.5YR 5/3) moist; weak fine and medium subangular blocky structure; very hard, firm, slightly sticky and slightly plastic; common very fine and fine roots; few fine pores; few distinct coats of calcium carbonate on rock fragments; common medium and coarse masses of calcium carbonate; 5 percent igneous gravel; violent effervescence; moderately alkaline; diffuse wavy boundary. (12 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--60 to 80 inches; pink (7.5YR 7/4) fine sandy loam, light brown (7.5YR 6/4) moist; massive; soft, very friable, slightly sticky and nonplastic; 5 percent igneous gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BETHANY.json b/inst/extdata/OSD/B/BETHANY.json index 4e14ea43fd..e1ce21bf24 100644 --- a/inst/extdata/OSD/B/BETHANY.json +++ b/inst/extdata/OSD/B/BETHANY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk1--91 to 142 cm (36 to 56 in); brown (10YR 5/3) silty clay, brown (10YR 4/3) moist; moderate coarse angular blocky structure parting to moderate angular blocky; very hard, very firm; common prominent clay films on faces of peds; few fine roots; common fine concretions of iron-manganese; few fine concretions of calcium carbonate; very slight effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk2--142 to 183 cm (56 to 72 in); brown (7.5YR 5/4) silty clay, brown (7.5YR 4/4) moist; moderate coarse angular blocky structure parts to moderate medium angular blocky structure; very hard, very firm; common prominent clay films on faces of peds; few fine roots; common fine and coarse distinct yellowish red (5YR 5/6) and reddish brown (5YR 5/4) masses of oxidized iron with clear boundaries; common fine concretions of iron-manganese; few soft accumulations of calcium carbonate; few fine concretions of calcium carbonate; slight effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Btk horizon is 10 to 120 cm [4 to 47 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk3--183 to 203 cm (72 to 80 in); reddish brown (5YR 5/4) silty clay loam, reddish brown (5YR 4/4) moist; weak medium blocky structure; very hard, very firm; common prominent clay films on faces of some peds; common coarse distinct brown (7.5YR 5/4) and red (2.5YR 5/6) masses of oxidized iron with clear boundaries; few fine concretions of calcium carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BEW.json b/inst/extdata/OSD/B/BEW.json index 65e4c16bd0..cab525da7f 100644 --- a/inst/extdata/OSD/B/BEW.json +++ b/inst/extdata/OSD/B/BEW.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--11 to 17 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium blocky structure; very hard, very firm, very sticky, very plastic; distinct film on faces of peds and on walls of pores; weak effervescence, with few carbonate segregations; moderately alkaline; gradual wavy boundary. (Combined Bt horizons 7 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 22 inches; light brownish gray (2.5Y 6/2) clay, grayish brown (2.5Y 5/2) moist; weak medium blocky structure; very hard, very firm, very sticky, very plastic; moderate effervescence with few masses of carbonates; moderately alkaline; gradual wavy boundary. (0 to 7 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--22 to 32 inches; olive gray (5Y 5/2) clay, olive (5Y 4/3) moist; massive; very hard, very firm, very sticky, very plastic; strong effervescence; common threads and fine masses of carbonate; moderately alkaline; gradual wavy boundary. (5 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--32 to 60 inches; olive gray (5Y 5/2) clay loam, olive (5Y 4/3) moist; massive; very hard, firm, very sticky, very plastic; moderately alkaline; strong effervescence; few small pebbles increasing to 30 percent in the lower part." diff --git a/inst/extdata/OSD/B/BEYBEK.json b/inst/extdata/OSD/B/BEYBEK.json index fdd90a1423..cc0d61a055 100644 --- a/inst/extdata/OSD/B/BEYBEK.json +++ b/inst/extdata/OSD/B/BEYBEK.json @@ -158,7 +158,7 @@ "cf_class": "extremely stony", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btss--49 to 82 cm; dark reddish brown (5YR 2.5/2) extremely stony clay, dark reddish brown (5YR 2.5/2) moist; 50 percent clay; strong coarse subangular blocky structure; very hard, extremely firm, moderately sticky, very plastic; few very fine, fine, medium, and coarse roots throughout; few very fine irregular pores; 10 percent prominent slickensides and 85 percent distinct clay films on all faces of peds; 25 percent subrounded indurated marble gravel, 7 percent subrounded moderately cemented marble paragravels, 3 percent subrounded moderately cemented marble paracobbles, 15 percent subrounded indurated marble cobbles, 25 percent subrounded indurated marble stones; slight effervescence, by HCl, 1 normal; neutral (pH 7.3); clear wavy boundary. (25 to 97 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--82 to 200 cm; Indurated marble bedrock, fractured at intervals of 10 to <45 cm; strong effervescence, by HCl, 1 normal." diff --git a/inst/extdata/OSD/B/BIGBEND.json b/inst/extdata/OSD/B/BIGBEND.json index fb4ea4f952..ac1864ee00 100644 --- a/inst/extdata/OSD/B/BIGBEND.json +++ b/inst/extdata/OSD/B/BIGBEND.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak medium platy structure; slightly hard, very friable; few fine spots of dark grayish brown (10YR 4/2) moist; many fine bedding planes; strong effervescence; moderately alkaline; clear smooth boundary. (2 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--3 to 18 inches; pale brown (10YR 6/3) silt loam, dark grayish brown (10YR 4/2) moist; weak coarse subangular blocky; soft, very friable; many fine bedding planes; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C2--18 to 32 inches; pale brown (10YR 6/3) silt loam stratified with thin lenses of very fine sandy loam; brown (10YR 5/3) moist; massive; soft, very friable; few fine accumulations of dark brown (10YR 4/2) moist; many fine bedding planes evident; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--32 to 60 inches; pale brown (10YR 6/3) silt loam stratified with thin layers of very fine sandy loam and fine sandy loam, brown (10YR 5/3) moist; massive; soft, very friable; common bedding planes; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BIGFOOT.json b/inst/extdata/OSD/B/BIGFOOT.json index 05c562edea..52d9330505 100644 --- a/inst/extdata/OSD/B/BIGFOOT.json +++ b/inst/extdata/OSD/B/BIGFOOT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--O to 9 inches; dark grayish brown (10YR 4/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate coarse subangular blocky structure parting to moderate fine and medium subangular blocky; very hard, very firm; many fine and medium roots; common fine tubular pores; few snail shell fragments; 46 percent calcium carbonate equivalent; violent effervescence; slightly alkaline; clear smooth boundary. (8 to 30 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A2--9 to 22 inches; grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate coarse subangular blocky structure parting to moderate fine and medium subangular blocky; very hard, very firm; few fine roots; few fine pores; few snail shell fragments; 50 percent calcium carbonate equivalent; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 22 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--22 to 33 inches; grayish brown (10YR 5/2) silty clay, dark grayish brown (10YR 4/2) moist; moderate medium subangular blocky structure; very hard, firm; few fine roots; few fine tubular pores; few films and threads of calcium carbonate; few snail shell fragments; 62 percent calcium carbonate equivalent; violent effervescence; moderately alkaline; gradual wavy boundary. (8 to 33 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--33 to 44 inches; pale brown (10YR 6/3) silty clay, brown (10YR 5/3) moist; moderate medium subangular blocky structure; hard, firm; few fine roots; few fine tubular pores; few films and threads of calcium carbonate; few snail shell fragments; 58 percent calcium carbonate equivalent; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 28 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--44 to 63 inches; pale brown (10YR 6/3) silty clay, brown (10YR 5/3) moist; moderate medium subangular blocky structure; hard, firm; few fine roots; few fine tubular pores; common threads and films of calcium carbonate along faces of peds; few snail shell fragments; 60 percent calcium carbonate equivalent; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BIG_CYPRESS.json b/inst/extdata/OSD/B/BIG_CYPRESS.json index 620cf62c81..a92651f926 100644 --- a/inst/extdata/OSD/B/BIG_CYPRESS.json +++ b/inst/extdata/OSD/B/BIG_CYPRESS.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btkg--96 to 147 centimeters (38 to 58 inches); light gray (5Y 7/2) gravelly sandy clay loam; moderate medium angular blocky structure; soft, friable, nonsticky, nonplastic; nonfluid; 25 percent distinct light olive gray (5Y 6/2) clay films on all faces of peds; 7 percent fine prominent spherical light yellowish brown (10YR 6/4) masses of oxidized iron accumulation throughout; 5 percent fine distinct spherical moderately coherent white (10YR 8/1) carbonate masses throughout; 30 percent subangular limestone fragments; strong effervescence; abrupt wavy boundary. [13 to 56 centimeters (5 to 22 inches) thick]" diff --git a/inst/extdata/OSD/B/BILLYCANYON.json b/inst/extdata/OSD/B/BILLYCANYON.json index 4520b856f7..f00b96ae4b 100644 --- a/inst/extdata/OSD/B/BILLYCANYON.json +++ b/inst/extdata/OSD/B/BILLYCANYON.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk3--48 to 66 cm; light yellowish brown (10YR 6/4) very gravelly clay loam, yellowish brown (10YR 5/4), moist; moderate medium subangular blocky structure; firm, slightly hard, slightly sticky and slightly plastic; common very fine roots; common very fine tubular pores; 20 percent distinct clay films on all faces of peds; 50 percent distinct carbonate coats on bottom surfaces of rock fragments, and 5 percent carbonate masses in matrix; 30 percent gravel, 5 percent cobbles; 50 percent distinct carbonate coats on bottom surfaces of rock fragments, and 5 percent carbonate masses in matrix; strong effervescence; moderately alkaline (pH 8.1); gradual wavy boundary. (10 to 25 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--81 to 150 cm; pink (7.5YR 7/3) very gravelly loam, light brown (7.5YR 6/3), moist; massive; friable, soft, nonsticky and nonplastic; few very fine tubular pores; 40 percent gravel, 10 percent cobbles; 65 percent distinct carbonate coats on bottom surfaces of rock fragments, and 15 percent carbonate masses in matrix; violent effervescence; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/B/BINFORD.json b/inst/extdata/OSD/B/BINFORD.json index 3f50f08272..e63d06edd7 100644 --- a/inst/extdata/OSD/B/BINFORD.json +++ b/inst/extdata/OSD/B/BINFORD.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--17 to 60 inches; dark grayish brown (10YR 4/2) gravelly coarse sand, grayish brown (10YR 5/2) dry; single grain; loose, nonsticky and nonplastic; about 55 percent shale in the 0.1 to 76 mm fraction; about 30 percent gravel; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BISCAILUZ.json b/inst/extdata/OSD/B/BISCAILUZ.json index 70fe38de09..3fd06e83b0 100644 --- a/inst/extdata/OSD/B/BISCAILUZ.json +++ b/inst/extdata/OSD/B/BISCAILUZ.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--70 to 95 centimeters; light yellowish brown (2.5Y 6/3) loam, very dark grayish brown (2.5Y 3/2), moist; moderate medium subangular blocky structure; friable; common very fine tubular pores; common medium threadlike carbonate masses in matrix; few rounded gravels; violent effervescence; slightly alkaline (pH 7.5); clear wavy boundary. (Combined thickness of Bk horizons is 0 to 110 cm)" diff --git a/inst/extdata/OSD/B/BISCUIT.json b/inst/extdata/OSD/B/BISCUIT.json index e4ddd77690..ffc6ea6577 100644 --- a/inst/extdata/OSD/B/BISCUIT.json +++ b/inst/extdata/OSD/B/BISCUIT.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--31 to 60 inches; reddish brown (2.5YR 5/4) clay; with few thin light gray (10YR 7/2) silt bands; moderate medium and thick platy structure parting to moderate fine angular blocky; firm; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BLACKLOUP.json b/inst/extdata/OSD/B/BLACKLOUP.json index 2516ed5dc8..57e84193a9 100644 --- a/inst/extdata/OSD/B/BLACKLOUP.json +++ b/inst/extdata/OSD/B/BLACKLOUP.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 4 inches, (0 to 10 cm); black (10YR 2/1) crushed, loam, dark gray (10YR 4/1) crushed, dry; strong medium granular structure; very friable, soft; many fine roots throughout and common medium roots throughout and many very fine roots throughout; strong effervescence; moderately alkaline, pH 8.2 by pH meter 1:1 water; clear smooth boundary. Partially decomposed organic layer (10YR 5/2, 10YR 2/2 moist) on surface, 0-3 cm thick." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--4 to 8 inches, (10 to 20 cm); black (10YR 2/1) crushed, loam, very dark gray (10YR 3/1) crushed, dry; weak medium subangular blocky parting to moderate medium granular structure; very friable, slightly hard; many fine roots throughout and common medium roots throughout and many very fine roots throughout; slight effervescence; slightly alkaline, pH 7.5 by pH meter 1:1 water; clear smooth boundary." diff --git a/inst/extdata/OSD/B/BLACKNOLL.json b/inst/extdata/OSD/B/BLACKNOLL.json index e5f9d93893..46335f32ad 100644 --- a/inst/extdata/OSD/B/BLACKNOLL.json +++ b/inst/extdata/OSD/B/BLACKNOLL.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--14 to 30 inches; light gray (10YR 7/2) fine sandy loam, dark brown (10YR 4/3) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; few very fine tubular pores; violent effervescence; 10 percent pebbles and cobbles; moderately alkaline (pH 8.4); clear smooth boundary. (8 to 18 inches thick)" diff --git a/inst/extdata/OSD/B/BLACKPIPE.json b/inst/extdata/OSD/B/BLACKPIPE.json index c3ee754ced..015bd902f0 100644 --- a/inst/extdata/OSD/B/BLACKPIPE.json +++ b/inst/extdata/OSD/B/BLACKPIPE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--13 to 17 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate fine and medium subangular blocky; hard, firm, sticky and plastic; shiny surfaces on faces of peds; common fine and medium roots; slight effervescence; slightly alkaline; gradual wavy boundary. (Combined B2t horizons is 9 to 18 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 25 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, firm, sticky and plastic; few fine roots; few fine accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--25 to 34 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; slightly hard, friable; common fine roots; few fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary. (Combined Bk horizons is 8 to 20 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--34 to 50 inches; light brownish gray (2.5Y 6/2) silty shale, grayish brown (10YR 5/2) moist; few fine roots in upper 10 inches; few nests of gypsum crystals; easily dug when moist; slight effervescence in upper part; slightly alkaline." diff --git a/inst/extdata/OSD/B/BLACK_BUTTE.json b/inst/extdata/OSD/B/BLACK_BUTTE.json index a605504c41..404c7061b3 100644 --- a/inst/extdata/OSD/B/BLACK_BUTTE.json +++ b/inst/extdata/OSD/B/BLACK_BUTTE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Byz--8 to 13 inches; brown (7.5YR 5/4) stratified silty clay loam to very fine sandy loam, brown (7.5YR 4/4) moist; moderate fine angular blocky structure hard, firm, moderately sticky, very plastic; common medium roots and few coarse roots; common fine interstitial and few fine and medium tubular pores; 8 percent fine distinct spherical weakly cemented gypsum masses with clear boundaries in matrix; violent effervescence; strongly alkaline, pH 8.6; abrupt wavy boundary. (5 to 10 inches thick)" diff --git a/inst/extdata/OSD/B/BLAKABIN.json b/inst/extdata/OSD/B/BLAKABIN.json index fb82957ef4..c16e914630 100644 --- a/inst/extdata/OSD/B/BLAKABIN.json +++ b/inst/extdata/OSD/B/BLAKABIN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; dark grayish brown (10YR 4/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; slightly hard, very friable, sticky and plastic; common very fine roots; weakly effervescent, moderately alkaline; 10 percent fine sandstone channers; clear smooth boundary. (2 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--3 to 14 inches; grayish brown (10YR 5/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium subangular blocky structure parting to strong fine angular blocks; hard, friable, sticky and plastic; common very fine, few fine pores and roots; weakly effervescent, moderately alkaline; 10 percent fine sandstone channers; clear wavy boundary. (6 to 12 inches thick)" diff --git a/inst/extdata/OSD/B/BLUEBIRD.json b/inst/extdata/OSD/B/BLUEBIRD.json index 076ada3560..99c07ee1ee 100644 --- a/inst/extdata/OSD/B/BLUEBIRD.json +++ b/inst/extdata/OSD/B/BLUEBIRD.json @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bt--3 to 18 inches; strong brown (7.5YR 4/6) extremely gravelly sandy clay loam, reddish brown (5YR 4/4) moist; moderate medium subangular blocky structure; slightly hard, very friable, sticky and plastic; common very fine and fine roots; common very fine tubular pores; 60 percent gravel; many faint clay films on ped faces and lining pores; discontinuous pockets of strongly effervescent secondary calcium carbonate in a noneffervescent matrix; slightly alkaline (pH 7.8); clear smooth boundary. (5 to 20 inches thick)" diff --git a/inst/extdata/OSD/B/BLUECREEK.json b/inst/extdata/OSD/B/BLUECREEK.json index f50a0f414c..bfc565afa8 100644 --- a/inst/extdata/OSD/B/BLUECREEK.json +++ b/inst/extdata/OSD/B/BLUECREEK.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bkqm--79 to 104 cm; white (10YR 8/2) nearly continuous weakly cemented sandy loam, grayish brown (10YR 5/2) moist; massive; very hard, very firm, brittle; few very fine and fine roots; few very fine interstitial pores; 10 percent gravel; strong effervescence, carbonate occurs in seams and soft masses; moderately alkaline (pH 7.9); clear smooth boundary. (20 to 36 cm thick)" diff --git a/inst/extdata/OSD/B/BLUELEAD.json b/inst/extdata/OSD/B/BLUELEAD.json index e70d5a64d6..fe28a6f5ad 100644 --- a/inst/extdata/OSD/B/BLUELEAD.json +++ b/inst/extdata/OSD/B/BLUELEAD.json @@ -158,7 +158,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--18 to 26 inches; very pale brown (10YR 7/3) very cobbly loam, brown (10YR 5/3) moist; moderate fine and medium subangular blocky structure; slightly hard, friable; common medium roots; about 55 percent rock fragments; few fine accumulations of calcium carbonate and as coatings on rock fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--26 to 60 inches; light brownish gray (10YR 6/2) extremely cobbly loam, grayish brown (10YR 5/2) moist; massive; soft, very friable; about 65 percent rock fragments; carbonates disseminated and as coatings on rock fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BLUFFTON.json b/inst/extdata/OSD/B/BLUFFTON.json index a968dbb384..39efccb8a8 100644 --- a/inst/extdata/OSD/B/BLUFFTON.json +++ b/inst/extdata/OSD/B/BLUFFTON.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--22 to 26 inches; light olive gray (5Y 6/2) fine sandy loam; few medium distinct greenish gray (5BG 6/1) Fe depletions and pale olive (5Y 6/4) Fe concentrations; massive; friable; few roots; olive gray (5Y 4/2) and dark olive gray (5Y 3/2) fillings in old root channels; about 5 percent gravel; slight effervescence; slightly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg2--26 to 38 inches; gray (5Y 6/1) loam; few medium distinct greenish gray (5BG 6/1) Fe depletions and prominent olive yellow (5Y 6/6) Fe concentrations; massive; friable; few roots; about 4 percent gravel; slight effervescence; slightly alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--38 to 60 inches; light olive gray (5Y 6/2) sandy clay loam; many coarse prominent greenish gray (5BG 6/1) Fe depletions and strong brown (7.5YR 5/8) Fe concentrations; massive; friable; few roots; about 4 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BLULA.json b/inst/extdata/OSD/B/BLULA.json index a83ffa3216..bd669f3c87 100644 --- a/inst/extdata/OSD/B/BLULA.json +++ b/inst/extdata/OSD/B/BLULA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--24 to 38 inches; light brownish gray (2.5Y 6/2) loamy fine sand, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; soft, very friable; few fine roots to 30 inches; about 8 percent soft sandstone fragments; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C3--38 to 45 inches; light brownish gray (2.5Y 6/2) fine sand, grayish brown (2.5Y 5/2) moist; single grain; loose; about 10 percent soft sandstone fragments; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--45 to 80 inches; light gray (2.5Y 7/2) fine sand, light olive brown (2.5Y 5/3) moist; single grain; loose; about 10 percent soft sandstone fragments; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BODE.json b/inst/extdata/OSD/B/BODE.json index 491951af94..6a849f9ef1 100644 --- a/inst/extdata/OSD/B/BODE.json +++ b/inst/extdata/OSD/B/BODE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--39 to 60 inches; yellowish brown (10YR 5/4) and grayish brown (2.5Y 5/2) loam; common fine faint light olive brown (2.5Y 6/4) mottles; massive; friable; few fine roots; few fine tubular pores; a few dark red and black concretions (oxides); few fine calcium carbonate accumulations in soft rounded masses; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/B/BOEL.json b/inst/extdata/OSD/B/BOEL.json index 9cbc2ad96e..ca915c1368 100644 --- a/inst/extdata/OSD/B/BOEL.json +++ b/inst/extdata/OSD/B/BOEL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 8 inches; dark gray (10YR 4/1) fine sandy loam, very dark brown (10YR 2/2) moist; weak very fine granular structure; soft; very friable; many fine and medium roots throughout; many fine tubular pores; moderately alkaline; slight effervescence; clear smooth boundary. (7 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--8 to 11 inches; grayish brown (10YR 5/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, very friable; many fine and medium roots throughout; many fine tubular pores; few thin strata of loam; moderately alkaline; slight effervescence; clear wavy boundary. (3 to 8 inches thick)" diff --git a/inst/extdata/OSD/B/BOHNSACK.json b/inst/extdata/OSD/B/BOHNSACK.json index 1181723d3c..d5de9985f2 100644 --- a/inst/extdata/OSD/B/BOHNSACK.json +++ b/inst/extdata/OSD/B/BOHNSACK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) loam, dark gray (10YR 4/1) dry; weak medium subangular blocky structure parting to weak medium granular; slightly hard, friable, slightly sticky and slightly plastic; many roots; many pores; about 5 percent pebbles; slight effervescence; slightly alkaline; abrupt smooth boundary. (Combined A horizons 7 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--8 to 14 inches; grayish brown (10YR 5/2) loam, light gray (10YR 7/2) dry; weak coarse prismatic structure parting to weak medium granular; slightly hard, friable, slightly sticky and slightly plastic; common roots; many pores; tongues of A horizon extend into this horizon; about 5 percent pebbles; carbonates disseminated throughout; violent effervescence; slightly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--14 to 24 inches; grayish brown (2.5Y 5/2) loam, light gray (2.5Y 7/2) dry; weak coarse prismatic structure parting to weak medium granular; slightly hard, friable, slightly sticky and slightly plastic; common roots; common pores; common medium nests of gypsum crystals; about 5 percent pebbles; carbonates disseminated throughout; violent effervescence; slightly alkaline; gradual wavy boundary. (Combined Bk horizons 6 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--24 to 37 inches; olive brown (2.5Y 4/4) silt loam, light yellowish brown (2.5Y 6/4) dry; weak coarse prismatic structure; slightly hard, friable, slightly sticky and slightly plastic; few roots; common pores; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--37 to 60 inches; light olive brown (2.5Y 5/4) silt loam, pale yellow (2.5Y 7/4) dry; few fine distinct brown (10YR 4/3) redoximorphic concentrations and common medium distinct gray (5Y 5/1) redoximorphic depletions; lamina parting to weak fine blocky structure; soft, friable, slightly sticky and slightly plastic; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BON.json b/inst/extdata/OSD/B/BON.json index cc7e174908..f5bd167843 100644 --- a/inst/extdata/OSD/B/BON.json +++ b/inst/extdata/OSD/B/BON.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--6 to 10 inches; dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; weak fine subangular blocky structure; soft, very friable; slight effervescence; slightly alkaline; clear smooth boundary. (Combined A horizons is 8 to 20 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--10 to 19 inches; dark gray (10YR 4/1) loam, black (10YR 2/1) moist; weak medium prismatic structure parting to weak medium and fine subangular blocky; soft, very friable; slight effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--19 to 32 inches; dark gray (10YR 4/1) loam, black (10YR 2/1) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, very friable; few fine threads of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bw horizons is 10 to 30 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--32 to 46 inches; grayish brown (10YR 5/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; weak coarse subangular blocky structure; slightly hard, very friable; common fine threads of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--46 to 58 inches; brown (10YR 5/3) loamy fine sand, dark brown (10YR 4/3) moist; single grained; loose; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 14 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--58 to 60 inches; pale brown (10YR 6/3) fine sandy loam, dark brown (10YR 4/3) moist; massive; slightly hard, very friable; few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BONEDRAW.json b/inst/extdata/OSD/B/BONEDRAW.json index a97d83d33a..046011b337 100644 --- a/inst/extdata/OSD/B/BONEDRAW.json +++ b/inst/extdata/OSD/B/BONEDRAW.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 14 cm, (0 to 6 in); very dark gray (10YR 3/1) clay, black (10YR 2/1), moist; moderate medium subangular blocky parts to moderate fine subangular blocky structure; moderately hard, friable, very sticky, very plastic; common very fine roots throughout and common very coarse roots top of horizon and common medium roots throughout and common fine roots throughout; 8 percent nonflat subrounded indurated 2 to 75 mm limestone fragments; slightly alkaline; very slight effervescence; clear smooth boundary. (Thickness is 7 to 23 cm [3 to 9 in].)" @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--14 to 38 cm, (6 to 15 in); very dark gray (10YR 3/1) extremely gravelly clay, black (10YR 2/1), moist; moderate fine subangular blocky structure; slightly hard, friable, very sticky, very plastic; common very fine roots throughout and common medium roots throughout and common fine roots throughout; 25 percent nonflat subrounded indurated 75 to 250 mm limestone fragments and 50 percent nonflat subrounded indurated 2 to 75 mm limestone fragments; slightly alkaline; slight effervescence; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--38 to 84 cm, (15 to 33 in); dark gray (10YR 4/1) extremely gravelly clay, very dark gray (10YR 3/1), moist; weak fine subangular blocky structure; slightly hard, friable, very sticky, very plastic; common very fine roots throughout and common medium roots throughout and common fine roots throughout; 10 percent nonflat subrounded indurated 250 to 600 mm limestone fragments and 25 percent nonflat subrounded indurated 75 to 250 mm limestone fragments and 45 percent nonflat subrounded indurated 2 to 75 mm limestone fragments; slightly alkaline; slight effervescence; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw3--84 to 124 cm (33 to 49 in); brown (7.5YR 5/3) extremely gravelly sandy clay loam, brown (7.5YR 4/3), moist; weak fine subangular blocky structure; slightly hard, friable, moderately sticky, moderately plastic; common very fine roots throughout and common fine roots throughout; 5 percent nonflat subrounded indurated 250 to 600 mm limestone fragments and 20 percent nonflat subrounded indurated 75 to 250 mm limestone fragments and 60 percent nonflat subrounded indurated 2 to 75 mm limestone fragments; strong effervescence; slightly alkaline; clear smooth boundary. (Combined thickness is 79 to 127 cm [31 to 50 in].)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--124 to 160 cm (49 to 63 in); reddish brown (5YR 5/4) extremely gravelly sandy clay loam reddish brown (5YR 4/4), moist; slightly hard, friable, moderately sticky, moderately plastic; common very fine roots throughout and common fine roots throughout; 5 percent nonflat subrounded indurated 250 to 600 mm limestone fragments and 20 percent nonflat subrounded indurated 75 to 250 mm limestone fragments and 60 percent nonflat subrounded indurated 2 to 75 mm limestone fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BONEEK.json b/inst/extdata/OSD/B/BONEEK.json index d5677f21c1..f08be6f02c 100644 --- a/inst/extdata/OSD/B/BONEEK.json +++ b/inst/extdata/OSD/B/BONEEK.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--15 to 24 inches; pale brown (10YR 6/3) silty clay loam, dark brown (10YR 4/3) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, friable, slightly sticky and slightly plastic; common fine roots; many fine and medium accumulations of carbonate; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--24 to 34 inches; light brownish gray (10YR 6/2) silty clay loam, grayish brown (10YR 5/2) moist; weak medium and coarse subangular blocky structure; very hard, friable, slightly sticky and slightly plastic; few fine roots; common fine and medium accumulations of carbonate; violent effervescence; strongly alkaline; gradual wavy boundary. (Combined Bk horizons is 10 to 28 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--34 to 44 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; few fine and medium prominent mottles of strong brown (7.5YR 5/8) moist; weak coarse subangular blocky structure; very hard, friable; few fine roots; violent effervescence; moderately alkaline; clear wavy boundary. (10 to 25 inches thick)" diff --git a/inst/extdata/OSD/B/BONILLA.json b/inst/extdata/OSD/B/BONILLA.json index 9a99535f0b..bf34aef210 100644 --- a/inst/extdata/OSD/B/BONILLA.json +++ b/inst/extdata/OSD/B/BONILLA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--35 to 42 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct yellowish brown (10YR 5/6) redox concentrations and very dark brown (10YR 2/2) iron and manganese stains; weak medium prismatic structure parting to weak medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common fine accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2-- 42 to 47 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; common fine distinct light olive brown (2.5Y 5/6) redox concentrations and gray (2.5Y 6/1) redox depletions; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine and medium accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined thickness of the Bk horizon is 0 to 35 inches.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--47 to 60 inches; light yellowish brown (2.5Y 6/4) and light gray (5Y 7/1) clay loam, olive brown (2.5Y 4/4) and gray (5Y 5/1) moist; few fine distinct very dark brown (10YR 2/2) iron and manganese stains; massive; hard, friable, slightly sticky and slightly plastic; common fine accumulations of carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BONNET.json b/inst/extdata/OSD/B/BONNET.json index 3d5908de77..d0f73c3256 100644 --- a/inst/extdata/OSD/B/BONNET.json +++ b/inst/extdata/OSD/B/BONNET.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1ca--26 to 35 inches; pale brown (10YR 6/3) very gravelly loam, dark brown (10YR 3/3) moist; massive; slightly hard, friable, slightly plastic and slightly sticky; 60 percent fine and medium (1 to 7cm) subrounded pebbles; slightly effervescent with disseminated lime, strongly effervescent carbonate accumulations on the underside of about 50 percent of the pebbles, moderately alkaline (pH 8.4), abrupt smooth boundary. (6 to 12 inches thick)" diff --git a/inst/extdata/OSD/B/BORGSTROM.json b/inst/extdata/OSD/B/BORGSTROM.json index f1d5e79ff1..a6f43f45f5 100644 --- a/inst/extdata/OSD/B/BORGSTROM.json +++ b/inst/extdata/OSD/B/BORGSTROM.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--61 to 80 inches; brown (10YR 5/3) silt loam; massive parting to weak fine platy fragments; friable; common coarse prominent strong brown (7.5YR 5/6) and reddish brown (5YR 5/4) mottles; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BORO.json b/inst/extdata/OSD/B/BORO.json index 07485d2a30..697d2523df 100644 --- a/inst/extdata/OSD/B/BORO.json +++ b/inst/extdata/OSD/B/BORO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 3 inches; dark grayish brown (2.5Y 4/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; moderate medium granular structure; slightly hard, firm, sticky, plastic; slight effervescence; slightly alkaline; abrupt smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--3 to 12 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; moderate coarse subangular blocky structure parting to moderate medium blocky and subangular blocky; very hard, firm, very sticky and very plastic; common tongues of dark grayish brown (2.5Y 4/2); few fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (8 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--12 to 20 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; moderate medium blocky structure parting to moderate fine blocky; very hard, firm, very sticky and very plastic; few tongues of dark grayish brown (2.5Y 4/2); common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--20 to 28 inches; olive (5Y 5/3) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse blocky structure; very hard, firm, very sticky and very plastic; few tongues of grayish brown (10YR 5/2); common fine accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (Combined Bk horizon is 7 to 20 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--28 to 37 inches; olive (5Y 5/3) clay, dark grayish brown (2.5Y 4/2) moist; massive; hard, firm, very sticky and very plastic; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--37 to 50 inches; pale olive (5Y 6/3) silty clay, grayish brown (2.5Y 5/2) moist; massive; hard, firm, sticky and plastic; common fine gypsum and salt crystals; strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--50 to 60 inches; pale olive (5Y 6/3) silty clay, grayish brown (2.5Y 5/2) moist; massive; hard, firm, sticky and plastic; few fine gypsum and salt crystals; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BORUP.json b/inst/extdata/OSD/B/BORUP.json index 4f24bb3d96..49e94091f4 100644 --- a/inst/extdata/OSD/B/BORUP.json +++ b/inst/extdata/OSD/B/BORUP.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) silt loam, very dark gray (10YR 3/1) dry; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and plastic; few very fine roots; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--7 to 12 inches; black (10YR 2/1) silt loam, very dark gray (10YR 3/1) dry; weak fine and medium subangular blocky structure; hard, friable, slightly sticky and plastic; few very fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (Combined A horizons 4 to 14 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg--12 to 28 inches; gray (5Y 5/1) silt loam, gray (5Y 6/1) dry; weak fine and medium subangular blocky structure; hard, friable, sticky and plastic; tongues of very dark grayish brown (10YR 3/2) material to a depth of 18 inches; common fine and medium masses of gypsum crystals in the lower part; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyg--28 to 34 inches; dark gray (5Y 4/1) silt loam, gray (10YR 6/1) dry; massive; slightly hard, very friable, slightly sticky and slightly plastic; common fine and medium masses of gypsum crystals; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Bkg horizons 6 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--34 to 60 inches; grayish brown (2.5Y 5/2) very fine sandy loam, light brownish gray (2.5Y 6/2) dry; common medium and coarse distinct light yellowish brown (2.5Y 6/4) redoximorphic concentrations; massive; slightly hard, very friable, slightly sticky and slightly plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BORVANT.json b/inst/extdata/OSD/B/BORVANT.json index 9922a482e7..355e42e3e2 100644 --- a/inst/extdata/OSD/B/BORVANT.json +++ b/inst/extdata/OSD/B/BORVANT.json @@ -250,7 +250,7 @@ "cf_class": "extremely cobbly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bk2--122 to 150 cm; very pale brown (10YR 8/3) extremely cobbly coarse sandy loam, brown (10YR 5/3) moist; single grain; loose nonsticky and nonplastic; 50 percent cobbles and 25 percent gravel; violent effervescent (26 percent calcium carbonate equivalent); calcium carbonates are disseminated and coated on rock fragments; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/B/BOSLER.json b/inst/extdata/OSD/B/BOSLER.json index 72275300c8..3ac43938ec 100644 --- a/inst/extdata/OSD/B/BOSLER.json +++ b/inst/extdata/OSD/B/BOSLER.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--30 to 60 inches; very gravelly sand; single grained, loose; slightly effervescent in some strata, noneffervescent in others; 40 percent fine and medium granitic and quartzitic gravel." diff --git a/inst/extdata/OSD/B/BOTTINEAU.json b/inst/extdata/OSD/B/BOTTINEAU.json index 994755f5f1..af6c5d6f28 100644 --- a/inst/extdata/OSD/B/BOTTINEAU.json +++ b/inst/extdata/OSD/B/BOTTINEAU.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--27 to 45 inches; olive brown (2.5Y 4/4) clay loam, light brownish gray (2.5Y 6/2) dry; weak very coarse prismatic structure; hard, friable, sticky and plastic; common faint clay films on faces of peds; about 5 percent gravel; common fine irregularly shaped soft masses of carbonates; violent effervescence; slightly alkaline; gradual wavy boundary. (10 to 24 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--45 to 60 inches; olive brown (2.5Y 4/4) clay loam, light brownish gray (2.5Y 6/2) dry; massive; hard, friable, sticky and plastic; about 7 percent gravel; common fine irregularly shaped soft masses of carbonates; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BOWBAC.json b/inst/extdata/OSD/B/BOWBAC.json index 5c66e119dc..b65f6577aa 100644 --- a/inst/extdata/OSD/B/BOWBAC.json +++ b/inst/extdata/OSD/B/BOWBAC.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk--31 to 39 inches; very pale brown (10YR 7/3) sandy loam, brown (10YR 5/3) moist; massive; soft, friable, slightly plastic; few medium, fine and very fine roots; slight effervescence, calcium carbonate as few fine and medium soft masses; moderately alkaline (pH 8.0); abrupt smooth boundary. (6 to 18 inches thick)" diff --git a/inst/extdata/OSD/B/BOWBELLS.json b/inst/extdata/OSD/B/BOWBELLS.json index c71608d2db..33a084668e 100644 --- a/inst/extdata/OSD/B/BOWBELLS.json +++ b/inst/extdata/OSD/B/BOWBELLS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--23 to 36 inches; pale yellow (2.5Y 7/4) loam, light olive brown (2.5Y 5/4) moist; weak medium and fine subangular blocky structure; hard, friable; few fine roots; common fine masses of carbonates; violent effervescence; moderately alkaline; clear wavy boundary. (7 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; light yellowish brown (2.5Y 6/4) loam, light olive brown (2.5Y 5/4) moist; massive but fractures into weak laminar and fine subangular blocks characteristic of glacial till; hard, firm; few fine masses of carbonates; few stones; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BOWDLE.json b/inst/extdata/OSD/B/BOWDLE.json index 402043a351..9b657d15e7 100644 --- a/inst/extdata/OSD/B/BOWDLE.json +++ b/inst/extdata/OSD/B/BOWDLE.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--22 to 25 inches; grayish brown (2.5Y 5/2) gravelly loam, very dark grayish brown (2.5Y 3/2) crushing to dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, very friable, slightly sticky and slightly plastic; common fine accumulations of carbonate; strong effervescence; slightly alkaline; abrupt wavy boundary. (0 to 5 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C1--25 to 30 inches; vari-colored, very gravelly loamy sand; common fine fragments of shale; strong effervescence; slightly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--30 to 60 inches; vari-colored, very gravelly loamy sand; common fine fragments of shale; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BOXCUT.json b/inst/extdata/OSD/B/BOXCUT.json index 7df9fbff38..d1869314b8 100644 --- a/inst/extdata/OSD/B/BOXCUT.json +++ b/inst/extdata/OSD/B/BOXCUT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C/B--33 to 64 centimeters; mixed light olive brown (2.5Y 5/3) and light yellowish brown (2.5Y 6/3) clay loam, mixed olive brown (2.5Y 4/3) and light olive brown (2.5Y 5/3) moist; moderate medium and coarse cloddy structure; friable, moderately hard; moderately sticky and moderately plastic; common very fine and fine roots throughout; few very fine low-continuity tubular pores; strong effervescence; slightly alkaline; 5 percent soft masses of lime from original Bk horizon; abrupt smooth boundary. (2C/B 23 to 53 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C-- 64 to 203 centimeters; light yellowish brown (2.5Y 6/4) clay loam, light olive brown (2.5Y 5/4) moist; 1 percent fine prominent irregular strong brown (7.5YR 5/6) moist and 1 percent fine prominent irregular strong brown (7.5YR 4/6) moist relict concentrations; massive; firm, hard; moderately sticky and moderately plastic; common very fine roots in cracks in upper part; strong effervescence; slightly alkaline; 2 percent lignite fragments." diff --git a/inst/extdata/OSD/B/BOYD.json b/inst/extdata/OSD/B/BOYD.json index 5b98c33dd8..c459fcb8b5 100644 --- a/inst/extdata/OSD/B/BOYD.json +++ b/inst/extdata/OSD/B/BOYD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; dark gray (10YR 4/1) silty clay, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure parting to moderate fine granular; very hard, very firm, very sticky and very plastic; slight effervescence; slightly alkaline; abrupt smooth boundary. (3 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--5 to 13 inches; dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, very firm, very sticky and very plastic; slight effervescence; slightly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss--13 to 23 inches; dark gray (10YR 4/1) clay, dark grayish brown (10YR 4/2) moist; weak coarse blocky structure; extremely hard, extremely firm, very sticky and very plastic; few non-intersecting slickensides; few fine accumulations of carbonates; strong effervescence; slightly alkaline; clear wavy boundary. (Combined Bw and Bss horizons 12 to 26 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCss--23 to 27 inches; dark gray (10YR 4/1) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse and medium blocky structure; extremely hard, extremely firm, very sticky and very plastic; few non-intersecting slickensides; 10 percent by volume of shale fragments; few fine gypsum crystals; strong effervescence; neutral; clear wavy boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--27 to 31 inches; grayish brown (2.5Y 5/2) clay, olive gray (5Y 4/2) moist; olive brown (2.5Y 4/4) mottles; weak coarse blocky and platy structure; very hard, very firm, very sticky and very plastic; 30 percent by volume of shale fragments; few fine accumulations of carbonates in seams of shale; slight effervescence; neutral; clear wavy boundary. (0 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--31 to 60 inches; gray (5Y 5/1) bedded shale, olive gray (5Y 4/2) moist; olive brown (2.5Y 4/4) mottles; brittle; many fine accumulations of carbonates in cracks and seams of shale; slight effervescence; neutral." diff --git a/inst/extdata/OSD/B/BOYER.json b/inst/extdata/OSD/B/BOYER.json index fcaa7117bc..926e8ecfef 100644 --- a/inst/extdata/OSD/B/BOYER.json +++ b/inst/extdata/OSD/B/BOYER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--86 to 152 cm (34 to 60 inches); grayish brown (10YR 5/2) stratified gravel and coarse sand; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BRANDENBURG.json b/inst/extdata/OSD/B/BRANDENBURG.json index 9d07b7a2fe..ed3a5f89f2 100644 --- a/inst/extdata/OSD/B/BRANDENBURG.json +++ b/inst/extdata/OSD/B/BRANDENBURG.json @@ -89,7 +89,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 4 inches; pinkish gray (7.5YR 6/2) channery loam, brown (7.5YR 4/2) moist; moderate fine granular structure; slightly hard, very friable; many fine roots; 15 to 30 percent by volume small porcelanite chips; slight effervescence; slightly alkaline; clear wavy boundary. (0 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "C1--4 to 10 inches; reddish yellow (5YR 6/6) very channery loam, yellowish red (5YR 4/6) moist; weak medium and fine subangular blocky structure; soft, very friable; over 50 percent by volume porcelanite with thin carbonate crusts on undersides; strong effervescence; moderately alkaline; clear irregular boundary. (2 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--10 to 60 inches; shattered porcelanite which is slightly weathered in upper 2 to 10 inches; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BRANDT.json b/inst/extdata/OSD/B/BRANDT.json index 3dd85117d8..c1aa03d78f 100644 --- a/inst/extdata/OSD/B/BRANDT.json +++ b/inst/extdata/OSD/B/BRANDT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--34 to 44 inches; light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse and medium subangular blocky structure; hard, friable; common fine and medium accumulations of calcium carbonate; strong effervescence; slightly alkaline; clear wavy boundary. (5 to 27 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bk2--44 to 52 inches; light yellowish brown (2.5Y 6/4) gravelly loam, light olive brown (2.5Y 5/4) moist; weak coarse subangular blocky structure; hard, friable; common fine and medium accumulations of calcium carbonate; few pebbles coated with calcium carbonate; 15 percent gravel; strong effervescence; slightly alkaline; abrupt wavy boundary. (0 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--52 to 57 inches; light yellowish brown (2.5Y 6/4) stratified gravelly loam and gravelly sandy loam, light olive brown (2.5Y 5/4) moist; massive; loose; few pebbles with undersides coated with calcium carbonate; 15 percent gravel; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--57 to 72 inches; light yellowish brown (2.5Y 6/4) stratified gravelly sand and gravelly loamy sand; olive brown (2.5Y 4/4) moist; many fine and medium prominent strong brown (7.5YR 5/6) mottles; single grain; loose; 20 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/B/BRANTFORD.json b/inst/extdata/OSD/B/BRANTFORD.json index 7f15520f9e..53334201c7 100644 --- a/inst/extdata/OSD/B/BRANTFORD.json +++ b/inst/extdata/OSD/B/BRANTFORD.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk--38 to 102 cm; grayish brown (2.5Y 5/2) gravelly coarse sand, very dark grayish brown (2.5Y 3/2) moist; single grained; few roots in upper part; about 45 percent gravel; about 35 percent shale in the 0.1 to 76 mm fraction; thin carbonate coatings on bottom of pebbles; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 100 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--102 to 152 inches; grayish brown (2.5Y 5/2) gravelly coarse sand, dark grayish brown (2.5Y 4/2) moist; single grained; about 20 percent gravel; about 35 percent shale in the 0.1 to 76 mm fraction; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BRANYON.json b/inst/extdata/OSD/B/BRANYON.json index b5b1c14647..a645eb8756 100644 --- a/inst/extdata/OSD/B/BRANYON.json +++ b/inst/extdata/OSD/B/BRANYON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 10 cm, (0 to 4 in); dark gray (10YR 4/1) clay, very dark gray (10YR 3/1), moist; moderate fine granular structure; extremely hard, very firm, , moderately sticky, moderately plastic; fine roots throughout; 1 percent fine faint spherical weakly cemented iron-manganese concretions in matrix; slight effervescence, by HCl, 1 normal; moderately alkaline; abrupt smooth boundary. (Thickness of the A horizon is 13 to 61 cm [5 to 24 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--10 to 31 cm, (4 to 12 in); dark gray (10YR 4/1) clay, very dark gray (10YR 3/1), moist; moderate medium angular blocky structure; extremely hard, very firm, very sticky, very plastic; fine roots throughout; very fine tubular pores; 15 percent faint pressure faces on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix; 1 percent fine prominent irregular very weakly cemented white (10YR 8/1) carbonate concretions in matrix; strong effervescence, by HCl, 1 normal; moderately alkaline; gradual wavy boundary. (Thickness of the Bk horizon is 0 to 30 cm [0 to 12 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss1--31 to 112 cm, (12 to 44 in); dark gray (10YR 4/1) clay, very dark gray (10YR 3/1), moist; moderate medium wedge structure; extremely hard, very firm, very sticky, very plastic; fine roots throughout; fine tubular pores; 55 percent distinct slickensides (pedogenic) on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix; 1 percent fine prominent irregular very weakly cemented white (10YR 8/1) carbonate concretions in matrix; strong effervescence, by HCl, 1 normal; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss2--112 to 183 cm, (44 to 72 in); gray (10YR 5/1) clay, 3 percent very dark gray (10YR 3/1) and dark gray (10YR 4/1), moist; moderate medium wedge structure; very hard, very firm, very sticky, very plastic; fine roots throughout; very fine tubular pores; 55 percent distinct slickensides (pedogenic) on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix; 1 percent fine prominent irregular very weakly cemented white (10YR 8/1) carbonate concretions in matrix; strong effervescence, by HCl, 1 normal; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bkss horizon(s) is 15 to 127 cm [6 to 50 in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkss3--183 to 203 cm, (72 to 80 in); light gray (10YR 7/2) clay, 3 percent very dark gray (10YR 3/1) and light brownish gray (10YR 6/2), moist; moderate medium wedge structure; very hard, very firm, very sticky, very plastic; 30 percent distinct slickensides (pedogenic) on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix and 1 percent medium faint irregular brown (10YR 5/3), moist, iron-manganese masses with clear boundaries in matrix; 1 percent fine prominent irregular very weakly cemented white (10YR 8/1) carbonate concretions in matrix and 1 percent fine prominent irregular carbonate masses with clear boundaries in matrix; strong effervescence, by HCl, 1 normal; moderately alkaline." diff --git a/inst/extdata/OSD/B/BRASSFIELD.json b/inst/extdata/OSD/B/BRASSFIELD.json index 35748bed8e..464e659e85 100644 --- a/inst/extdata/OSD/B/BRASSFIELD.json +++ b/inst/extdata/OSD/B/BRASSFIELD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 6 inches; dark gray (10YR 4/1) silt loam; moderate fine and medium granular structure; friable; many fine roots; 10 percent weathered calcareous siltstone and sandstone fragments; moderately alkaline, strong effervescence; clear smooth boundary. (3 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--6 to 18 inches; olive (5Y 5/4) silt loam; common medium distinct mottles of light olive brown (2.5Y 5/4), light olive gray (5Y 6/2), and yellowish brown (10YR 5/6); weak fine and medium subangular blocky structure; friable; common fine roots; few peds coated with dark gray from above; 10 percent weathered calcareous siltstone and sandstone fragments; moderately alkaline; strong effervescence; gradual wavy boundary. (7 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--18 to 36 inches; greenish gray (5GY 6/1), soft weathered siltstone and shale with common medium distinct mottles of light olive brown (2.5Y 5/4) and pale olive (5Y 6/4) which breaks down readily by hand to silt loam or loam; relict platy structure; firm; few fine roots; 15 percent hard limestone and calcareous siltstone fragments; moderately alkaline, strong effervescence; clear smooth boundary. (10 to 30 inches thick)" diff --git a/inst/extdata/OSD/B/BRATTON.json b/inst/extdata/OSD/B/BRATTON.json index 79f1bb7fd5..5f2d096017 100644 --- a/inst/extdata/OSD/B/BRATTON.json +++ b/inst/extdata/OSD/B/BRATTON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "2C--33 to 35 inches; brownish yellow (10YR 6/8) and light reddish brown (2.5YR 6/4) sandy loam; massive; friable; strong effervescence; mildly alkaline; clear irregular boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/B/BRAZORIA.json b/inst/extdata/OSD/B/BRAZORIA.json index 58ce02f4dc..4490c4406e 100644 --- a/inst/extdata/OSD/B/BRAZORIA.json +++ b/inst/extdata/OSD/B/BRAZORIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 14 cm (0 to 6 in); dark brown (7.5YR 3/2) clay; moderate medium wedge structure parts to moderate medium angular blocky; firm; many very fine roots and common fine roots; common very fine pores; 20 percent pressure faces on all faces of peds; 1 percent fine carbonate nodules; slight effervescence; slightly alkaline; gradual smooth boundary. (Thickness is 13 to 18 cm [5 to 7 in].)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss1--14 to 42 cm (6 to 17 in); dark brown (7.5YR 3/2) clay; moderate medium wedge structure parts to moderate medium angular blocky; firm; common very fine roots; common very fine pores; 5 percent slickensides (pedogenic); 1 percent fine carbonate nodules; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bss horizons is 98 to 155 cm [39 to 61 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss2--42 to 70 cm (17 to 28 in); brown (7.5YR 4/2) clay; moderate medium wedge structure parts to moderate medium angular blocky; firm; common very fine roots; common very fine pores; 15 percent slickensides (pedogenic); 1 percent fine distinct dark reddish brown (5YR 3/4), moist, masses of oxidized iron with diffuse boundaries on slickensides; slight effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss3--70 to 90 cm (28 to 36 in); 90 percent reddish brown (5YR 4/4) and 10 percent dark reddish brown (5YR 3/2) clay; moderate medium wedge structure parts to moderate medium angular blocky; firm; common very fine roots; common very fine pores; 10 percent slickensides (pedogenic); 3 percent fine black (10YR 2/1), moist, iron-manganese nodules with sharp boundaries in matrix; 1 percent fine faint reddish brown (5YR 5/4), moist, carbonate nodules; strong effervescence; moderately alkaline clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bssb1--90 to 125 cm (36 to 49 in); very dark brown (10YR 2/2) clay; strong medium wedge structure parts to strong medium angular blocky; firm; common very fine roots; common very fine pores; 30 percent slickensides (pedogenic); 2 percent fine prominent reddish brown (5YR 4/4), moist, masses of oxidized iron with diffuse boundaries on slickensides; 1 percent fine carbonate masses; slight effervescence; moderately alkaline clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bssb2--125 to 146 cm (49 to 58 in); 90 percent very dark brown (7.5YR 2.5/2) and 10 percent black (7.5YR 2.5/1) clay; strong coarse wedge structure parts to strong coarse angular blocky; firm; common very fine roots; common very fine pores; 35 percent slickensides (pedogenic); 1 percent fine 10YR 2/1), moist, iron-manganese nodules with sharp boundaries in matrix and 2 percent fine 5YR 4/4), moist, masses of oxidized iron with clear boundaries on slickensides; 4 percent fine distinct reddish yellow (7.5YR 6/6), moist, carbonate nodules and 2 percent fine carbonate masses; slight effervescence; moderately alkaline gradual smooth boundary. (Combined thickness of Bssb horizons is 98 to 155 cm [39 to 61 in].)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkssb1--146 to 170 cm (58 to 67 in); 90 percent dark brown (7.5YR 3/3) and 10 percent dark brown (7.5YR 3/2) clay; moderate coarse wedge structure parts to moderate medium angular blocky; very firm; common very fine roots; common very fine pores; 30 percent slickensides (pedogenic); 1 percent medium prominent reddish brown (2.5YR 4/4), moist, masses of oxidized iron with sharp boundaries in matrix and 1 percent fine black (10YR 2/1), moist, iron-manganese nodules with sharp boundaries in matrix; 3 percent fine carbonate nodules; strong effervescence; moderately alkaline gradual smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkssb2--170 to 203 cm (67 to 80 in); 30 percent dark reddish brown (5YR 3/2) and 70 percent dark reddish brown (5YR 3/3) clay; moderate coarse wedge structure parts to moderate medium angular blocky; very firm; common very fine roots; common very fine pores; 25 percent slickensides (pedogenic); 1 percent fine prominent red (2.5YR 4/6), moist, masses of oxidized iron with diffuse boundaries in matrix and 1 percent fine black (10YR 2/1), moist, manganese masses with sharp boundaries in matrix and 2 percent fine distinct reddish brown(5YR 4/3), moist, iron depletions with clear boundaries on slickensides and 2 percent fine black (10YR 2/1), moist, iron-manganese nodules; 1 percent fine pink (7.5YR 7/3), moist, carbonate nodules; strong effervescence; slightly alkaline. (Combined thickness of Bkss horizons is 35 to 57 cm [14 to 22 in].)" diff --git a/inst/extdata/OSD/B/BREHM.json b/inst/extdata/OSD/B/BREHM.json index be711f5d4d..533762c13a 100644 --- a/inst/extdata/OSD/B/BREHM.json +++ b/inst/extdata/OSD/B/BREHM.json @@ -135,7 +135,7 @@ "cf_class": "very cobbly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Btk--10 to 21 inches; pale brown (10YR 6/3) very cobbly loam, brown (10YR 4/3) moist; weak medium subangular blocky structure; slightly hard, friable, nonsticky and nonplastic; common fine roots; common fine tubular pores; few faint clay films on the faces of peds; 15 percent gravel and 30 percent cobbles; few lime coatings on undersides of rock fragments; strong effervescence, moderately alkaline (pH 8.0); clear wavy boundary. (10 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very cobbly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bk--21 to 24 inches; light yellowish brown (10YR 6/4) very cobbly loam, dark yellowish brown (10YR 4/4) moist; massive; soft, friable, nonsticky and nonplastic; few fine roots; few fine tubular pores; 20 percent gravel and 30 percent cobbles; few lime coatings on undersides of rock fragments; violent effervescence, moderately alkaline (pH 8.2); abrupt smooth boundary. (3 to 6 inches thick)" diff --git a/inst/extdata/OSD/B/BREIEN.json b/inst/extdata/OSD/B/BREIEN.json index 8ca1f96342..3f304e6446 100644 --- a/inst/extdata/OSD/B/BREIEN.json +++ b/inst/extdata/OSD/B/BREIEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C3--15 to 22 inches; light brownish gray (2.5Y 6/2) stratified loamy fine sand, grayish brown (2.5Y 5/2) moist; weak medium subangular blocky structure parting to single grain; soft, very friable, nonsticky and nonplastic; few fine roots; thin strata of sand; strong effervescence; moderately alkaline; clear wavy boundary." diff --git a/inst/extdata/OSD/B/BRENT.json b/inst/extdata/OSD/B/BRENT.json index 185f944127..5f23dd26ee 100644 --- a/inst/extdata/OSD/B/BRENT.json +++ b/inst/extdata/OSD/B/BRENT.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btk2--34 to 40 inches; brown (10YR 5/3) clay, brown (7.5YR 5/4) moist; weak thick platy structure; slightly hard, friable, moderately sticky and moderately plastic; few very fine and fine roots; many very fine and fine tubular pores; common distinct clay films on faces of peds and in pores; common medium veins and splotches of lime on faces of peds; moderately effervescent; moderately alkaline (pH 8.0); clear smooth boundary. (0 to 10 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk--40 to 46 inches; pink (7.5YR 7/4) gravelly clay loam, brown (7.5YR 5/4) moist; massive; hard, firm, slightly sticky and slightly plastic; few fine and very fine tubular pores; about 18 percent pebbles; common medium lime veins and splotches; moderately effervescent; moderately alkaline (pH 8.3); clear smooth boundary. (5 to 15 inches thick)" diff --git a/inst/extdata/OSD/B/BRIDGEHEAD.json b/inst/extdata/OSD/B/BRIDGEHEAD.json index 3f33e581ae..735895dc63 100644 --- a/inst/extdata/OSD/B/BRIDGEHEAD.json +++ b/inst/extdata/OSD/B/BRIDGEHEAD.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cseg1--32 to 70 centimeters; dark gray (2.5Y 4/1) broken face mucky silty clay loam; massive; 10 percent unrubbed, 2 percent rubbed fibers; moderately fluid; common fine roots throughout and common medium roots throughout; moderate effervescent reaction to 30% hydrogen peroxide; slightly acid (pH 6.5); clear boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cseg2--70 to 124 centimeters; dark gray (5Y 4/1) broken face silty clay; massive; moderately fluid; few very fine roots throughout; moderate effervescent reaction to 30% hydrogen peroxide; slightly acid (pH 6.3); gradual boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cseg3--124 to 144 centimeters; very dark gray (2.5Y 3/1) broken face clay loam; massive; moderately fluid; moderate effervescent reaction to 30% hydrogen peroxide; slightly acid (pH 6.5); gradual boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cseg4--144 to 200 centimeters; very dark gray (5Y 3/1) broken face silty clay loam; massive; slightly fluid; moderate effervescent reaction to 30% hydrogen peroxide; slightly acid (pH 6.5)." diff --git a/inst/extdata/OSD/B/BRIDGEPORT.json b/inst/extdata/OSD/B/BRIDGEPORT.json index 97718411fd..5ad9d4d98d 100644 --- a/inst/extdata/OSD/B/BRIDGEPORT.json +++ b/inst/extdata/OSD/B/BRIDGEPORT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 12 inches; dark grayish brown (10YR 4/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak medium granular structure; slightly hard, friable; many fine roots; few worm casts; slight effervescence to within 4 inches of the surface; moderately alkaline; gradual smooth boundary. (10 to 20 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--12 to 22 inches; grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky and weak fine granular structure; slightly hard, friable; common fine roots; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--22 to 60 inches; light brownish gray (10YR 6/2) silt loam, grayish brown (10YR 5/2) moist; massive; hard, friable; few fine roots; few fine pores; stratified with thin lenses of sandy loam and with broader bands of darker colored silt loam in the lower part of the horizon; few threads and films of free carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BRIDGET.json b/inst/extdata/OSD/B/BRIDGET.json index 0e1c3fe557..5c7b912380 100644 --- a/inst/extdata/OSD/B/BRIDGET.json +++ b/inst/extdata/OSD/B/BRIDGET.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--13 to 18 inches; brown (10YR 5/3) very fine sandy loam, dark brown (10YR 3/3) moist; weak coarse prismatic structure; slightly hard,very friable; slight effervescence; slightly alkaline; gradual smooth boundary. (0 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--18 to 36 inches; pale brown (10YR 6/3) very fine sandy loam, brown (10YR 4/3) moist; weak coarse subangular blocky structure; slightly hard, very friable; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--36 to 60 inches; very pale brown (10YR 7/3) very fine sandy loam; brown (10YR 5/3) moist; massive; soft, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BRIDGEWELL.json b/inst/extdata/OSD/B/BRIDGEWELL.json index 912faea1ec..dd14753837 100644 --- a/inst/extdata/OSD/B/BRIDGEWELL.json +++ b/inst/extdata/OSD/B/BRIDGEWELL.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Ck1--91 to 127 cm; brown (10YR 5/3) ashy silty clay loam, very pale brown (10YR 8/2) dry; massive; hard, firm, moderately sticky and moderately plastic; common very fine, common fine, and common medium roots; common very fine and few fine tubular pores; few fine prominent light gray (5Y 7/1) and light gray (N 7/0) zones of iron depletion near pores; slightly effervescent in matrix and strongly effervescent in secondary masses; strongly effervescent, moderately alkaline (pH 8.4); clear smooth boundary. (20 to 40 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Ck2--127 to 152 cm; brown (10YR 5/3) ashy loam, very pale brown (10YR 8/2) dry; massive; slightly hard, friable, slightly sticky and slightly plastic; common very fine, common fine, and common medium roots; common very fine and few fine tubular pores; light gray (5Y 7/1) and light gray (N 7/0) zones of iron depletion near pores; slightly effervescent in matrix and strongly effervescent in secondary masses; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/B/BRIFOX.json b/inst/extdata/OSD/B/BRIFOX.json index bd881ad0d9..6e68ad6f2b 100644 --- a/inst/extdata/OSD/B/BRIFOX.json +++ b/inst/extdata/OSD/B/BRIFOX.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkss1--15 to 21 inches; light brownish gray (10YR 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak fine and medium prismatic structure parting to moderate fine and medium angular blocky; hard, friable, moderately sticky and moderately plastic; few very fine roots; common very fine, few fine and medium tubular pores; few intersecting slickensides; cracks 0.5 to 1 inch wide and about 1.5 feet apart; 1 percent violently effervescent, very hard, rounded marl nodules; strongly effervescent (16 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); clear smooth boundary. (0 to 6 inches thick)" diff --git a/inst/extdata/OSD/B/BRISBANE.json b/inst/extdata/OSD/B/BRISBANE.json index 717072f117..4624a5c79c 100644 --- a/inst/extdata/OSD/B/BRISBANE.json +++ b/inst/extdata/OSD/B/BRISBANE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--17 to 31 inches; grayish brown (2.5Y 5/2) clay loam, very dark grayish brown (2.5Y 3/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; hard, friable, sticky and plastic; few very fine roots; many large irregular soft masses of lime; violent effervescence; mildly alkaline; gradual wavy boundary. (0 to 16 inches thick)" diff --git a/inst/extdata/OSD/B/BRISLAWN.json b/inst/extdata/OSD/B/BRISLAWN.json index b747545667..8ce4b082de 100644 --- a/inst/extdata/OSD/B/BRISLAWN.json +++ b/inst/extdata/OSD/B/BRISLAWN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "variable effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--37 to 60 inches; fractured porcelanite with 8 percent interstices or voids filled with light brown (7.5YR 6/4) sandy loam, brown (7.5YR 5/4) moist; common distinct discontinuous light gray (10YR 7/2) carbonate coats on bottom surfaces of rock fragments; slightly effervescent, fine earth material has variable effervescence; 70 percent subangular porcelanite channers, 17 percent subangular flagstones and 5 percent subrounded stones; slightly alkaline." diff --git a/inst/extdata/OSD/B/BRISTOW.json b/inst/extdata/OSD/B/BRISTOW.json index 951f3c79ee..b91d317040 100644 --- a/inst/extdata/OSD/B/BRISTOW.json +++ b/inst/extdata/OSD/B/BRISTOW.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 7 inches; pale brown (10YR 6/3) silty clay, dark yellowish brown (10YR 4/4) moist; moderate medium subangular blocky structure parting to moderate fine and very fine granular; hard, friable; many very fine and fine roots; strong effervescence; mildly alkaline; clear wavy boundary. (5 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--7 to 17 inches; light yellowish brown (2.5Y 6/4) shaly clay, light olive brown (2.5Y 5/4) moist; massive; more than 75 percent partially weathered shale fragments that break down upon wetting; contains visible calcium carbonate and gypsum in the seams and fractures; contain very fine and fine roots; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/B/BROADWATER.json b/inst/extdata/OSD/B/BROADWATER.json index 2e9992a363..ef28bf83ef 100644 --- a/inst/extdata/OSD/B/BROADWATER.json +++ b/inst/extdata/OSD/B/BROADWATER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; light brownish gray (10YR 6/2) loamy sand, brown (10YR 4/3) moist; weak fine granular structure; soft, very friable; 3 percent gravel by volume, strong effervescence; slightly alkaline; clear smooth boundary. (3 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--3 to 9 inches; pale brown (10YR 6/3) loamy sand, brown (10YR 5/3) moist; single grain, soft, very friable; thin strata of loamy very fine sand; 3 percent gravel by volume; strong effervescence, slightly alkaline; abrupt smooth boundary. (0 to 26 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C2--9 to 32 inches; pale brown (10YR 6/3) gravelly coarse sand, brown (10YR 5/3) moist; single grain; loose; thin strata of loamy very fine sand; 18 percent gravel by volume; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--32 to 60 inches; very pale brown (10YR 7/3) gravelly coarse sand, pale brown (10YR 6/3) moist; single grain; loose; thin strata of coarse sand; 31 percent gravel by volume; strong effervescence, slightly alkaline." diff --git a/inst/extdata/OSD/B/BROADWAY.json b/inst/extdata/OSD/B/BROADWAY.json index aad1a188b5..fef78b3f2a 100644 --- a/inst/extdata/OSD/B/BROADWAY.json +++ b/inst/extdata/OSD/B/BROADWAY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 11 inches; dark brown (10YR 3/3) silt loam, dark yellowish brown (10YR 4/4) dry; weak fine granular structure; friable, slightly sticky, slightly plastic; common fine roots; few fine discontinuous pores; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 14 inches)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw1--11 to 28 inches; brown (10YR 4/3) silty clay loam; weak fine subangular blocky structure; friable, slightly sticky, slightly plastic; few fine roots; common fine discontinuous pores; few worm casts and channels; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw2--28 to 46 inches; brown (10YR 4/3) silty clay loam; weak fine subangular blocky structure; friable, slightly sticky, slightly plastic; few fine roots; common fine discontinuous pores; few organic stains on faces of peds; violent effervescence; moderately alkaline; abrupt smooth boundary. (Combined thickness of the Bw horizon is 15 to 45 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--46 to 72 inches; grayish brown (10YR 5/2) loamy sand; many coarse distinct strong brown (7.5YR 5/6) and yellow (10YR 7/6) mottles; single grain; loose; few fine roots; 3 percent soft white calcium carbonates concretions; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BROCK.json b/inst/extdata/OSD/B/BROCK.json index bd23f4df00..b505c0e523 100644 --- a/inst/extdata/OSD/B/BROCK.json +++ b/inst/extdata/OSD/B/BROCK.json @@ -158,7 +158,7 @@ "cf_class": "extremely cobbly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk-- 23 to 36 cm; light gray (10YR 7/2) extremely cobbly sandy loam, brown (10YR 5/3) moist; weak fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky, plastic; few very fine, fine and medium horizontal roots; common very fine and fine tubular pores; few thin clay films in pores; 35 percent gravel and 25 percent cobbles; slightly effervescent but strongly effervescent in soft filaments; strongly alkaline (pH 8.8); very abrupt boundary. (8 to 15 cm thick)" diff --git a/inst/extdata/OSD/B/BRODIE.json b/inst/extdata/OSD/B/BRODIE.json index b09fe8b018..d2fb6bdeb5 100644 --- a/inst/extdata/OSD/B/BRODIE.json +++ b/inst/extdata/OSD/B/BRODIE.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--27 to 50 cm; yellowish brown (10YR 5/4), very gravelly clay loam, dark yellowish brown (10YR 4/4), moist; moderate medium and coarse subangular blocky structure; moderately hard, firm, moderately sticky, moderately plastic; common very fine and fine and few medium roots; many fine tubular pores; 60 percent patchy distinct clay films on all faces of peds; 35 percent gravel, 5 percent cobbles; 70 percent distinct carbonate coats on rock fragments and 30 percent irregular carbonate masses in matrix; moderately effervescent (7 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); gradual wavy boundary. (20 to 30 centimeters thick)" diff --git a/inst/extdata/OSD/B/BROPHY.json b/inst/extdata/OSD/B/BROPHY.json index db823f3e61..711a195153 100644 --- a/inst/extdata/OSD/B/BROPHY.json +++ b/inst/extdata/OSD/B/BROPHY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Oe--0 to 6 inches; black (10YR 2/1) broken face and dark gray (10YR 4/1) broken face; very dark gray (10YR 3/1) rubbed hemic material; about 50 percent fiber; 20 percent rubbed; massive; nonsticky; mixed herbaceous and Hypnum fibers, trace of snail shells in lower part; about 70 percent mineral material; violent effervescence; neutral (pH 7.2 in 0.01 M CaC12); clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Oi--6 to 38 inches; dark brown (7.5YR 3/2 and 10YR 3/3) broken face; dark yellowish brown (10YR 3/4) rubbed and pressed; fibric material; about 80 percent fibers; 50 percent rubbed; massive; nonsticky; about 70 percent Hypnum moss fiber with some minor strata containing as little as 30 percent to as much as 90 percent Hypnum moss fiber, remainder are herbaceous; few minor more decomposed and less decomposed strata; few snail shells in parts; about 40 percent mineral material with some minor strata containing as little as 15 percent to as much as 50 percent; slight effervescence in parts to strong effervescence in other parts; neutral (pH 7.0 to 7.2 in 0.01 M CaCl2); clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "O'e1--38 to 57 inches; very dark grayish brown (10YR 3/2) broken face; dark brown (10YR 3/3) rubbed and pressed; hemic material; about 50 percent fiber, 35 percent rubbed; massive; nonsticky; mostly herbaceous fiber, remainder are Hypnum moss; trace of snail shells; about 40 percent mineral material; slight effervescence; neutral (pH 7.0 in 0.01 M CaCl2); clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "O'e2--57 to 112 inches; very dark grayish brown (10YR 3/2) fiber with black (10YR 2/1) matrix; black (10YR 2/1) rubbed; hemic material; about 50 percent fiber, 40 percent rubbed; massive; nonsticky; mostly herbaceous fiber; remainder are Hypnum moss; trace of snail shells; about 15 percent mineral material; slight effervescence; neutral." diff --git a/inst/extdata/OSD/B/BROWNELL.json b/inst/extdata/OSD/B/BROWNELL.json index 1e0f85cd6b..2f401ff010 100644 --- a/inst/extdata/OSD/B/BROWNELL.json +++ b/inst/extdata/OSD/B/BROWNELL.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 7 inches; very dark gray (10YR 3/1) gravelly loam, very dark brown (10YR 2/2) moist; strong fine and medium granular structure; slightly hard, friable; many fine and medium roots; porous; common worm casts; violent effervescence; moderately alkaline; gradual smooth boundary. (4 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--7 to 15 inches; dark gray (10YR 4/1) very gravelly loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; slightly hard, friable; many fine and medium roots; porous; common worm casts; many 1/2- to 2- inch diameter chalky limestone fragments; strong effervescence; moderately alkaline; gradual smooth boundary. (6 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--15 to 30 inches; very pale brown (10YR 8/4) very channery loam, very pale brown (10YR 8/3) moist; weak coarse subangular blocky structure; slightly hard, friable; few fine roots; porous; few worm casts; many coarse fragments of soft limestone, 3 to 6 inches in diameter with loamy materials filling the interstices; strong effervescence; moderately alkaline; abrupt smooth boundary. (10 to 22 inches thick)" diff --git a/inst/extdata/OSD/B/BROWNTON.json b/inst/extdata/OSD/B/BROWNTON.json index 05e77ef841..331c8e5a9d 100644 --- a/inst/extdata/OSD/B/BROWNTON.json +++ b/inst/extdata/OSD/B/BROWNTON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) silty clay loam; weak fine subangular blocky structure; friable; slightly alkaline; slight effervescence; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--7 to 15 inches; black (10YR 2/1) silty clay loam; moderate very fine and fine subangular blocky structure; friable; slightly alkaline, slight effervescence; clear wavy boundary. (Combined thickness of A horizon is 12 to 20 inches.)" diff --git a/inst/extdata/OSD/B/BROYLES.json b/inst/extdata/OSD/B/BROYLES.json index cb0b139bcb..f7e8609446 100644 --- a/inst/extdata/OSD/B/BROYLES.json +++ b/inst/extdata/OSD/B/BROYLES.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--33 to 56 cm; very pale brown (10YR 7/3) ashy fine sandy loam, brown (10YR 4/3) moist; massive; hard, friable, nonsticky and nonplastic; many very fine and few fine roots; many very fine tubular and interstitial pores; slightly effervescent but strongly effervescent in spots; strongly alkaline (pH 9.0); clear wavy boundary. (0 to 30 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bqk1--56 to 112 cm; very pale brown (10YR 7/3) finely stratified paragravelly sandy loam and loamy sand, brown (10YR 4/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine and few fine roots; many very fine interstitial pores; 30 percent very hard, very firm and brittle durinodes; slightly effervescent but strongly effervescent in many coarse distinct very pale brown (10YR 7/3) threads of secondary calcium carbonate; strongly alkaline (pH 8.6); abrupt smooth boundary. (18 to 66 cm thick)" diff --git a/inst/extdata/OSD/B/BRUSHCREEK.json b/inst/extdata/OSD/B/BRUSHCREEK.json index da77dc63d8..3edfb9cfc4 100644 --- a/inst/extdata/OSD/B/BRUSHCREEK.json +++ b/inst/extdata/OSD/B/BRUSHCREEK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt3--19 to 24 inches; yellowish brown (10YR 5/6) silty clay; common fine prominent grayish brown (2.5Y 5/2) mottles; moderate medium subangular blocky structure; firm; many distinct brown (10YR 5/3) clay films on faces of peds; 10 percent limestone fragments; slight effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bt horizons are 10 to 20 inches.)" @@ -181,7 +181,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC--24 to 33 inches; yellowish brown (10YR 5/6) channery silty clay loam; common medium prominent gray (N 6/0) and (5Y 6/1) mottles; weak coarse subangular blocky structure; firm; few distinct brown (10YR 5/3) clay films on vertical faces of peds; 25 percent limestone fragments; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--33 to 56 inches; light olive gray (5Y 6/2) channery silty clay loam grading to channery silty clay in the lower six inches; common medium prominent light olive brown (2.5Y 5/4) mottles; massive; firm; 15 percent limestone fragments; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 24 inches thick) Cr--56 to 60 inches; gray (5Y 6/1) calcareous soft shale with some thin strata of limestone." diff --git a/inst/extdata/OSD/B/BRYANT.json b/inst/extdata/OSD/B/BRYANT.json index 71bd9e9d78..00404015d2 100644 --- a/inst/extdata/OSD/B/BRYANT.json +++ b/inst/extdata/OSD/B/BRYANT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--15 to 19 inches; light brownish gray (2.5Y 6/2) loam, olive brown (2.5Y 4/4) moist; weak medium prismatic structure; soft, friable, slightly sticky and slightly plastic; few rock fragments; common medium accumulations of carbonate; strong effervescence (17 percent calcium carbonate); moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--19 to 32 inches; light brownish gray (2.5Y 6/2) loam, olive brown (2.5Y 4/4) moist; massive; soft, friable; few rock fragments; common coarse accumulations of carbonates; violent effervescence (24 percent calcium carbonate); moderately alkaline; clear smooth boundary. (Combined Bk horizons 8 to 25 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--32 to 60 inches; yellowish brown (10YR 5/4) loam, brown (10YR 4/3) moist; many medium prominent relic redoximorphic concentrations of reddish yellow (7.5YR 7/8) and light gray (10YR 7/1); massive; soft, friable; few coarse fragments; strong effervescence (14 percent calcium carbonate); moderately alkaline." diff --git a/inst/extdata/OSD/B/BUCKNEY.json b/inst/extdata/OSD/B/BUCKNEY.json index fdb95827ce..bca167362c 100644 --- a/inst/extdata/OSD/B/BUCKNEY.json +++ b/inst/extdata/OSD/B/BUCKNEY.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--14 to 22 inches; dark brown (10YR 3/3) fine sandy loam, grayish brown (10YR 5/2) and light brownish gray (10YR 6/2) dry; weak fine subangular blocky structure; friable; slight effervescence; mildly alkaline; gradual smooth boundary. (Combined thickness of the A horizons is 14 to 24 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--22 to 36 inches; dark yellowish brown (10YR 4/4) loamy fine sand; single grain; loose; slight effervescence; mildly alkaline; gradual smooth boundary. (0 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--36 to 60 inches; grayish brown (10YR 5/2) loamy fine sand; single grain; loose; few thin strata of light brownish gray (10YR 6/2) silt loam; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BUCKTON.json b/inst/extdata/OSD/B/BUCKTON.json index 0db1d0f17a..a66ed74afa 100644 --- a/inst/extdata/OSD/B/BUCKTON.json +++ b/inst/extdata/OSD/B/BUCKTON.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cl--7 to 18 inches; brown (l0YR 5/3) silt loam; weak fine and medium subangular blocky structure; friable; many fine roots; few fine and medium pores; slight effervescence; slightly alkaline; gradual smooth boundary. (6 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C2--18 to 29 inches; brown (l0YR 4/3) silt loam; weak medium subangular blocky structure parting to weak fine granular; friable; many fine and few medium roots; many fine pores; slight effervescence; slightly alkaline; gradual smooth boundary. (6 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C3--29 to 48 inches; dark brown (l0YR 3/3) silt loam; weak coarse subangular blocky structure parting to weak fine granular; friable; few medium and fine roots; slight effervescence; slightly alkaline; gradual smooth boundary. (10 to 30 inches thick)" diff --git a/inst/extdata/OSD/B/BUFFALO_PARK.json b/inst/extdata/OSD/B/BUFFALO_PARK.json index 0d7b0ac4b5..d6a7d0afa4 100644 --- a/inst/extdata/OSD/B/BUFFALO_PARK.json +++ b/inst/extdata/OSD/B/BUFFALO_PARK.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--11 to 23 cm; (4 to 9 inches); 10 percent grayish brown (10YR 5/2) and 90 percent yellowish brown (10YR 5/4), silty clay loam, 29 percent clay; 10 percent dark grayish brown (10YR 4/2) and 90 percent dark yellowish brown (10YR 4/4), moist; moderate medium granular structure; slightly hard, friable, slightly sticky, slightly plastic; many fine roots throughout; few fine cylindrical worm casts throughout; violent effervescent, by HCl, 1 normal; pH 7.7, 1:1 water; slightly alkaline; clear smooth boundary. Lab sample# 01P01711" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bk5--128 to 200 cm; (50 to 79 inches); reddish yellow (7.5YR 6/6), clay loam, 33 percent clay; yellowish brown (10YR 5/6), moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common fine roots throughout; common fine moderate continuity tubular pores; common fine irregular soft carbonate masses in matrix; violent effervescent, by HCl, 1 normal; pH 8.0, 1:1 water; moderately alkaline. Lab sample# 01P01716" diff --git a/inst/extdata/OSD/B/BUFFINGTON.json b/inst/extdata/OSD/B/BUFFINGTON.json index bcaaf2e2ff..8296934773 100644 --- a/inst/extdata/OSD/B/BUFFINGTON.json +++ b/inst/extdata/OSD/B/BUFFINGTON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 10 inches; gray (10YR 5/1) silty clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium granular structure; hard, firm; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--10 to 13 inches; gray (10YR 5/1) silty clay loam, very dark grayish brown (10YR 3/2) moist; moderate coarse blocky structure; slightly hard, firm; slight effervescence; slightly alkaline; clear smooth boundary. (Combined thickness of A horizon is 9 to 16 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--13 to 20 inches; light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate fine subangular blocky structure; hard, firm; strong effervescence; slightly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--20 to 40 inches; light gray (10YR 7/2) silty clay loam, grayish brown (10YR 5/2) moist; weak fine and medium subangular blocky structure; slightly hard, firm; violent effervescence; slightly alkaline; clear smooth boundary. (Combined thickness of C horizon is 18 to 42 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1b--40 to 50 inches; light brownish gray (10YR 6/2) heavy loam with thin lenses of fine sandy loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; slightly hard, friable; violent effervescence; slightly alkaline; clear smooth boundary. (4 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1b--50 to 80 inches; light gray (2.5Y 7/2) light silty clay loam, grayish brown (2.5Y 5/2) moist; weak coarse subangular blocky structure; slightly hard, firm; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BUFTON.json b/inst/extdata/OSD/B/BUFTON.json index ba021f8b10..4fece64636 100644 --- a/inst/extdata/OSD/B/BUFTON.json +++ b/inst/extdata/OSD/B/BUFTON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate medium and fine subangular blocky structure parting to moderate fine granular; hard, firm, strong effervescence; moderately alkaline; clear smooth boundary. (2 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--6 to 15 inches; light brownish gray (10YR 6/2) silty clay loam, grayish brown (10YR 5/2) moist; moderate medium and coarse prismatic parting to moderate medium and fine subangular blocky; very hard, very firm; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--15 to 26 inches; light gray (10YR 7/2) silty clay loam, grayish brown (10YR 5/2) moist; moderate medium and coarse prismatic structure parting to moderate medium and coarse subangular blocky; very hard, very firm; violent effervescence; moderately alkaline; clear wavy boundary. (6 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--26 to 36 inches; light gray (10YR 7/2) silty clay loam, grayish brown (10YR 5/2) moist; moderate coarse prismatic structure parting to weak coarse subangular blocky; hard, firm; many threads and soft masses of lime; violent effervescence; moderately alkaline; gradual wavy boundary. (5 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 72 inches; light gray (2.5Y 7/2) silty clay loam, grayish brown (2.5Y 5/2) moist; massive; hard, firm; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BULLFLAT.json b/inst/extdata/OSD/B/BULLFLAT.json index d324b43ecb..940775dde9 100644 --- a/inst/extdata/OSD/B/BULLFLAT.json +++ b/inst/extdata/OSD/B/BULLFLAT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--53 to 71 cm (21 to 28 inches); light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; weak coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; 10 percent fragments of rock; many coarse to fine accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 50 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ck--71 to 81 cm (28 to 32 inches); very pale brown (10YR 7/4) gravelly clay loam, light yellowish brown (10YR 6/4) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; 30 percent fragments of rock; few fine accumulation of carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--81 to 200 cm (32 to 80 inches); very pale brown (10YR 8/4) very cobbly clay loam, very pale brown (10YR 7/4) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; carbonates coat undersides of pebbles; 40 percent fragments of rock; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BULLFOR.json b/inst/extdata/OSD/B/BULLFOR.json index ea1c12de6c..64f882cad1 100644 --- a/inst/extdata/OSD/B/BULLFOR.json +++ b/inst/extdata/OSD/B/BULLFOR.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--1 to 24 inches; very pale brown (10YR 7/3) loamy sand, yellowish brown (10YR 5/4) moist; massive; soft, very friable, nonsticky and nonplastic; common fine, medium and coarse roots; common fine interstitial pores; 3 percent pebbles; slightly effervescent with strongly effervescent spots; moderately alkaline (pH 8.2); abrupt wavy boundary. (19 to 28 inches thick)" diff --git a/inst/extdata/OSD/B/BULLION.json b/inst/extdata/OSD/B/BULLION.json index 118d503b86..60b63f989d 100644 --- a/inst/extdata/OSD/B/BULLION.json +++ b/inst/extdata/OSD/B/BULLION.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 4 inches; light brown (7.5YR 6/4) silt loam, brown (7.5YR 4/4) moist; weak thick platy structure parting to weak thin platy; slightly hard, friable, slightly sticky and slightly plastic; few fine and very fine roots; few medium, many fine and very fine pores; strong effervescence (11 percent calcium carbonate equivalent); carbonates are disseminated; strongly alkaline (pH 9.0); abrupt smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BAn--4 to 6 inches; light brown (7.5YR 6/4) silt loam, strong brown (7.5YR 4/6) moist; weak thick platy structure parting to weak fine subangular blocky; hard, friable, moderately sticky and slightly plastic; few fine and very fine roots; common fine and very fine pores; strong effervescence (14 percent calcium carbonate equivalent); carbonates are disseminated; very strongly alkaline (pH 9.2); abrupt wavy boundary. (0 to 4 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn--6 to 14 inches; light reddish brown (5YR 6/4) silty clay loam, reddish brown (5YR 4/4) moist; strong coarse and medium prismatic structure parting to moderate fine and very fine subangular blocky; very hard, firm, moderately sticky and moderately plastic; few medium, common fine and very fine roots; few fine and very fine pores; strong effervescence (4 percent calcium carbonate equivalent); carbonates are disseminated; slightly saline; very strongly alkaline (pH 9.4); clear wavy boundary. (7 to 13 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky--14 to 24 inches; light reddish brown (5YR 6/4) silty clay loam, yellowish red (5YR 4/6) moist; moderate coarse and medium prismatic structure parting to moderate medium subangular blocky; very hard, firm, moderately sticky and moderately plastic; few medium, common fine and very fine roots; few fine and very fine pores; violent effervescence (27 percent calcium carbonate equivalent), carbonates are disseminated; few fine soft gypsum crystals (trace gypsum); strongly saline; very strongly alkaline (pH 9.2); gradual wavy boundary. (6 to 13 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cky1--24 to 38 inches; light reddish brown (5YR 6/4) clay loam, yellowish red (5YR 5/6) moist; moderate medium subangular blocky structure parting to moderate fine subangular blocky; very hard, firm, moderately sticky and moderately plastic; few fine and very fine roots; few fine and very fine pores; violent effervescence (26 percent calcium carbonate equivalent); carbonates are disseminated; many medium and fine soft gypsum crystals (4.4 percent gypsum); strongly saline; very strongly alkaline (pH 9.2); clear wavy boundary. (6 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9.1, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cky2--38 to 52 inches; light reddish brown (5YR 6/4) silty clay loam, yellowish red (5YR 5/6) moist; moderate medium subangular blocky structure parting to moderate fine subangular blocky; very hard, firm, moderately sticky and moderately plastic; few fine and very fine roots; few fine and very fine pores; violent effervescence (38 percent calcium carbonate equivalent), carbonates are disseminated; many medium and fine soft gypsum crystals (0.9 percent gypsum); strongly saline; very strongly alkaline (pH 9.1); gradual wavy boundary. (9 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cky3--52 to 60 inches; light reddish brown (5YR 6/4) silty clay loam, yellowish red (5YR 5/6) moist; moderate medium subangular blocky structure parting to moderate fine subangular blocky; very hard, firm, moderately sticky and moderately plastic; few fine and very fine roots; few fine and very fine pores; many medium and fine soft gypsum crystals (0.2 percent gypsum); moderately saline; violent effervescence (37 percent calcium carbonate equivalent); carbonates are disseminated; very strongly alkaline (pH 9.l)." diff --git a/inst/extdata/OSD/B/BULLOCK.json b/inst/extdata/OSD/B/BULLOCK.json index ca316a0fb9..b9e7921ee3 100644 --- a/inst/extdata/OSD/B/BULLOCK.json +++ b/inst/extdata/OSD/B/BULLOCK.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk--9 to 12 inches; light brownish gray (2.5Y 6/2) sandy clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium and coarse subangular blocky; very hard, friable, slightly sticky and slightly plastic; thin continuous very dark grayish brown (2.5Y 3/2) shiny coats on the faces of peds; few fine compressed roots; few fine nests of gypsum and other salts; many medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 7 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz1--12 to 15 inches; light brownish gray (2.5Y 6/2) loam; grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to moderate medium and fine subangular blocky; very hard, friable, slightly sticky and slightly plastic; few fine compressed roots; common fine nests of gypsum and other salts; common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz2--15 to 20 inches; light gray (2.5Y 6/1) clay loam, grayish brown (2.5Y 5/2) moist; weak medium and fine subangular blocky structure; hard, very friable; slightly sticky and slightly plastic; few fine compressed roots; common fine nests of gypsum and other salts; few fine accumulations and concretions of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 5 to 15 inches thick)" diff --git a/inst/extdata/OSD/B/BUNTON.json b/inst/extdata/OSD/B/BUNTON.json index 24c2d5ed45..8f0be1ed8a 100644 --- a/inst/extdata/OSD/B/BUNTON.json +++ b/inst/extdata/OSD/B/BUNTON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw3--87 to 152 centimeters (34 to 60 inches); brown (7.5YR 4/4) clay, dark brown (7.5YR 3/4), moist; moderate fine subangular blocky structure; slightly hard, friable, very sticky, very plastic; common fine roots; slight effervescence; slightly alkaline. (combined thickness of Bw horizons is 176 to 195 centimeters [69 to 77 inches])" diff --git a/inst/extdata/OSD/B/BUOY.json b/inst/extdata/OSD/B/BUOY.json index eb158400bb..a282870dd6 100644 --- a/inst/extdata/OSD/B/BUOY.json +++ b/inst/extdata/OSD/B/BUOY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btk1--33 to 41 inches, (85 to 105 cm); 40 percent dark yellowish brown (10YR 3/4) and 60 percent red (2.5YR 5/8) clay, dark yellowish brown (10YR 4/4) moist; 50 percent clay; moderate fine subangular blocky structure; firm, very sticky, very plastic; common very fine roots throughout; distinct clay films on surfaces along root channels and distinct clay films on all faces of peds; 5 percent medium distinct irregular light gray (10YR 7/2), dry, carbonate masses with clear boundaries throughout; strong effervescence; moderately alkaline (pH 8.0 by Phenol red); gradual wavy boundary. (15 to 46 cm, 6 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "3Btk2--41 to 45 inches, (105 to 115 cm); light yellowish brown (2.5Y 6/4) fine sandy loam, light olive brown (2.5Y 5/6) moist; 7 percent clay; massive; common very fine roots throughout; distinct clay films on all faces of peds; carbonates finely disseminated; slight effervescence; moderately alkaline (pH 8.0 by Phenol red); abrupt wavy boundary. (0 to 15 cm, 0 to 6 inches thick)" diff --git a/inst/extdata/OSD/B/BURNSVILLE.json b/inst/extdata/OSD/B/BURNSVILLE.json index f3fa919da6..b4249b47a6 100644 --- a/inst/extdata/OSD/B/BURNSVILLE.json +++ b/inst/extdata/OSD/B/BURNSVILLE.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "IIB3t--20 to 24 inches; dark brown (7.5YR 4/4) gravelly coarse sandy loam; weak coarse subangular blocky structure; very friable; about 20 percent gravel; few thin dark brown (7.5YR 3/2) clay films on faces of peds; slight effervescence; mildly alkaline; abrupt wavy boundary. (0 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC--24 to 60 inches; yellowish brown (10YR 5/4) and grayish brown (10YR 5/2) gravelly coarse sand; single grain; loose; about 25 percent gravel; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/B/BURSAW.json b/inst/extdata/OSD/B/BURSAW.json index bb85deafb9..e7abd34950 100644 --- a/inst/extdata/OSD/B/BURSAW.json +++ b/inst/extdata/OSD/B/BURSAW.json @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--41 to 124 centimeters; brown (10YR 5/3) extremely gravelly coarse sand; single grain; loose; common roots; common medium distinct yellowish brown (10YR 5/6) iron accumulations below 51 centimeters; about 60 percent gravel, about 10 percent cobbles; slightly alkaline; slight effervescence; abrupt wavy boundary. (51 to 100 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cd--124 to 203 centimeters; brown (10YR 5/3) gravelly sandy loam; moderate medium platy structure; firm; about 12 percent gravel and about 5 percent cobbles; moderately alkaline; strong effervescence." diff --git a/inst/extdata/OSD/B/BUSHER.json b/inst/extdata/OSD/B/BUSHER.json index b7eb4a6514..013adf3d0b 100644 --- a/inst/extdata/OSD/B/BUSHER.json +++ b/inst/extdata/OSD/B/BUSHER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--29 to 44 inches; light gray (10YR 7/2) loamy very fine sand, light brownish gray (10YR 6/2) moist; massive; soft, very friable; 5 percent by volume of sandstone gravel; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 21 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--44 to 60 inches; very pale brown (10YR 8/2) soft fine-grained sandstone, light brownish gray (10YR 6/2) moist; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BUSHMAN.json b/inst/extdata/OSD/B/BUSHMAN.json index 45ccf3698c..f57a796bdc 100644 --- a/inst/extdata/OSD/B/BUSHMAN.json +++ b/inst/extdata/OSD/B/BUSHMAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 6 inches; brown (10YR 4/3) fine sandy loam, dark brown (10YR 3/3) moist; weak medium subangular blocky structure parting to weak fine granular; slightly hard, very friable; less than 5 percent pebbles; strong effervescence; slightly alkaline (pH 7.8); abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--6 to 12 inches; brown (10YR 5/3) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak coarse subangular blocky structure parting to weak fine granular; slightly hard, very friable; less than 5 percent pebbles, violent effervescence; slightly alkaline (pH 7.8); clear smooth boundary. (Combined thickness of A horizon ranges from 7 to 18 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--12 to 19 inches; pale brown (10YR 6/3) fine sandy loam, brown (10YR 4/3) moist; weak coarse subangular blocky structure; slightly hard, very friable; less than 5 percent pebbles; violent effervescence; moderately alkaline (pH 8.0); clear smooth boundary. (0 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--19 to 33 inches; very pale brown (10YR 7/3) fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard, very friable; less than 15 percent pebbles; violent effervescence; moderately alkaline (pH 8.0); gradual smooth boundary. (0 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--33 to 60 inches; very pale brown (10YR 7/3) fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard, very friable; less than 5 percent pebbles; violent effervescence; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/B/BUSKA.json b/inst/extdata/OSD/B/BUSKA.json index 6681c658aa..a01182f83e 100644 --- a/inst/extdata/OSD/B/BUSKA.json +++ b/inst/extdata/OSD/B/BUSKA.json @@ -227,7 +227,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--109 to 152 cm; dark yellowish brown (10YR 3/4) very channery silt loam, dark yellowish brown (10YR 4/4) dry; massive; about 10 percent light olive gray (5Y 6/2) iron stains inherent from the schist; hard, friable, nonsticky and nonplastic; common fine pores; about 80 percent flat angular fragments of schist; rock structure evident; very slight effervescence; neutral." diff --git a/inst/extdata/OSD/B/BUTLER.json b/inst/extdata/OSD/B/BUTLER.json index e4fccd614b..50ae9576b8 100644 --- a/inst/extdata/OSD/B/BUTLER.json +++ b/inst/extdata/OSD/B/BUTLER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BC--81 to 97 centimeters (32 to 38 inches); dark olive gray (5Y 3/2) silty clay loam, dark gray (5Y 4/1), dry; moderate coarse prismatic structure parting to moderate medium subangular blocky; firm, hard; few fine carbonate masses; strong effervescence; few fine distinct yellowish brown (10YR 5/6) iron-manganese masses; moderately alkaline; gradual smooth boundary. (15 to 38 cm thick)(6 to 15 inches)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--97 to 127 centimeters (38 to 50 inches); dark olive gray (5Y 3/2) silt loam, gray (5Y 6/1), dry; massive; friable, slightly hard; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C2--127 to 157 centimeters (50 to 62 inches); olive gray (5Y 5/2) silt loam, gray (5Y 6/1), dry; massive; friable, slightly hard; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--157 to 200 centimeters (62 to 80 inches); light olive gray (5Y 6/2) silt loam, light gray (5Y 7/1), dry; massive; friable, slightly hard; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/B/BUTTERMILK.json b/inst/extdata/OSD/B/BUTTERMILK.json index 9c97286356..71491f62ed 100644 --- a/inst/extdata/OSD/B/BUTTERMILK.json +++ b/inst/extdata/OSD/B/BUTTERMILK.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ay1--13 to 48 cm (5 to 19 in); dark grayish brown (10YR 4/2) silt loam, very dark brown (10YR 2/2) moist; moderate medium granular structure; hard, friable; many fine roots; common fine white salt crystals; slight effervescence; slightly saline; moderately alkaline, gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ay2--48 to 71 cm (19 to 28 in); dark grayish brown (10YR 4/2) silt loam, very dark brown (10YR 2/2) moist; weak medium granular structure; hard, friable; few fine roots; common fine white salt crystals; strong effervescence; slightly saline; moderately alkaline; gradual smooth boundary. (Thickness of the Ay horizon ranges from 15 to 64 cm [6 to 25 inches])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "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])" diff --git a/inst/extdata/OSD/B/BYLAS.json b/inst/extdata/OSD/B/BYLAS.json index 4ff9376d0b..5a5ae1e55f 100644 --- a/inst/extdata/OSD/B/BYLAS.json +++ b/inst/extdata/OSD/B/BYLAS.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 0.5 inches; pale brown (10YR 6/3) very gravelly loam, brown (10YR 4/3) moist; strong thin and medium platy structure; soft, loose, nonsticky, and nonplastic; many very fine roots; many very fine and fine pores; 40 percent gravel, 5 percent cobbles; violent effervescent; 30 percent calcium carbonate equivalent; strongly alkaline, pH 8.6; clear wavy boundary. (.5 to 2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very flaggy", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--0.5 to 6 inches; very pale brown (10YR 7/3) very flaggy loam, brown (7.5YR 5/4) moist; moderate medium and fine subangular blocky structure; soft, loose, nonsticky and nonplastic; common very fine and medium and few coarse roots; common very fine pores; 15 percent gravel, 40 percent calcrete flagstones; violent effervescent, 32 percent calcium carbonate equivalent; strongly alkaline, pH 8.6; abrupt wavy boundary. (6 to 13 inches thick)" diff --git a/inst/extdata/OSD/B/BYRNE.json b/inst/extdata/OSD/B/BYRNE.json index 05c1cf3e5c..aead8c16e7 100644 --- a/inst/extdata/OSD/B/BYRNE.json +++ b/inst/extdata/OSD/B/BYRNE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--58 to 71 centimeters (23 to 28 inches); yellowish brown (10YR 5/4) silt loam; weak fine subangular blocky structure; friable; about 0.5 percent fine roots; about 1 percent light gray (2.5Y 7/2) carbonate masses in matrix; strong effervescence; pH 8.2 - moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk2--71 to 102 centimeters (28 to 40 inches); yellowish brown (10YR 5/4) loam; weak medium subangular blocky structure; friable; about 1 percent light gray (2.5Y 7/2) carbonate masses in matrix; about 4 percent subrounded 2 to 75 millimeter (one tenth to 3 inches) mixed rock fragments; strong effervescence; pH 8.2 - moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--102 to 203 centimeters (40 to 80 inches); light olive brown (2.5Y 5/4) loam; massive; firm; about 3 percent fine prominent strong brown (7.5YR 5/6) masses of oxidized iron in matrix and about 21 percent medium distinct grayish brown (2.5Y 5/2) iron depletions in matrix; about 4 percent subrounded 2 to 75 millimeter (one tenth to 3 inches) mixed rock fragments; slight effervescence; pH 7.6 - slightly alkaline." diff --git a/inst/extdata/OSD/C/CACIQUE.json b/inst/extdata/OSD/C/CACIQUE.json index 4a7905bbbc..c50c940adc 100644 --- a/inst/extdata/OSD/C/CACIQUE.json +++ b/inst/extdata/OSD/C/CACIQUE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "discontinuous effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bt1--2 to 6 inches; reddish brown (5YR 5/4) sandy loam, reddish brown (5YR 4/4) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, firm, nonsticky and nonplastic; few fine roots; few fine tubular pores; few insect burrows, 2 to 10 mm in diameter, some empty and some filled with fine earth; clay coatings on sand grains; generally noneffervescent with few discontinuous effervescent areas; slightly alkaline; clear smooth boundary. (3 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "are effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bt2--6 to 12 inches; reddish brown (5YR 5/4) sandy clay loam, reddish brown (5YR 4/4) moist; weak coarse prismatic structure parting to weak medium subangular blocky; firm, slightly sticky and slightly plastic; few fine roots; few fine tubular pores; few insect burrows, 2 to 10 mm in diameter, some empty and some filled with fine earth; sand grains have coatings of clay; generally noneffervescent with a few discontinuous areas that are effervescent; slightly alkaline; clear smooth boundary. (6 to 10 inches thick)" diff --git a/inst/extdata/OSD/C/CACTUSFLAT.json b/inst/extdata/OSD/C/CACTUSFLAT.json index 615d9c82c9..d80e17aa2b 100644 --- a/inst/extdata/OSD/C/CACTUSFLAT.json +++ b/inst/extdata/OSD/C/CACTUSFLAT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; dark grayish brown (10YR 4/2) silty clay, very dark grayish brown (10YR 3/2) moist; weak fine and medium subangular blocky structure parting to weak fine and medium granular; soft, friable, sticky and plastic; many fine and medium roots; slight effervescence; slightly alkaline; clear smooth boundary. (1 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--4 to 11 inches; grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; weak medium and coarse prismatic structure parting to weak medium subangular blocky; very hard, very firm, sticky and plastic; cracks 1/2 to 1 inch wide; common fine and medium roots; slight effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--11 to 19 inches; light brownish gray (10YR 6/2) silty clay, dark brown (10YR 3/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; very hard, very firm, sticky and plastic; cracks 1/2 to 1 inch wide; common fine and medium roots; slight effervescence; slightly alkaline; gradual wavy boundary. (Combined thickness of the Bw horizons is 8 to 26 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--19 to 25 inches; pale brown (10YR 6/3) silty clay, brown (10YR 4/3) moist; weak coarse subangular blocky structure; hard, firm, sticky and plastic; cracks 1/2 to 1 inch wide; few fine and medium roots; common fine and medium accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Cz--25 to 31 inches; light gray (10YR 7/2) and very pale brown (10YR 7/3) silty clay loam, brown (10YR 5/3) moist; massive; hard, friable, sticky and slightly plastic; thin bedding planes evident; common fine and medium accumulations of salts and carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--31 to 60 inches; light gray (10YR 7/2) clay loam with thin layers of fine sandy loam and silty clay loam, brown (10YR 5/3) moist; massive; hard, friable, sticky and slightly plastic; thin bedding planes evident; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CALHI.json b/inst/extdata/OSD/C/CALHI.json index ed2426d078..0ae0c61257 100644 --- a/inst/extdata/OSD/C/CALHI.json +++ b/inst/extdata/OSD/C/CALHI.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C3--22 to 60 inches; pale brown (10YR 6/3) loamy fine sand, brown (10YR 5/3) moist; single grained; loose; many very fine interstitial pores; moderately effervescent, lime disseminated; very strongly alkaline (pH 10.5)." diff --git a/inst/extdata/OSD/C/CALLAHAN.json b/inst/extdata/OSD/C/CALLAHAN.json index e1dfb3919a..b9fa1a096c 100644 --- a/inst/extdata/OSD/C/CALLAHAN.json +++ b/inst/extdata/OSD/C/CALLAHAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--18 to 30 inches; reddish brown (5YR 4/4) clay, dark reddish brown (5YR 3/4) moist; moderate fine blocky structure; very hard, very firm; few fine roots; few fine pores; the surfaces of the peds are shiny; few fine quartz gravel; few films and threads of calcium carbonate; few strongly and weakly cemented concretions of calcium carbonate; slight effervescence; moderately alkaline; gradual wavy boundary. Thickness is 20 to 51 cm (8 to 20 in)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk/C--30 to 36 inches; yellowish red (5YR 5/6) clay, yellowish red (5YR 4/6) moist; weak medium blocky structure; very hard, firm; few thin patchy clay films on faces of peds; 10 percent by volume of partially weathered fragments of shale; few strongly and weakly cemented concretions of calcium carbonate; strong effervescence; moderately alkaline; clear smooth boundary. Thickness is 0 to 25 cm (0 to 10 in)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cdk--36 to 70 inches; thin lenses and strata of pink, claystone bedrock, interbedded with weakly cemented sandstone and yellow clay loam; massive; extremely hard, very firm; cleavage planes and horizontal bedding are evident; few concretions of calcium carbonate and few soft bodies of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CAMPBELL.json b/inst/extdata/OSD/C/CAMPBELL.json index e4ff44d172..7630c7cd24 100644 --- a/inst/extdata/OSD/C/CAMPBELL.json +++ b/inst/extdata/OSD/C/CAMPBELL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2A--38 to 51 inches, (97 to 130 cm); dark grayish brown (10YR 4/2) broken face silty clay loam, very dark grayish brown (10YR 3/2) broken face moist; 29 percent clay; moderate medium subangular blocky structure; slightly hard, friable, moderately sticky, moderately plastic; common very fine interstitial pores; 10 percent faint clay films on all faces of peds; strong effervescence, by HCl, 1 normal; slightly alkaline, pH 7.7 by pH meter 1:1 water; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bw1--51 to 71 inches, (130 to 180 cm); 50 percent dark grayish brown (10YR 4/2) broken face and 50 percent gray (10YR 5/1) broken face silty clay, 50 percent very dark grayish brown (10YR 3/2) broken face and 50 percent dark gray (10YR 4/1) broken face moist; 40 percent clay; massive; hard, friable, very sticky, moderately plastic; common very fine interstitial pores; violent effervescence, by HCl, 1 normal; slightly alkaline, pH 7.7 by pH meter 1:1 water; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bw2--71 to 79 inches, (180 to 200 cm); 30 percent grayish brown (10YR 5/2) broken face and 70 percent gray (10YR 5/1) broken face silty clay, 30 percent dark grayish brown (10YR 4/2) broken face and 70 percent dark gray (10YR 4/1) broken face moist; 45 percent clay; massive; hard, friable, very sticky, moderately plastic; common very fine interstitial pores; 5 percent carbonate coats; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 7.9 by pH meter 1:1 water;" diff --git a/inst/extdata/OSD/C/CAMPUS.json b/inst/extdata/OSD/C/CAMPUS.json index 9269953e93..47c45726c2 100644 --- a/inst/extdata/OSD/C/CAMPUS.json +++ b/inst/extdata/OSD/C/CAMPUS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 8 inches; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium granular structure; slightly hard, friable; numerous worm casts; few small hard caliche fragments; strong effervescence; mildly alkaline; clear smooth boundary. (5 to 18 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--8 to 16 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; moderate fine subangular blocky structure; slightly hard, friable; numerous worm casts; common small hard fragments of caliche; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--16 to 30 inches; very pale brown (10YR 8/3) loam, very pale brown (10YR 7/3) moist; massive; hard, firm; hard caliche fragments comprise about 15 percent of volume and soft masses of lime about 15 percent of volume; violent effervescence; moderately alkaline; clear smooth boundary. (6 to 28 inches thick)" diff --git a/inst/extdata/OSD/C/CAMTOWN.json b/inst/extdata/OSD/C/CAMTOWN.json index c55078691b..6fcfb26b3c 100644 --- a/inst/extdata/OSD/C/CAMTOWN.json +++ b/inst/extdata/OSD/C/CAMTOWN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--25 to 37 inches; light gray (2.5Y 7/2) loam, light brownish gray (2.5Y 6/2) moist; weak coarse and medium subangular blocky structure; slightly hard, friable; few very fine roots; many medium and fine accumulations of carbonate; few fine accumulations of salt; strong effervescence; moderately alkaline; gradual wavy boundary. (8 to 21 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--37 to 60 inches; light gray (2.5Y 7/2) loam, light brownish gray (2.5Y 6/2) moist; common fine prominent yellowish brown (10YR 5/6) redox concentrations; massive; soft, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CANADIAN.json b/inst/extdata/OSD/C/CANADIAN.json index 1cbb62b4a6..147c0816bd 100644 --- a/inst/extdata/OSD/C/CANADIAN.json +++ b/inst/extdata/OSD/C/CANADIAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "rootsnoneffervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--28 to 43 inches; strong brown (7.5YR 5/6), crushed, fine sandy loam, strong brown (7.5YR 4/6), crushed, moist; massive; slightly hard, very friable; common very fine and few fine rootsnoneffervescent; slightly alkaline; gradual wavy boundary. (12 to 20 inches thick)" diff --git a/inst/extdata/OSD/C/CANIWE.json b/inst/extdata/OSD/C/CANIWE.json index 9adfa748a9..5a6afbf137 100644 --- a/inst/extdata/OSD/C/CANIWE.json +++ b/inst/extdata/OSD/C/CANIWE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Ck--102 to 152 cm; very pale brown (10YR 7/3) silt loam, brown (10YR 4/3) moist; massive; slightly hard, friable, moderately sticky and moderately plastic; very few very fine roots; few very fine tubular pores; common strongly effervescent fine carbonate seams and filaments; noneffervescent matrix; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/C/CANLON.json b/inst/extdata/OSD/C/CANLON.json index 1903b2d112..860002780c 100644 --- a/inst/extdata/OSD/C/CANLON.json +++ b/inst/extdata/OSD/C/CANLON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 4 inches; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; slightly hard, friable; many fine and medium roots; few worm casts; few small caliche fragments; violent effervescence; moderately alkaline; clear smooth boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--4 to 8 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; weak fine and medium granular structure; slightly hard, friable; common fine and medium roots; few worm casts; many 1/4- to 1 1/2-inch caliche fragments; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--8 to 13 inches; white (10YR 8/2) loam, light gray (10YR 7/2) moist; massive; hard, friable; few fine roots; many small to large caliche fragments; violent effervescence; moderately alkaline; abrupt wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/C/CANNING.json b/inst/extdata/OSD/C/CANNING.json index 790aa5128c..66f7ec8669 100644 --- a/inst/extdata/OSD/C/CANNING.json +++ b/inst/extdata/OSD/C/CANNING.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--18 to 30 inches; pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; weak coarse subangular blocky structure; hard, friable; many fine and medium soft accumulations of carbonates; strong effervescence; moderately alkaline; abrupt wavy boundary. (3 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--30 to 60 inches; multicolored stratified loose sand and gravel with numerous fine shale chips; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CANYON.json b/inst/extdata/OSD/C/CANYON.json index 81e6bf17b9..1b10583b81 100644 --- a/inst/extdata/OSD/C/CANYON.json +++ b/inst/extdata/OSD/C/CANYON.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--4 to 9 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; weak medium prismatic structure; slightly hard, friable; 5 percent by volume sandstone gravel; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--9 to 16 inches; very pale brown (10YR 8/3) very fine sandy loam, pale brown (10YR 6/3) moist; massive; slightly hard, friable; 10 percent by volume sandstone gravel; strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--16 to 80 inches; very pale brown (10YR 8/3) weakly cemented fine grained sandstone; violent effervescence." diff --git a/inst/extdata/OSD/C/CAPA.json b/inst/extdata/OSD/C/CAPA.json index bd280c3cf0..28b66d286c 100644 --- a/inst/extdata/OSD/C/CAPA.json +++ b/inst/extdata/OSD/C/CAPA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn2--10 to 28 centimeters (4 to 11 inches); dark grayish brown (2.5Y 4/2) clay, very dark grayish brown (2.5Y 3/2) moist; moderate medium and coarse subangular blocky structure; very hard, very firm, very sticky and very plastic; many roots; few faint clay films on faces of peds; slight effervescence; slightly alkaline; clear wavy boundary. [Combined Btn horizons 10 to 38 centimeters (4 to 15 inches) thick.]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btnkyz--28 to 38 centimeters (11 to 15 inches); grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate medium and coarse subangular blocky structure; very hard, very firm, very sticky and very plastic; common roots; few faint clay films on faces of peds; common fine accumulations of carbonate; few fine accumulations of gypsum and other salts; strong effervescence; moderately alkaline; gradual wavy boundary. [0 to 36 centimeters (0 to 14 inches) thick.]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyz1--38 to 61 centimeters (15 to 24 inches); grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium and coarse subangular blocky structure; hard, firm, very sticky and plastic; common roots; common fine accumulations of carbonate; many fine accumulations of gypsum and other salts; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyz2--61 to 79 centimeters (24 to 31 inches); grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium and coarse subangular blocky structure; hard, firm, very sticky and plastic; few roots; common fine accumulations of carbonate; many fine accumulations of gypsum and other salts; strong effervescence; moderately alkaline; gradual wavy boundary. [Combined Bkyz horizons 13 to 66 centimeters (5 to 26 inches) thick.]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cky--79 to 152 centimeters (31 to 60 inches); grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; massive; hard, firm, very sticky and plastic; common fine accumulations of carbonate; many fine nests of gypsum; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CARBENGLE.json b/inst/extdata/OSD/C/CARBENGLE.json index c2fa0d1170..3e7d275243 100644 --- a/inst/extdata/OSD/C/CARBENGLE.json +++ b/inst/extdata/OSD/C/CARBENGLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 18 cm (0 to 7 in); very dark gray (10YR 3/1) clay loam, black (10YR 2/1), moist; weak fine granular structure; hard, friable; many fine roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A2--18 to 30 cm (7 to 12 in); very dark gray (10YR 3/1) clay loam, black (10YR 2/1), moist; weak fine subangular blocky structure; hard, friable; many fine roots; many fine pores; violent effervescence, ; moderately alkaline; abrupt wavy boundary. (Combined thickness of the A horizon is 18 to 46 cm [7 to 18 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--30 to 58 cm (12 to 23 in); light gray (10YR 7/2) loam, light gray (10YR 7/2), moist; moderate fine and medium subangular blocky structure; hard, very friable; common fine roots; common fine pores; common carbonate masses; violent effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--58 to 86 cm (23 to 34 in); very pale brown (10YR 8/2) loam, light gray (10YR 7/2), moist; weak fine and medium subangular blocky structure; hard, very friable; common fine roots; common fine pores; 30 percent carbonate masses and common carbonate concretions; violent effervescence; moderately alkaline; abrupt wavy boundary. (Combined thickness of the Bk horizon is 18 to 46 cm [7 to 18 in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--86 to 152 cm (34 to 60 in); weakly cemented calcareous sandstone bedrock; structureless massive; weakly cemented; violent effervescence; interbedded with loamy materials; moderately alkaline." diff --git a/inst/extdata/OSD/C/CARGILL.json b/inst/extdata/OSD/C/CARGILL.json index dad0bddf4d..4ec6f45eab 100644 --- a/inst/extdata/OSD/C/CARGILL.json +++ b/inst/extdata/OSD/C/CARGILL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Ap--0 to 6 inches; grayish-brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) when moist; moderate, fine, granular structure; hard, very friable, sticky and slightly plastic; common fine and very fine roots; weakly effervescent; moderately alkaline (pH 8.3); abrupt, smooth boundary. 4 to 6 inches thick." diff --git a/inst/extdata/OSD/C/CARHART.json b/inst/extdata/OSD/C/CARHART.json index e37b699c31..a6ea1914ce 100644 --- a/inst/extdata/OSD/C/CARHART.json +++ b/inst/extdata/OSD/C/CARHART.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Crtk--30 inches, (76 cm); Moderately cemented volcanic sandstone bedrock; 15 percent clay films; 15 percent carbonate masses in cracks; slight effervescence, by HCl, 1 normal; moderately alkaline, pH 8.5 by Hellige-Truog." diff --git a/inst/extdata/OSD/C/CARLOS.json b/inst/extdata/OSD/C/CARLOS.json index 28f9e19750..afdaa28c62 100644 --- a/inst/extdata/OSD/C/CARLOS.json +++ b/inst/extdata/OSD/C/CARLOS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Oa--0 to 6 inches; very dark gray (10YR 3/1, broken face and rubbed) sapric material about 15 percent fibers, 5 percent rubbed; massive; nonsticky; herbaceous fibers; few snail shells; about 50 percent mineral material; violent effervescence; neutral (pH 7.3 in 0.01 molar calcium chloride); clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Lca--6 to 12 inches; gray (10YR 5/1), and grayish brown (10YR 5/2, broken face), grayish brown (10YR 5/2 rubbed) marl; massive; nonsticky; about 70 percent mineral material; few thin sapric-like layers in lower part; few snail shells; about 10 percent plant detritus; violent effervescence; neutral; (pH 7.3 in 0.01 molar calcium chloride); clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Oe--12 to 60 inches; very dark grayish brown (10YR 3/2, broken face and rubbed) hemic material; about 40 percent fibers, 15 percent rubbed, massive; nonsticky; herbaceous fibers; about 35 percent mineral material; trace of snail shells; strong effervescence; neutral (pH 7.2 in 0.01 molar calcium chloride)." diff --git a/inst/extdata/OSD/C/CARLSON.json b/inst/extdata/OSD/C/CARLSON.json index 89ee4e4c8f..2c63158fff 100644 --- a/inst/extdata/OSD/C/CARLSON.json +++ b/inst/extdata/OSD/C/CARLSON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk--18 to 23 inches; grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; hard, firm; few fine roots; few open pores; common carbonate concretions and soft masses of carbonates; slight effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--23 to 60 inches; very pale brown (10YR 8/3) clay loam, light yellowish brown (10YR 6/4) moist; weak coarse prismatic structure; hard, friable; common open pores; few soft white masses of carbonates; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CARMEL.json b/inst/extdata/OSD/C/CARMEL.json index 96e4ce676a..128da23cda 100644 --- a/inst/extdata/OSD/C/CARMEL.json +++ b/inst/extdata/OSD/C/CARMEL.json @@ -181,7 +181,7 @@ "cf_class": "flaggy", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC--36 to 44 inches; pale olive (5Y 6/4) and olive yellow (2.5Y 6/6) flaggy clay; weak platy rock structure; extremely firm; few dark brown (7.5YR 4/4) clay films along old fracture lines; 40 percent limestone flagstones; violent effervescence; moderately alkaline. (0 to 16 inches thick)" diff --git a/inst/extdata/OSD/C/CARON.json b/inst/extdata/OSD/C/CARON.json index f2160500ef..9ebb66302b 100644 --- a/inst/extdata/OSD/C/CARON.json +++ b/inst/extdata/OSD/C/CARON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--46 to 60 inches; very dark brown (10YR 2/2) broken face coprogenous earth, black (10YR 2/1) rubbed; weak fine subangular blocky structure; slightly plastic; about 20 percent plant detritus; about 50 percent mineral material; slight effervescence; mildly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--60 to 84 inches; very dark brown (10YR 2/2) broken face coprogenous earth, black (10YR 2/1) rubbed; massive; slightly plastic; about 10 percent plant detritus; about 60 percent mineral material; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/C/CARP_LAKE.json b/inst/extdata/OSD/C/CARP_LAKE.json index 64e8e17d5c..857bff8da5 100644 --- a/inst/extdata/OSD/C/CARP_LAKE.json +++ b/inst/extdata/OSD/C/CARP_LAKE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BC--74 to 91 centimeters; reddish brown (2.5YR 4/4) silty clay loam; weak coarse angular blocky structure; firm; very few patchy prominent gray (7.5YR 6/1) carbonate coats on bottom faces of peds and few patchy faint reddish brown (2.5YR 4/4) silt coats on bottom faces of peds; few medium prominent pinkish gray (5YR 7/2) carbonate masses; about 2 percent gravel; slight effervescence; neutral (pH 7.3); gradual smooth boundary. (0 to 38 centimeters thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--91 to 203 centimeters; reddish brown (2.5YR 4/4) silty clay loam; massive; very firm; few medium prominent pinkish gray (5YR 7/2) carbonate masses; about 3 percent gravel; strong effervescence; strongly alkaline (pH 8.6). (38 to 127 centimeters thick)" diff --git a/inst/extdata/OSD/C/CARR.json b/inst/extdata/OSD/C/CARR.json index 61608bc0bb..08d61c3224 100644 --- a/inst/extdata/OSD/C/CARR.json +++ b/inst/extdata/OSD/C/CARR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 31 centimeters (0 to 12 inches); dark grayish brown (10YR 4/2) fine sandy loam, light brownish gray (10YR 6/2) dry; weak medium granular structure; soft, very friable, slightly sticky and slightly plastic; slight effervescence; slightly alkaline, clear smooth boundary. [8 to 46 centimeters thick (3 to 18 inches)]." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--31 to 127 centimeters (12 to 50 inches); grayish brown (10YR 5/2) fine sandy loam, light brownish gray (10YR 6/2) dry; weak medium granular structure in the upper part and massive in the lower part; soft, very friable; thin stratified layers of finer textured and coarser textured materials are throughout the horizon; strong effervescence; moderately alkaline; clear smooth boundary. [51 to 122 centimeters thick (20 to 48 inches)]." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--127 to 203 centimeters (50 to 80 inches); pale brown (10YR 6/3) fine sand, light gray (10YR 7/2) dry; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CARRETA.json b/inst/extdata/OSD/C/CARRETA.json index 93a573f0bb..83b38afdd6 100644 --- a/inst/extdata/OSD/C/CARRETA.json +++ b/inst/extdata/OSD/C/CARRETA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btknyz1--54 to 79 cm (21 to 31 in); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; very hard, extremely firm; few very fine tubular pores; 15 percent faint clay films; 1 percent fine gypsum crystals; 1 percent fine threadlike salt masses; 1 percent fine carbonate nodules; EC of 10.4 dS/m; SAR of 18.0; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btknyz2--79 to 97 cm (31 to 38 in); gray (10YR 5/1) clay, dark gray (10YR 4/1) moist; weak coarse prismatic structure parting to weak medium subangular blocky; extremely hard, very firm; 15 percent faint clay films; 1 percent fine gypsum crystals; 1 percent fine threadlike salt masses; 1 percent fine carbonate nodules; EC of 10.8 dS/m; SAR of 19.0; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined thickness of the Btknyz horizon is 23 to 152 cm [9 to 60 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkny1--97 to 125 cm (38 to 49 in); grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; extremely hard, very firm; 8 percent faint clay films; 1 percent fine gypsum crystals; 1 percent fine carbonate nodules; EC of 9.1 dS/m; SAR of 20.0; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkny2--125 to 170 cm (49 to 67 in); very pale brown (10YR 7/3) clay, very pale brown (10YR 8/3) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; extremely hard, very firm; 5 percent faint clay films; 1 percent fine gypsum crystals; 1 percent fine carbonate nodules; EC of 8.7 dS/m; SAR of 18.0; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Btkny horizon is 56 to 140 cm [22 to 55 in])" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btkny3--170 to 214 cm (67 to 84 in); light gray (2.5Y 7/2) clay, pale yellow (2.5Y 8/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; extremely hard, very firm; 2 percent faint clay films; 1 percent fine gypsum crystals; 1 percent fine carbonate nodules; EC of 8.6 dS/m; SAR of 14.0; violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CARTER.json b/inst/extdata/OSD/C/CARTER.json index d23ed35728..f94caa76e3 100644 --- a/inst/extdata/OSD/C/CARTER.json +++ b/inst/extdata/OSD/C/CARTER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--11 to 13 inches; dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; weak medium prismatic structure parting to moderate medium blocky; extremely hard, extremely firm, very sticky and very plastic; shiny surfaces on faces of peds; tongues of dark gray (10YR 4/1) soil material; slight effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt3--13 to 22 inches; grayish brown (10YR 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium blocky structure; extremely hard, extremely firm, very sticky and very plastic; shiny surfaces on faces of peds; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined Bt horizons 8 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--22 to 34 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium blocky structure; extremely hard, extremely firm, very sticky and very plastic; few fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (8 to 25 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--34 to 60 inches; light brownish gray (2.5Y 6/2) silty clay, grayish brown (2.5Y 5/2) moist; massive; very hard, firm, sticky and plastic; common fine nests of salt; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CARTHAGE.json b/inst/extdata/OSD/C/CARTHAGE.json index 9ef29742d3..b4515dabc0 100644 --- a/inst/extdata/OSD/C/CARTHAGE.json +++ b/inst/extdata/OSD/C/CARTHAGE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Ck--32 to 40 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; common fine and medium prominent yellowish brown (10YR 5/4) and (10YR 5/6) redox concentrations; massive; slightly hard, friable; few fine dark concretions (Fe and Mn oxides); common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--40 to 60 inches; light brownish gray (2.5Y 6/2) and light gray (2.5Y 7/2) clay loam, grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) moist; fine and medium prominent of yellowish brown (10YR 5/4) and (10YR 5/6) redox concentrations; massive; slightly hard, friable; few fine dark concretions (Fe and Mn oxides); few fine accumulations of carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CARUSO.json b/inst/extdata/OSD/C/CARUSO.json index 92c6a773e9..3bdc3952d4 100644 --- a/inst/extdata/OSD/C/CARUSO.json +++ b/inst/extdata/OSD/C/CARUSO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 4 inches; gray (10YR 5/1) loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium granular structure; slightly hard, friable; many fine roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--4 to 18 inches; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium granular structure; slightly hard, friable; numerous worm casts; many fine roots; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the A horizon is 7 to 20 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--18 to 33 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; few fine faint brown redoximorphic features in lower 6 inches; weak fine granular structure; slightly hard, friable; few thin strata of grayish brown (10YR 5/2); few fine roots; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C2--33 to 44 inches; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; few fine faint gray and brown redoximorphic features; massive but porous; hard, friable; few thin strata of light brownish gray (10YR 6/2); few fine roots; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--44 to 60 inches; light brownish gray (10YR 6/2) loam, grayish brown (10YR 5/2) moist; common faint fine yellowish brown redoximorphic features; massive; with few thin strata of sandy loam; hard, friable; few fine roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CARUTHERS.json b/inst/extdata/OSD/C/CARUTHERS.json index 90133931c7..87c4a8e0cb 100644 --- a/inst/extdata/OSD/C/CARUTHERS.json +++ b/inst/extdata/OSD/C/CARUTHERS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--67 to 109 cm (26 to 43 inches); yellowish brown (10YR 5/4) sandy clay loam, brown (7.5YR 5/4), moist; moderate coarse subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots throughout; few very fine irregular pores; 75 percent distinct brown (7.5YR 5/4), dry, clay bridges between sand grains and 90 percent prominent very pale brown (10YR 8/2), dry, carbonate coats on rock fragments; 7 percent fine gravel, 3 percent medium and coarse gravel; slight effervescence; moderately alkaline (pH 8.4); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk2--109 to 122 cm (43 to 48 inches); pale brown (10YR 6/3) gravelly sandy loam, light yellowish brown (10YR 6/4), moist; moderate coarse subangular blocky structure; slightly hard, very friable, moderately sticky and moderately plastic; few very fine roots throughout; few very fine irregular pores; 3 percent prominent very pale brown (10YR 8/2), dry, carbonate coats on surfaces along root channels and 75 percent prominent light brown (7.5YR 6/4), dry, clay bridges between sand grains and 90 percent prominent very pale brown (10YR 8/2), dry, carbonate coats on rock fragments; 23 percent fine gravel, 7 percent medium and coarse gravel; slight effervescence; strongly alkaline (pH 8.7); abrupt wavy boundary. (The combined thickness of the Btk horizons is 20 to 71 cm.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkkq--122 to 155 cm (48 to 61 inches); white (10YR 8/1) cemented sandy loam, very pale brown (10YR 7/3), moist; massive; very hard, very firm, weakly coherent by carbonates, slightly sticky and nonplastic; 20 percent faint very pale brown (10YR 8/3), dry, silica coats on concretions; 5 percent coarse faint platy strongly coherent cemented white (10YR 8/1), dry, carbonate nodules with sharp boundaries at top of horizon; 4 percent fine gravel, 1 percent medium and coarse gravel; violent effervescence (40 percent calcium carbonate equivalence in the fine earth fraction); moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/C/CARUTHERSVILLE.json b/inst/extdata/OSD/C/CARUTHERSVILLE.json index b1f8e89dff..098993ff82 100644 --- a/inst/extdata/OSD/C/CARUTHERSVILLE.json +++ b/inst/extdata/OSD/C/CARUTHERSVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 11 inches; dark grayish brown (2.5Y 4/2) very fine sandy loam, light brownish gray (2.5Y 6/2) dry; weak fine granular structure; very friable; common worm casts; common fine roots; slight effervescence; moderately alkaline; clear smooth boundary. (5 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--11 to 17 inches; dark grayish brown (10YR 4/2) very fine sandy loam; few fine faint grayish brown (10YR 5/2) mottles; very weak fine subangular blocky structure; very friable; few fine roots; common worm casts and fine pores; slight effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--17 to 24 inches; brown (10YR 4/3) very fine sandy loam; few fine faint brown (7.5YR 4/4) and grayish brown (10YR 5/2) mottles; massive, with fine bedding planes; very friable; few fine roots; common fine pores and worm casts; slight effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--24 to 49 inches; thinly stratified brown (10YR 4/3) and dark grayish brown (2.5Y 4/2) very fine sandy loam; few fine faint brown (7.5YR 4/4) and grayish brown (10YR 5/2) mottles; massive with thin platy bedding planes; very friable; few fine roots and pores; a thin lens (less than 1 inch thick) of fine sand at 46 inches; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C4--49 to 53 inches; brown (10YR 5/3) fine sand; single grained; loose; slight effervescence; moderately alkaline; abrupt smooth boundary. (Combined thickness of the C horizons is 35 to 60 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--53 to 60 inches; gray (5Y 5/1) and dark gray (5Y 4/1) very fine sandy loam; common fine distinct brown (7.5YR 4/4) mottles; massive; stratified with thin platy bedding planes; very friable; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--60 to 80 inches; dark grayish brown (10YR 4/2) silt loam; few fine distinct gray (N 5/) mottles; stratified with thin platy bedding planes; friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CARVILLE.json b/inst/extdata/OSD/C/CARVILLE.json index f33ce437eb..6f708c07b0 100644 --- a/inst/extdata/OSD/C/CARVILLE.json +++ b/inst/extdata/OSD/C/CARVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 15 cm (0 to 6 inches); dark grayish brown (10YR 4/2), silt loam; weak medium granular structure; very friable, slightly sticky, nonplastic; many fine roots throughout; very slight effervescence, by HCl, 1 normal; moderately alkaline; clear smooth boundary. (10 to 20 cm (4 to 8 in) thick))" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--15 to 33 cm (6 to 13 inches); grayish brown (10YR 5/2) silt loam; weak fine subangular blocky structure; very friable, slightly sticky, nonplastic; many fine roots throughout; common fine high continuity tubular pores; 5 percent faint organic stains throughout; 15 percent fine distinct dark yellowish brown (10YR 4/4) and dark yellowish brown (10YR 3/4) irregular masses of oxidized iron on faces of peds; slight effervescence, by HCl, 1 normal; strongly alkaline; abrupt smooth boundary. (0 to 20 cm thick (0 to 8 in))" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--33 to 48 cm (13 to 19 inches); grayish brown (10YR 5/2) and brown (10YR 5/3), stratified silt loam; weak fine platy structure; very friable, slightly sticky, nonplastic; many fine roots throughout; common fine high continuity tubular pores; 8 percent fine distinct dark yellowish brown (10YR 4/4) irregular masses of oxidized iron throughout; 2 percent fine prominent brown (7.5YR 4/4) dendritic masses of oxidized iron lining pores; 2 percent medium distinct irregular dark gray (2.5Y 4/1) iron depletions throughout; 1 percent fine worm casts; slight effervescence by HCl, 1 normal; moderately alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--48 to 71 cm (19 to 28 inches); brown (10YR 5/3) silt loam; weak fine platy structure; very friable, slightly sticky, nonplastic; common fine roots throughout; common fine high continuity tubular and few medium high continuity tubular pores; 15 percent fine and medium faint light brownish gray (10YR 6/2) platy iron depletions along lamina or strata faces; 5 percent fine distinct brown (7.5YR 4/4) dendritic masses of oxidized iron lining pores; very slight effervescence, by HCl, 1 normal; moderately alkaline; abrupt wavy boundary." diff --git a/inst/extdata/OSD/C/CARWAY.json b/inst/extdata/OSD/C/CARWAY.json index 5d54029727..12fc886863 100644 --- a/inst/extdata/OSD/C/CARWAY.json +++ b/inst/extdata/OSD/C/CARWAY.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "noneffervescentt", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btb4--63 to 72 inches (160 to 183 centimeters); gray (5Y 6/1), interior, clay loam, light gray (5Y 7/2), interior, dry; weak medium prismatic structure parting to weak fine and medium angular blocky; extremely hard, very firm, moderately sticky and moderately plastic; 37 percent clay; few faint discontinuous clay films on vertical and horizontal faces of peds and few faint discontinuous pressure faces on vertical faces of peds; many medium irregular reddish brown (5YR 5/4) masses of iron accumulation throughout and common fine and medium irregular black (7.5YR 2/1) masses of iron-manganese accumulation throughout; noneffervescentthroughout (HCl, 1 normal); slightly alkaline, gradual wavy boundary. (combined thickness of the 2Bt horizons is 14 to 50 inches; 36 to 127 centimeters thick)" diff --git a/inst/extdata/OSD/C/CASA_GRANDE.json b/inst/extdata/OSD/C/CASA_GRANDE.json index 3633c87952..5b48a7bf73 100644 --- a/inst/extdata/OSD/C/CASA_GRANDE.json +++ b/inst/extdata/OSD/C/CASA_GRANDE.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2BCknz2--46 to 60 inches (115 to 150 cm); light brown (7.5YR 6/4) sandy clay loam, brown (7.5YR 5/4) moist; weak medium subangular blocky structure; hard, firm, sticky and plastic; few very fine irregular pores; many coarse and very coarse, soft, rounded accumulations of carbonate; dominantly violently effervescent with spots that are noneffervescent (17 percent calcium carbonate equivalent); moderately alkaline (pH 8.4); strongly saline (ECe 29 dS/m) and strongly sodic (SAR 29)." diff --git a/inst/extdata/OSD/C/CASCABEL.json b/inst/extdata/OSD/C/CASCABEL.json index 4c16c9b15e..93bb923f96 100644 --- a/inst/extdata/OSD/C/CASCABEL.json +++ b/inst/extdata/OSD/C/CASCABEL.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--1 to 4 inches; light brown (7.5YR 6/4) silt loam brown (7.5YR 5/4) moist; moderate thin platy structure; soft, very friable, nonsticky and nonplastic; many very fine and fine roots; common fine tubular pores; violent effervescence; slightly alkaline (pH 7.8); abrupt smooth boundary. (1 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--4 to 29 inches; brown (7.5YR 5/3) sand, brown (7.5YR 4/3) moist; single grain; loose, nonsticky and nonplastic; many very fine, fine, and medium roots; common fine interstitial pores; 5 percent fine and medium gravel; few thin strata of gravelly sand; slight effervescence; moderately alkaline (pH 8.0); abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--29 to 49 inches; brown (7.5YR 5/3) very gravelly coarse sand, brown (7.5YR 4/4) moist; single grain; loose, nonsticky and nonplastic; few very fine roots; common fine interstitial pores; 15 percent fine, 25 percent medium, and 4 percent large gravel; few thin strata (1 to 6 inches thick not continuous) silt loam with many distinct strong brown (7.5YR 5/8) redox concentrations as fine soft iron masses and linings along root channels; common organic stains on ped faces; slight effervescence; moderately alkaline (pH 8.0); clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C3--49 to 58 inches; brown (7.5YR 5/3) coarse sand, brown (7.5YR 4/4) moist; single grain; loose, nonsticky and nonplastic; few fine and coarse roots; common fine interstitial pores; 10 percent medium and large gravel; strong effervescence; moderately alkaline (pH 8.0); clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--58 to 70 inches; brown (7.5YR 5/3) coarse sand, dark brown (7.5YR 3/4) moist; single grain; loose, nonsticky and nonplastic; few fine and coarse roots; common fine interstitial pores; 5 percent fine and medium gravel; strong effervescence; moderately alkaline (pH 8.0). (Combined thickness of the C horizons is greater than 60 inches)" diff --git a/inst/extdata/OSD/C/CASE.json b/inst/extdata/OSD/C/CASE.json index 94752a8c31..856104ce08 100644 --- a/inst/extdata/OSD/C/CASE.json +++ b/inst/extdata/OSD/C/CASE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; pale brown (10YR 6/3) clay loam, brown (10YR 4/3) moist; moderate medium granular structure; hard, friable; common coarse somewhat rounded white carbonate concretions; slight effervescence; mildly alkaline; abrupt smooth boundary. (3 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--6 to 20 inches; very pale brown (10YR 7/3) clay loam, brown (10YR 5/3) moist; moderate medium subangular blocky structure; hard, friable; many coarse to extremely coarse somewhat rounded calcium carbonate concretions that crumble to medium and coarse fragments, some with irregular hard centers; few soft accumulations of calcium carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (12 to 24 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--20 to 35 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; weak coarse subangular blocky structure; very hard, friable; common medium and coarse somewhat rounded calcium carbonate concretions that crumble to medium fragments, some with irregular hard centers; common soft accumulations of calcium carbonates on faces of peds, few small accumulations of salt crystals; strong effervescence; moderately alkaline; gradual smooth boundary. (10 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--35 to 60 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; massive; very hard, friable; few medium somewhat rounded calcium carbonate concretions with hard centers; few soft masses of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CASHEL.json b/inst/extdata/OSD/C/CASHEL.json index 3bb39cbe5a..1863578e61 100644 --- a/inst/extdata/OSD/C/CASHEL.json +++ b/inst/extdata/OSD/C/CASHEL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) silty clay, dark gray (10YR 4/1) dry; strong fine subangular blocky structure; hard, friable, sticky and plastic; few fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--7 to 29 inches; very dark grayish brown (2.5Y 3/2) and olive (5Y 4/3) silty clay, grayish brown (2.5Y 5/2) and pale olive (5Y 6/3) dry; common fine prominent dark reddish brown (5YR 3/4) redoximorphic concentrations; weak medium platy structure parting to moderate fine granular; hard, friable, sticky and very plastic; few fine roots; strata of silty clay loam and silty clay 1/2 to 1 inch thick; few fine masses of carbonates in the lower part; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ab--29 to 35 inches; very dark gray (5Y 3/1) silty clay, gray (5Y 5/1) dry; few fine prominent strong brown (7.5YR 5/6) redoximorphic concentrations; moderate medium granular structure; very hard, firm, very sticky and very plastic; few fine masses of carbonates; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C'--35 to 47 inches; olive gray (5Y 4/2) silty clay loam, light olive gray (5Y 6/2) dry; few fine prominent strong brown (7.5YR 5/6) and light olive brown (2.5Y 5/6) redoximorphic concentrations; massive; hard, firm, sticky and very plastic; few fine masses of carbonates; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A'b--47 to 60 inches; black (N 2/0) silty clay, dark gray (N 4/0) dry; few fine prominent dark reddish brown (5YR 3/4) redoximorphic concentrations; massive; extremely hard, very firm, very sticky and very plastic; few fine masses of carbonates; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CASTELLO.json b/inst/extdata/OSD/C/CASTELLO.json index bad338dc77..fc4eb4736b 100644 --- a/inst/extdata/OSD/C/CASTELLO.json +++ b/inst/extdata/OSD/C/CASTELLO.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--0 to 3 inches; pinkish gray (7.5YR 6/2) gravelly sandy loam, brown (7.5YR 4/2) moist; moderate fine granular structure; slightly hard, very friable, slightly sticky, slightly plastic; many fine roots; 25 percent gravel; slight effervescence; moderately alkaline (pH 8.0); clear wavy boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--3 to 9 inches; pinkish gray (7.5YR 6/2) gravelly sandy loam, brown (7.5YR 4/2) moist; weak medium and fine subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; many fine roots; 25 percent gravel; strong effervescence; moderately alkaline (pH 8.2); clear wavy boundary. (3 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Clca--9 to 33 inches; Pinkish white (7.5YR 8/2) gravelly sandy loam, pinkish gray (7.5YR 7/2) moist; weak very fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; few fine and medium roots; 25 percent gravel; violent effervescence; lime mainly disseminated and as thin coatings on gravel; strongly alkaline (pH 8.2); clear wavy boundary. (15 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2ca--33 to 60 inches; Light gray (10YR 7/2) gravelly sandy loam, brown (10YR 5/3) moist; massive; soft, very friable, slightly sticky, nonplastic; 25 percent gravel; strong effervescence; lime mainly disseminated and as thin coatings on the gravel." diff --git a/inst/extdata/OSD/C/CASTEPHEN.json b/inst/extdata/OSD/C/CASTEPHEN.json index b6c1143a4b..a7ab7420e4 100644 --- a/inst/extdata/OSD/C/CASTEPHEN.json +++ b/inst/extdata/OSD/C/CASTEPHEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 20 cm (0 to 8 in); brown (7.5YR 4/2) silty clay, dark brown (7.5YR 3/2) moist; moderate fine granular and moderate fine subangular blocky structure; hard, firm; common fine roots; few fine chalk fragments; violent effervescence; moderately alkaline; clear smooth boundary. (15 to 51 cm [6 to 20 in] thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--20 to 41 cm (8 to 16 in); brown (7.5YR 4/2) silty clay, dark brown (7.5YR 3/2) moist; moderate fine subangular blocky structure; hard, firm; few fine roots; common fine chalk fragments from 0.4 to 8 cm (1/8 to 3 in) in diameter; violent effervescence; moderately alkaline; abrupt smooth boundary. (0 to 25 cm [0 to 10 in] thick)" diff --git a/inst/extdata/OSD/C/CASTLEWOOD.json b/inst/extdata/OSD/C/CASTLEWOOD.json index 9b835a3535..85cc1252fb 100644 --- a/inst/extdata/OSD/C/CASTLEWOOD.json +++ b/inst/extdata/OSD/C/CASTLEWOOD.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg--55 to 60 inches; olive gray (5Y 4/2) silty clay loam, light olive gray (5Y 6/2) dry; common fine and medium prominent dark yellowish brown (10YR 4/4) mottles; moderate coarse subangular blocky structure; hard, firm, slightly sticky and slightly plastic; common fine accumulations of calcium carbonate; few fine iron and manganese oxide accumulations; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/C/CATCHELL.json b/inst/extdata/OSD/C/CATCHELL.json index 7f84622599..94dccb9b72 100644 --- a/inst/extdata/OSD/C/CATCHELL.json +++ b/inst/extdata/OSD/C/CATCHELL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Btk--43 to 69 cm; pale brown (10YR 6/3) clay, brown (10YR 4/3) moist; weak fine and medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few very fine roots; common very fine tubular pores; few faint clay films on faces of peds and in pores; carbonates in masses on faces of peds; strong effervescence (about 10 percent calcium carbonate); moderately alkaline (pH 8.2); clear smooth boundary. (0 to 30 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bk--69 to 79 cm; pale brown (10YR 6/3) loam, brown (10YR 4/3) moist; moderate very fine and fine angular blocky structure; hard, firm, slightly sticky and slightly plastic; few very fine and fine roots; few very fine tubular pores; common medium segregated soft lime masses; violent effervescence (about 30 percent calcium carbonate); moderately alkaline (pH 8.4); abrupt wavy boundary. (8 to 15 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "3Bkqm--79 to 81 cm; very pale brown (10YR 8/2) continuous indurated duripan, very pale brown (10YR 8/3) moist; strong medium plates; very hard, very firm; violent effervescence; abrupt wavy boundary. (3 to 13 cm thick)" diff --git a/inst/extdata/OSD/C/CATFISHBAY.json b/inst/extdata/OSD/C/CATFISHBAY.json index a51bb5f372..9b1c6a32ba 100644 --- a/inst/extdata/OSD/C/CATFISHBAY.json +++ b/inst/extdata/OSD/C/CATFISHBAY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 5 centimeters (0 to 2 inches); light brown (7.5YR 6/4) sandy loam, brown (7.5YR 4/4) moist; weak thick platy structure; slightly hard, very friable, slightly sticky and nonplastic; common very fine interstitial and many very fine vesicular pores; 5 percent fine gravel and 5 percent medium and coarse gravel; violent effervescence; moderately alkaline (pH 8.2); abrupt wavy boundary. (2 to 7 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btkq1--5 to 49 centimeters (2 to 19 inches); light brown (7.5YR 6/4) sandy loam, strong brown (7.5YR 4/6) moist; weak very coarse subangular blocky structure; moderately hard, very friable, slightly sticky and slightly plastic; few very fine roots; few fine tubular and many very fine interstitial pores; 2 percent faint strong brown (7.5YR 5/6), dry, clay films between sand grains and 2 percent faint strong brown (7.5YR 5/6), dry, clay films on rock fragments and 2 percent faint brownish yellow (10YR 6/6), dry, silica on bottom surfaces of rock fragments; 10 percent coarse prominent irregular white (10YR 8/1), dry, carbonate masses with sharp boundaries in soil matrix; 2 percent fine gravel and 3 percent medium and coarse gravel; violent effervescence; moderately alkaline (pH 8.2); clear smooth boundary. (40 to 90 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btkq2--49 to 76 centimeters (19 to 30 inches); brown (7.5YR 5/4) sand, strong brown (7.5YR 4/6) moist; weak very coarse subangular blocky structure; moderately hard, very friable, nonsticky and nonplastic; few fine tubular and many very fine interstitial pores; 2 percent faint strong brown (7.5YR 5/6), dry, clay films between sand grains and 2 percent faint strong brown (7.5YR 5/6), dry, clay films on rock fragments and 2 percent faint brownish yellow (10YR 6/6), dry, silica on bottom surfaces of rock fragments; 5 percent medium prominent irregular white (10YR 8/1), dry, carbonate masses with sharp boundaries in soil matrix; 5 percent fine gravel and 5 percent medium and coarse gravel; violent effervescence; moderately alkaline (pH 8.0); abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btkq3--76 to 114 centimeters (30 to 45 inches); brown (7.5YR 5/4) gravelly sand, brown (7.5YR 4/4) moist; weak very coarse subangular blocky structure; moderately hard, very friable, nonsticky and nonplastic; few fine tubular and many very fine interstitial pores; 2 percent faint strong brown (7.5YR 5/6), dry, clay films between sand grains and 2 percent faint strong brown (7.5YR 5/6), dry, clay films on rock fragments and 2 percent faint brownish yellow (10YR 6/6), dry, silica on bottom surfaces of rock fragments; 1 percent fine prominent threadlike white (10YR 8/1), dry, carbonate masses with clear boundaries on surfaces along pores; 5 percent fine gravel and 15 percent medium and coarse gravel; violent effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkq--114 to 150 centimeters (45 to 59 inches); pale brown (10YR 6/3) gravelly sand, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common fine interstitial and many very fine interstitial pores; 2 percent faint brownish yellow (10YR 6/6), dry, silica on bottom surfaces of rock fragments; 10 percent very coarse prominent irregular very pale brown (10YR 7/3), dry, carbonate masses with diffuse boundaries in soil matrix; 10 percent fine gravel and 20 percent medium and coarse gravel; violent effervescence; moderately alkaline (pH 8.0). (Combined thickness of the lower B horizons is 50 to 110 centimeters.)" diff --git a/inst/extdata/OSD/C/CATHAY.json b/inst/extdata/OSD/C/CATHAY.json index 99e8a28d26..bbd259ba1f 100644 --- a/inst/extdata/OSD/C/CATHAY.json +++ b/inst/extdata/OSD/C/CATHAY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--17 to 22 inches; olive brown (2.5Y 4/4) clay loam, light olive brown (2.5Y 5/4) dry; moderate medium and coarse prismatic structure; hard, firm, sticky and plastic; dark grayish brown (2.5Y 4/2) dry faint clay films on faces of prisms; few medium gypsum crystals; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined Bt horizons 6 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky--22 to 32 inches; olive brown (2.5Y 4/4) clay loam, light olive brown (2.5Y 5/4) dry; common coarse distinct light brownish gray (2.5Y 6/2) dry redoximiorphic depletions; weak medium and coarse prismatic structures; hard, friable, sticky and plastic; many gypsum crystals; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 25 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--32 to 60 inches; olive brown (2.5Y 4/4) and very dark grayish brown (2.5Y 3/2) loam, light brownish gray (2.5Y 6/2) and dark grayish brown (2.5Y 4/2) dry; few fine faint yellowish brown (10YR 5/6) dry redoximorphic concentrations; massive; hard, friable, slightly sticky and slightly plastic; violent effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/C/CATICON.json b/inst/extdata/OSD/C/CATICON.json index 9f30b8577c..ddac956fde 100644 --- a/inst/extdata/OSD/C/CATICON.json +++ b/inst/extdata/OSD/C/CATICON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; light brown (7.5YR 6/3) crushed, silty clay, brown 7.5YR 4/4) crushed, moist; 37 percent clay; strong very fine granular structure; moderately sticky, very plastic; many very fine roots throughout; violently effervescence, by HCl, 3 normal; moderately alkaline; clear smooth boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--2 to 8 inches; light brown (7.5YR 6/3) crushed, silty clay, brown (7.5YR 4/4) crushed, moist; 37 percent clay; strong coarse prismatic parts to strong coarse subangular blocky structure; very sticky, very plastic; common very fine roots throughout; violently effervescence, by HCl, 3 normal; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--8 to 22 inches; brown (7.5YR 5/3) crushed, clay, brown (7.5YR 4/4) crushed, moist; 40 percent clay; moderate coarse prismatic structure; very sticky, very plastic; few very fine roots throughout; violently effervescence, by HCl, 3 normal; moderately alkaline; gradual smooth boundary. (Combined thickness of Bw horizons is 15 to 24 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--22 to 35 inches; brown (7.5YR 5/3) crushed, clay, brown (7.5YR 4/4) crushed, moist; 40 percent clay; moderate coarse prismatic structure; very sticky, very plastic; few very fine roots throughout; 10 percent fine irregular carbonate masses throughout; violently effervescence, by HCl, 3 normal; slightly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--35 to 80 inches; light brown (7.5YR 6/3) crushed, clay, brown (7.5YR 5/4) crushed, moist; 40 percent clay; moderate coarse prismatic structure; very sticky, very plastic; 15 percent fine irregular carbonate masses throughout; violently effervescence, by HCl, 3 normal; slightly alkaline." diff --git a/inst/extdata/OSD/C/CAVALRY.json b/inst/extdata/OSD/C/CAVALRY.json index c239ca9dc5..7dc2632768 100644 --- a/inst/extdata/OSD/C/CAVALRY.json +++ b/inst/extdata/OSD/C/CAVALRY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 3 inches; brown (7.5YR 5/4) crushed, loamy fine sand, brown (7.5YR 4/4) crushed, moist; 6 percent clay; single grain; loose, loose, noncemented, nonsticky, nonplastic; few fine roots throughout; 5 percent nonflat rounded 0.1 to 1.0 inch mixed igneous fragments; slight effervescence, by HCl, 1 normal; moderately alkaline, pH 7.9, Phenol red; 2 percent calcium carbonate equivalent; abrupt smooth boundary. (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt--3 to 14 inches; brown (7.5YR 5/4) crushed, fine sandy loam, brown (7.5YR 4/4) crushed, moist; 10 percent clay; weak coarse prismatic structure; very friable, soft, noncemented, nonsticky, nonplastic; few fine roots throughout; few fine tubular pores; 45 percent discontinuous distinct clay bridging between sand grains; 5 percent nonflat rounded 0.1 to 1.0 inch mixed igneous fragments; slight effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0, Phenol red; 3 percent calcium carbonate equivalent; clear smooth boundary. (8 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Btk--14 to 27 inches; brown (7.5YR 5/4) crushed, fine sandy loam, brown (7.5YR 4/4) crushed, moist; 12 percent clay; weak coarse prismatic structure; very friable, soft, noncemented, nonsticky, nonplastic; few fine roots throughout; few fine tubular pores; 45 percent discontinuous distinct clay bridging between sand grains; 3 percent fine irregular weakly cemented carbonate nodules throughout; 5 percent nonflat rounded 0.1 to 1.0 inch mixed igneous fragments; strong effervescence, by HCl, 1 normal; slightly alkaline, pH 7.6, Phenol red; 3 percent calcium carbonate equivalent; abrupt irregular boundary. (10 to 17 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--27 to 48 inches; pink (7.5YR 7/3) crushed, fine sandy loam, pink (7.5YR 7/4) crushed, moist; 14 percent clay; moderate medium subangular blocky structure; friable, very hard, noncemented, slightly sticky, slightly plastic; few fine roots throughout; few fine tubular pores; 85 percent fine irregular carbonate masses throughout; 5 percent nonflat rounded 0.1 to 1.0 inch mixed igneous fragments; violent effervescence, by HCl, 1 normal; slightly alkaline, pH 7.8, Phenol red; 22 percent calcium carbonate equivalent; gradual smooth boundary. (15 to 32 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--48 to 80 inches; pink (7.5YR 7/3) crushed, sandy clay loam, light brown (7.5YR 6/4) crushed, moist; 20 percent clay; moderate medium subangular blocky structure; friable, very hard, noncemented, slightly sticky, slightly plastic; few fine roots throughout; few fine tubular pores; 75 percent fine irregular carbonate masses throughout; 5 percent nonflat rounded 0.1 to 1.0 inches mixed igneous fragments; violent effervescence, by HCl, 1 normal; slightly alkaline, pH 7.8, Phenol red; 16 percent calcium carbonate equivalent." diff --git a/inst/extdata/OSD/C/CAVO.json b/inst/extdata/OSD/C/CAVO.json index 76bcab34d0..5367632d11 100644 --- a/inst/extdata/OSD/C/CAVO.json +++ b/inst/extdata/OSD/C/CAVO.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkz - 19 to 27 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure; very hard, friable, sticky and plastic; few very fine roots; few fine masses of carbonate; few fine nests of salts; about 2 percent rock fragments; strong effervescence; moderately alkaline; gradual smooth boundary. (6 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCkz - 27 to 41 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; massive; very hard, friable, sticky and plastic; few very fine roots; common fine masses of carbonate; common fine nests of salts; about 3 percent rock fragments; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C - 41 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; few fine distinct yellowish brown (10YR 5/6) and very dark brown (10YR 2/2) redox concentrations; massive; very hard, friable, sticky and plastic; few very fine roots; common fine and medium masses of carbonate; few fine nests of salts; about 5 percent rock fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CAVOUR.json b/inst/extdata/OSD/C/CAVOUR.json index 2c111f9da7..0146458122 100644 --- a/inst/extdata/OSD/C/CAVOUR.json +++ b/inst/extdata/OSD/C/CAVOUR.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Byz--24 to 32 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium and coarse subangular blocky structure; very hard, firm, sticky and plastic; common fine and medium accumulations of gypsum and other salts; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--32 to 43 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; common fine distinct of gray (2.5Y 5/1) redox depletions and prominent yellowish brown (10YR 5/6) redox concentrations; massive; hard, firm, sticky and plastic; few to common fine and medium accumulations of gypsum and other salts; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 16 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--43 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; common fine prominent yellowish red (5YR 5/8) and strong brown (7.5YR 5/6) redox concentrations and common medium distinct gray (5Y 5/1) redox depletions; massive; hard, firm, sticky and plastic; few to common fine and medium accumulations of gypsum and other salts; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CEBOYA.json b/inst/extdata/OSD/C/CEBOYA.json index 6a71bfdbde..8f22f14e1c 100644 --- a/inst/extdata/OSD/C/CEBOYA.json +++ b/inst/extdata/OSD/C/CEBOYA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--3 to 26 cm; very dark gray (5Y 3/1) silty clay loam, dark gray (5Y 4/1) dry; weak medium subangular blocky structure; hard, friable, sticky and plastic; many fine, very fine and medium roots; common very fine tubular pores; few fine mica flakes; slightly effervescence; slightly alkaline; clear smooth boundary. (20 to 36 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--26 to 39 cm; very dark grayish brown (2.5Y 3/2) heavy silty clay loam, dark grayish brown (2.5Y 4/2) dry; few fine distinct olive brown (2.5Y 4/4) mottles, reddish brown (2.5YR 5/4) dry; massive; very hard, firm, sticky and very plastic; many fine, very fine and medium roots; common very fine tubular pores; few fine mica flakes; slightly effervescence; slightly alkaline; clear wavy boundary. (0 to 15 cm thick)" diff --git a/inst/extdata/OSD/C/CEDARPASS.json b/inst/extdata/OSD/C/CEDARPASS.json index b0d9c272f9..769913977d 100644 --- a/inst/extdata/OSD/C/CEDARPASS.json +++ b/inst/extdata/OSD/C/CEDARPASS.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--129 to 152 cm; very pale brown (10YR 8/3) stratified silt loam and silty clay loam, pale brown (10YR 6/3) moist; massive; hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CEDAR_BUTTE.json b/inst/extdata/OSD/C/CEDAR_BUTTE.json index f05ce43b14..d6272acaae 100644 --- a/inst/extdata/OSD/C/CEDAR_BUTTE.json +++ b/inst/extdata/OSD/C/CEDAR_BUTTE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkn--12 to 17 inches; light brownish gray (10YR 6/2) and grayish brown (10YR 5/2) clay, grayish brown (10YR 5/2) moist; weak coarse prismatic structure parting to weak medium blocky structure; very hard, very firm, slightly sticky and plastic; shiny film on faces of peds; few medium accumulations of carbonate; strong effervescence; strongly alkaline; gradual smooth boundary. (0 to 17 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--17 to 42 inches; light brownish gray (10YR 6/2) silty clay, grayish brown (10YR 5/2) moist; weak coarse prismatic structure; very hard, very firm, sticky, plastic; few fine accumulations of carbonate; strong effervescence; strongly alkaline; clear smooth boundary. (10 to 35 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2C--42 to 60 inches; pale brown (10YR 6/3) gravelly sand, dark grayish brown (10YR 4/2) moist; single grained; loose both dry and moist; many pebbles coated on underside with carbonate; slight effervescence; abrupt wavy boundary. (0 to 30 inches thick)" diff --git a/inst/extdata/OSD/C/CENTERVILLE.json b/inst/extdata/OSD/C/CENTERVILLE.json index 70f283bf4d..f72d923e69 100644 --- a/inst/extdata/OSD/C/CENTERVILLE.json +++ b/inst/extdata/OSD/C/CENTERVILLE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkss1--18 to 23 inches; brown (7.5YR 4/2) clay, dark brown (7.5YR 3/2) moist; few spots of reddish brown (5YR 5/4) moist; massive; very hard, firm, very sticky and very plastic; many very fine roots; many very fine pores; few dark grayish brown streaks from Ap horizon extends through this horizon; many intersecting slickensides; slightly effervescent in matrix and strongly effervescent in common soft carbonate masses; moderately alkaline (pH 8.0); clear smooth boundary. (3 to 5 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkss2--23 to 30 inches; brown (7.5YR 4/2) and reddish brown (5YR 5/4) clay dark brown (7.5YR 3/2) and reddish brown (5YR 4/4) moist; massive; very hard, firm, very sticky and very plastic; common very fine roots; many very fine pores; few dark grayish brown streaks from Ap horizon extends through this horizon; many intersecting slickensides; slightly effervescent in the matrix and strongly effervescent in the common soft carbonate masses; moderately alkaline (pH 8.2); clear smooth boundary. (5 to 8 inches thick)" diff --git a/inst/extdata/OSD/C/CHACON.json b/inst/extdata/OSD/C/CHACON.json index c504ee2bf6..36b96e28e9 100644 --- a/inst/extdata/OSD/C/CHACON.json +++ b/inst/extdata/OSD/C/CHACON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 38 cm (0 to 15 in); dark grayish brown (10YR 4/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium subangular blocky structure; hard, friable; many fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 25 cm [10 to 18 in] thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt--38 to 81 cm (15 to 32 in); grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; moderate fine and medium angular blocky and subangular blocky structure; very hard, firm; many fine roots; few fine pores; some surfaces of peds have shiny faces; vertical cracks 1/4 to 5/16 inch wide occur at horizontal intervals of 3 to 8 inches; strong effervescence; moderately alkaline; gradual wavy boundary. (13 to 46 cm [5 to 18 in] thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--81 to 102 cm (32 to 40 in); grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; moderate medium and coarse blocky structure; extremely hard, very firm; few roots in upper part but less with depth; few fine pores; shiny faces on peds presumed to be pressure planes; few vertical cracks; dark staining on few faces of peds; few pebbles to 1/2 inch diameter; few masses of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (20 to 46 cm [8 to 18 in] thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "BCkyz1--102 to 132 cm (40 to 52 in); pale brown (10YR 6/3) clay, brown (10YR 5/3) moist; weak medium angular blocky structure; very hard, very firm; very few fine roots; few fine pores; estimated 1 or 2 percent by volume of masses of calcium carbonate up to 0.5 cm (1/4 inch) diameter; few fine masses of crystalline neutral salts; very slightly saline: violent effervescence; moderately alkaline; diffuse wavy boundary. (20 to 43 cm [8 to 17 in] thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCkyz2--132 to 168 cm (52 to 66 in); very pale brown (10YR 7/4) clay, light yellowish brown (10YR 6/4) moist; weak fine and medium subangular blocky structure; very hard, very firm; contains about 5 percent of fine masses calcium carbonate; few fine crystals of gypsum; few masses of unweathered claystone; slightly saline; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHAMA.json b/inst/extdata/OSD/C/CHAMA.json index 993f44e5ca..61c77d0cb5 100644 --- a/inst/extdata/OSD/C/CHAMA.json +++ b/inst/extdata/OSD/C/CHAMA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--4 to 8 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; slightly hard, friable, slightly sticky and nonplastic; slight effervescence; slightly alkaline; clear smooth boundary. (0 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--8 to 13 inches; light gray (2.5Y 7/2) silt loam, light olive brown (2.5Y 5/4) moist; weak medium prismatic structure parting to moderate medium and fine subangular blocky; slightly hard, friable, slightly sticky and nonplastic; many fine masses of carbonates; violent effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--13 to 22 inches; light yellowish brown (2.5Y 6/4) silt loam, olive brown (2.5Y 4/4) moist; weak medium subangular blocky and weak thick platy structure; slightly hard, friable, slightly sticky and nonplastic; many medium masses of carbonates; violent effervescence; slightly alkaline; clear smooth boundary. (Combined Bk horizons 0 to 28 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--22 to 34 inches; light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; massive; slightly hard, friable, slightly sticky and nonplastic; many large carbonate concretions; slight effervescence; slightly alkaline; gradual wavy boundary. (0 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--34 to 60 inches; pale yellow (2.5Y 7/4) soft siltstone, light olive brown (2.5Y 5/4) moist; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CHANCELLOR.json b/inst/extdata/OSD/C/CHANCELLOR.json index 964a256686..98e99fae73 100644 --- a/inst/extdata/OSD/C/CHANCELLOR.json +++ b/inst/extdata/OSD/C/CHANCELLOR.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkzg1--36 to 43 inches; olive gray (5Y 5/2) silty clay loam, light olive gray (5Y 6/2) dry; common fine prominent light olive brown (2.5Y 5/6) and strong brown (7.5YR 5/6) redox concentrations and few fine distinct very dark brown (10YR 2/2) iron and manganese stains; weak coarse subangular blocky structure; hard, firm, sticky and plastic; few fine accumulations of calcium carbonate; few fine nests of gypsum; few fine dark concretions (Fe and Mn oxides); strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkzg2--43 to 53 inches; olive gray (5Y 5/2) silty clay loam, gray (5Y 6/1) dry; few fine prominent light olive brown (2.5Y 5/6) and strong brown (7.5YR 5/6) redox concentrations and common fine distinct very dark brown (l0YR 2/2) iron and manganese stains; weak coarse subangular blocky structure; hard, firm, sticky and plastic; few fine accumulations of calcium carbonate; common medium nests of gypsum; few fine dark concretions (Fe and Mn oxides); strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons are 5 to 30 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--53 to 60 inches; olive gray (5Y 5/2) silty clay loam, gray (5Y 6/l) dry; common medium prominent light olive brown (2.5Y 5/6) and strong brown (7.5YR 5/6) redox concentrations and few fine distinct very dark brown (10YR 2/2) iron and manganese stains; massive; hard, firm, sticky and plastic; few medium accumulations of calcium carbonate; many medium nests of gypsum; common fine dark concretions (Fe and Mn oxides); strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHANGAS.json b/inst/extdata/OSD/C/CHANGAS.json index 45a769f861..fe6b74efa7 100644 --- a/inst/extdata/OSD/C/CHANGAS.json +++ b/inst/extdata/OSD/C/CHANGAS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; yellowish brown (10YR 5/4) sandy clay loam, dark yellowish brown (10YR 4/4) moist; moderate fine and medium subangular blocky structure; hard, firm, very sticky, very plastic; violent effervescence; slightly alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "By1--4 to 15 inches; yellowish brown (10YR 5/4) clay, dark yellowish brown (10YR 4/4) moist; moderate fine and medium subangular blocky structure; hard, firm, very sticky, very plastic; 3 percent weakly cemented gypsum masses; violent effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "By2--15 to 25 inches; brown (10YR 4/3) clay, brown (10YR 4/3) moist; moderate fine and medium angular blocky structure; very hard, very firm, very sticky, very plastic; 10 percent fine weakly cemented gypsum masses; violent effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "By3--25 to 80 inches; pale brown (10YR 6/3) clay, brown (10YR 5/3) moist; moderate fine subangular blocky structure; hard, firm, very sticky, very plastic; 8 percent fine weakly cemented gypsum masses; violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CHANTA.json b/inst/extdata/OSD/C/CHANTA.json index 8eea60aff1..938850b847 100644 --- a/inst/extdata/OSD/C/CHANTA.json +++ b/inst/extdata/OSD/C/CHANTA.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk--26 to 29 inches; grayish brown (2.5Y 5/2) very gravelly sand, dark grayish brown (2.5Y 4/2) moist; single grain; loose; about 40 percent rock fragments; carbonates coat pebbles and occur as masses on undersides of pebbles; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--29 to 60 inches; light brownish gray (2.5Y 6/2) gravelly sand, grayish brown (2.5Y 5/2) moist; single grain; loose; about 30 percent rock fragments; carbonates coat undersides of pebbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHANTIER.json b/inst/extdata/OSD/C/CHANTIER.json index bd1c6b3532..aaf3b2623f 100644 --- a/inst/extdata/OSD/C/CHANTIER.json +++ b/inst/extdata/OSD/C/CHANTIER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 2 inches; olive gray (5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak fine subangular blocky structure parting to weak fine granular; dark olive gray (5Y 3/2) film on faces of peds; extremely hard, very firm, sticky and plastic; slight effervescence; moderately alkaline; abrupt smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--2 to 6 inches; olive gray (5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse and medium subangular blocky structure with common slickensides; extremely hard, very firm, very sticky and very plastic; few very fine nests of salts and gypsum; slight effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--6 to 11 inches; olive gray (5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse and medium subangular blocky structure with common slickensides; extremely hard, very firm, very sticky and very plastic; few fine and medium nests of salts and gypsum; slight effervescence; moderately alkaline; clear wavy boundary. (Combined Bw horizon is 7 to 14 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bz--11 to 15 inches; olive gray (5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure with common slickensides; extremely hard, very firm, very sticky and very plastic; many fine and medium nests of salts and gypsum; slight effervescence; moderately alkaline; clear smooth boundary. (2 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--15 to 19 inches; light olive gray (5Y 6/2) clay, olive gray (5Y 5/2) moist; massive with few slicken sides; extremely hard, very firm, very sticky and very plastic; 40 percent by volume of fragments of soft shale; common fine and medium nests of salts and gypsum; slight effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--19 to 60 inches; gray (5Y 6/1) soft bedded shale, olive gray (5Y 5/2) moist; common fine and medium distinct yellowish brown (10YR 5/6) iron stains; few fine nests of salts and gypsum in seams; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHAPPELL.json b/inst/extdata/OSD/C/CHAPPELL.json index c86ca8e6eb..b6e44db190 100644 --- a/inst/extdata/OSD/C/CHAPPELL.json +++ b/inst/extdata/OSD/C/CHAPPELL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--64 to 89 centimeters (25 to 35 inches); pale brown (10YR 6/3) fine sandy loam, brown (10YR 4/3) moist; massive and slightly hard, friable; strong effervescence; moderately alkaline; gradual, smooth boundary. (0 to 38 centimeters (0 to 15 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--89 to 152 centimeters (35 to 60 inches); very pale brown (10YR 7/4) gravelly coarse sand, light yellowish brown (10YR 6/4) moist; single grain; loose; slightly alkaline; slight effervescence." diff --git a/inst/extdata/OSD/C/CHARETTE.json b/inst/extdata/OSD/C/CHARETTE.json index e80d8cfaeb..acc8e0303d 100644 --- a/inst/extdata/OSD/C/CHARETTE.json +++ b/inst/extdata/OSD/C/CHARETTE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "IIB31--51 to 60 inches; brown (7.5YR 5/4) clay loam, dark brown (7.5YR 4/4) moist; weak coarse prismatic structure parting to moderate and strong medium and coarse subangular blocks; very hard, firm, sticky and plastic; few very fine roots; many few very fine roots; many fine and very fine and medium tubular pores; few and common thin clay films on faces of peds and in pores; 8 percent basalt pebbles and trace of cobble fragments; slight effervescence; 2 percent calcium carbonate; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIB32--60 to 70 inches; brown (7.5YR 5/4) sandy clay loam, dark brown (7.5YR 4/4) moist; weak coarse prismatic structure parting to weak and moderate medium and coarse subangular blocks; hard, firm, sticky and plastic; few very fine roots; many fine and very fine and common medium tubular pores; 8 percent basalt pebble and cobble fragments; slight effervescence; 4 percent calcium carbonate equivalent; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHARLEVOIX.json b/inst/extdata/OSD/C/CHARLEVOIX.json index d0de77af85..b0753798ed 100644 --- a/inst/extdata/OSD/C/CHARLEVOIX.json +++ b/inst/extdata/OSD/C/CHARLEVOIX.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--76 to 152 cm (30 to 60 inches); light brown (7.5YR 6/4) sandy loam; weak coarse subangular blocky fragments; friable; common medium faint brown (10YR 5/3) and distinct grayish brown (10YR 5/2) iron depletions; slightly effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CHASKA.json b/inst/extdata/OSD/C/CHASKA.json index cdc25036d6..565f2a84a4 100644 --- a/inst/extdata/OSD/C/CHASKA.json +++ b/inst/extdata/OSD/C/CHASKA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; very dark gray (10YR 3/1) silt loam, dark gray (10YR 4/1) dry; weak fine and medium subangular blocky structure; friable; few fine fragments of snail shells; slight effervescence; moderately alkaline; abrupt smooth boundary. (6 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--8 to 38 inches; very dark grayish brown (10YR 3/2) and very dark gray (10YR 3/1) silt loam with strata of dark grayish brown (10YR 4/2) loamy fine sand and very dark grayish brown (2.5Y 3/2) and dark grayish brown (2.5Y 4/2) very fine sandy loam; few fine distinct yellowish brown (10YR 5/4), dark yellowish brown (10YR 3/4), and prominent olive brown (2.5Y 4/4) mottles; friable; few fine fragments of snail shells; slight effervescence; moderately alkaline." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--38 to 60 inches; stratified dark grayish brown (2.5Y 4/2) and olive (5Y 5/3) fine sandy loam and grayish brown (2.5Y 5/2) loamy fine sand; common fine prominent dark yellowish brown (10YR 4/4) mottles; friable; few fine fragments of snail shells; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHERRY.json b/inst/extdata/OSD/C/CHERRY.json index 4e1999e712..249a8bfec9 100644 --- a/inst/extdata/OSD/C/CHERRY.json +++ b/inst/extdata/OSD/C/CHERRY.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--3 to 15 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse prismatic structure parting to moderate medium and fine angular blocky; hard, friable, sticky and plastic; common roots; common fine pores; thin patches of clay films on vertical faces of peds; strong effervescence; many fine threads of carbonates; moderately alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--15 to 33 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to strong medium and fine subangular blocky; hard, friable, sticky and plastic; few roots; common fine pores; many fine threads and few medium masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bw horizons 6 to 40 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--33 to 60 inches; light olive gray (5Y 6/2) silty clay, olive gray (5Y 4/2) moist; moderate medium and fine subangular blocky structure; hard, friable, sticky and plastic; some stratification present; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHERRY_SPRING.json b/inst/extdata/OSD/C/CHERRY_SPRING.json index 284dbcfdb0..3a9be67035 100644 --- a/inst/extdata/OSD/C/CHERRY_SPRING.json +++ b/inst/extdata/OSD/C/CHERRY_SPRING.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bqkm2--104 to 137 cm; white (10YR 8/1) strongly cemented duripan with very thin (0.5 mm) brown (10YR 5/3) discontinuous silica laminae, pale brown (10YR 6/3) and brown (10YR 4/3) moist; weak fine platy structure; extremely hard and very hard, extremely firm and very firm; few very fine roots; many very fine and fine interstitial pores; violently effervescent matrix, noneffervescent in silica laminae; strongly alkaline (pH 8.8)" diff --git a/inst/extdata/OSD/C/CHEVAL.json b/inst/extdata/OSD/C/CHEVAL.json index da22bdda89..dfa193e9a0 100644 --- a/inst/extdata/OSD/C/CHEVAL.json +++ b/inst/extdata/OSD/C/CHEVAL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; very dark brown (10YR 2/2) silt loam, dark grayish brown (10YR 4/2) dry; moderate fine subangular blocky structure; soft, friable, nonsticky, nonplastic; many fine roots; many irregular pores; strong effervescence; moderately alkaline (pH 8.0); abrupt smooth boundary. (5 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--6 to 15 inches; very dark gray (10YR 3/1) silt loam, dark gray (10YR 4/1) dry; weak fine granular; soft, friable, nonsticky, nonplastic; common roots; many very fine tubular pores; strong effervescence; moderately alkaline (pH 8.0); clear smooth boundary. (7 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--15 to 24 inches; very dark gray (10YR 3/1) loam, gray (10YR 5/1) dry; massive; soft, friable, nonsticky, nonplastic; few fine roots; many very fine tubular pores; strong effervescence; moderately alkaline (pH 8.0; clear smooth boundary. (5 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "C1--24 to 31 inches; dark gray (2.5Y 4/1) gravelly loam, gray (2.5Y 5/1) dry; massive; soft, very friable, nonsticky, nonplastic; few fine roots; few irregular pores; 20 percent gravel; few fine faint (10YR 4/4) redox concentrations; strong effervescence; moderately alkaline (pH 8.0; gradual irregular boundary. (3 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--31 to 60 inches; grayish brown (2.5Y 5/2) very gravelly loamy sand, light brownish gray (2.5Y 6/2) single grain; loose, nonsticky, nonplastic; 55 percent gravel; strong effervescence; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/C/CHEYENNE.json b/inst/extdata/OSD/C/CHEYENNE.json index 5dc4894871..547e3d2eaa 100644 --- a/inst/extdata/OSD/C/CHEYENNE.json +++ b/inst/extdata/OSD/C/CHEYENNE.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--24 to 32 inches; light brownish gray (10YR 6/2) gravelly loamy sand, dark grayish brown (10YR 4/2) moist; single grain; loose; strong effervescence with gravel generally crusted with lime on the undersides; strongly alkaline; gradual smooth boundary. (6 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--32 to 60 inches; very gravelly coarse sand; loose; strong effervescence." diff --git a/inst/extdata/OSD/C/CHIJER.json b/inst/extdata/OSD/C/CHIJER.json index c162b3aefd..03691d74fc 100644 --- a/inst/extdata/OSD/C/CHIJER.json +++ b/inst/extdata/OSD/C/CHIJER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--6 to 11 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; moderate very coarse prismatic structure parting to weak thin and medium platy; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and few fine roots concentrated on prism faces; many very fine tubular and common very fine irregular pores; disseminated lime; strong effervescence (9 percent calcium carbonate equivalent); moderately alkaline (pH 8.1); clear wavy boundary. (2 to 9 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkq1--11 to 16 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; weak very fine and fine subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine roots; common very fine tubular and interstitial pores; 5 percent weakly lime and silica cemented cicada nodules; violent effervescence (20 percent calcium carbonate equivalent); moderately alkaline (pH 8.3); clear smooth boundary. (3 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkq2--16 to 19 inches; very pale brown (10YR 7/3) loam, pale brown (10YR 6/3) moist; moderate thin, medium and coarse platy structure, plates are highly disturbed due to cicada nodules; hard, very friable, slightly sticky and slightly plastic; common very fine roots; few very fine tubular and common very fine interstitial pores; 20 percent weakly lime and silica cemented cicada nodules; violent effervescence (20 percent calcium carbonate equivalent); moderately alkaline (pH 8.4); abrupt wavy boundary. (3 to 11 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkq3--19 to 24 inches; very pale brown (10YR 8/3) silt loam, pale brown (10YR 6/3) moist; massive; hard, very friable, slightly sticky and slightly plastic; few very fine roots ; common very fine tubular pores; 35 percent weakly lime and silica cemented cicada nodules; violent effervescence (20 percent calcium carbonate equivalent); moderately alkaline (pH 8.4); clear wavy boundary. (5 to 13 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkq4--24 to 29 inches; pale brown (10YR 6/3) very fine sandy loam, brown (10YR 5/3) moist; massive; hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine tubular pores; 35 percent lime and silica cemented cicada nodules; violent effervescence (15 percent calcium carbonate equivalent); moderately alkaline (pH 8.4); gradual wavy boundary. (0 to 19 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkq5--29 to 48 inches; pale brown (10YR 6/3) very fine sandy loam, brown (10YR 5/3) moist; massive; very hard, very firm, slightly sticky; common very fine roots; common very fine tubular and few very fine and fine interstitial pores; trace of rock fragments; vertical fractures in this layer; roots and lime and silica coatings all follow fractures; violent effervescence (15 percent calcium carbonate equivalent); moderately alkaline (pH 8.3); gradual wavy boundary. (2 to 20 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkq6--48 to 61 inches; light yellowish brown (10YR 6/4) very fine sandy loam, yellowish brown (10YR 5/4) moist; massive; hard, firm, slightly sticky; few very fine roots; common very fine tubular pores; trace of rock fragments; vertical fractures in this layer, roots and lime and silica coatings all follow fractures; violent effervescence (15 percent calcium carbonate equivalent); moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/C/CHILLON.json b/inst/extdata/OSD/C/CHILLON.json index d770a414e8..946f10b8c5 100644 --- a/inst/extdata/OSD/C/CHILLON.json +++ b/inst/extdata/OSD/C/CHILLON.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches (0 to 14 cm); yellowish brown (10YR 5/4) very gravelly fine sandy loam, brown (10YR 5/3), moist; 15 percent silicate clay; weak medium subangular blocky structure parting to weak fine granular; slightly hard, very friable, nonsticky and nonplastic; 55 percent subrounded igneous gravel; strong effervescence; moderately alkaline (pH 8.0); clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--6 to 43 inches (14 to 108 cm); yellowish brown (10YR 5/4) very gravelly fine sandy loam, brown (10YR 5/3), moist; 14 percent silicate clay; weak fine subangular blocky structure parting to weak fine granular; slightly hard, very friable, nonsticky and nonplastic; 45 percent subrounded igneous gravel and 5 percent subrounded igneous cobbles; strong effervescence; moderately alkaline (pH 8.1); clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--43 to 80 inches (108 to 203 cm); light yellowish brown (10YR 6/4) very gravelly coarse sandy loam, pale brown (10YR 6/3), moist; 12 percent silicate clay; single grain; 60 percent subrounded igneous gravel and 5 percent subrounded igneous cobbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CHINCHIN.json b/inst/extdata/OSD/C/CHINCHIN.json index 7ee32213b6..5848f956dd 100644 --- a/inst/extdata/OSD/C/CHINCHIN.json +++ b/inst/extdata/OSD/C/CHINCHIN.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; reddish brown (2.5YR 5/4) gravelly loam, reddish brown (2.5YR 4/4) moist; weak fine and medium platy parting to moderate fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine interstitial pores; 14 percent gravel, 4 percent cobbles, and 4 percent stones; moderately effervescent; moderately alkaline (pH 8.2); clear smooth boundary. (1 to 4 inches thick)" diff --git a/inst/extdata/OSD/C/CHIVINGTON.json b/inst/extdata/OSD/C/CHIVINGTON.json index f882360bca..572512385f 100644 --- a/inst/extdata/OSD/C/CHIVINGTON.json +++ b/inst/extdata/OSD/C/CHIVINGTON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--29 to 33 inches; light yellowish brown (10YR 6/4) clay, yellowish brown (10YR 5/4) moist; moderate medium subangular blocky structure; hard, firm, sticky and plastic; violent effervescence; calcium carbonate as threads and seams; moderately alkaline (pH 8.4); clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--33 to 60 inches; light yellowish brown (10YR 6/4) clay, yellowish brown (10YR 5/4) moist; massive; slightly hard, friable, sticky and plastic; violent effervescence; calcium carbonate as soft masses, seams and threads; moderately alkaline (pH 8.4)" diff --git a/inst/extdata/OSD/C/CHUCKAWALLA.json b/inst/extdata/OSD/C/CHUCKAWALLA.json index f0d5a5b577..6a8a5b6f1f 100644 --- a/inst/extdata/OSD/C/CHUCKAWALLA.json +++ b/inst/extdata/OSD/C/CHUCKAWALLA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "E--0 to 1.375 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; weak thick platy structure; soft, very friable, slightly sticky and slightly plastic; many very fine and medium vesicular pores; slightly effervescent on tops of plates strongly effervescent on sides and bottoms; moderately alkaline (pH 8.2); abrupt wavy boundary (1/4 to 1 1/2 inches thick)" diff --git a/inst/extdata/OSD/C/CHUGCITY.json b/inst/extdata/OSD/C/CHUGCITY.json index ca4a9a26e2..8146149bcd 100644 --- a/inst/extdata/OSD/C/CHUGCITY.json +++ b/inst/extdata/OSD/C/CHUGCITY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; brown (10YR 5/3) fine sandy loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure parting to weak very fine subangular blocky; soft, very friable, slightly sticky and slightly plastic; many very fine, common fine and few medium roots; common very fine and few fine continuous random irregularly shaped pores; 5 percent calcium carbonate equivalence; strong effervescence, calcium carbonate disseminated; moderately alkaline (pH 7.9); abrupt smooth boundary. (3 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--7 to 21 inches; very pale brown (10YR 7/3) loam, brown (10YR 5/3) moist; weak medium subangular blocky structure parting to moderate fine subangular blocky; slightly hard, firm, slightly sticky and slightly plastic; many very fine and few fine roots; many very fine continuous random irregularly shaped pores; 13 percent calcium carbonate equivalent; violent effervescence, calcium carbonate disseminated and few fine irregularly shapes of soft masses and threads of calcium carbonate: moderately alkaline (pH 8.3); gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--21 to 28 inches; light yellowish brown (10YR 6/4) loam, brown (10YR 5/3) moist; weak fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine roots; common very fine continuous random irregularly shaped pores; 12 percent calcium carbonate equivalent; violent effervescence, few fine irregularly shaped soft masses of calcium carbonate; moderately alkaline (pH 8.2); clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk3--28 to 35 inches; light yellowish brown (10YR 6/4) very fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard; very friable, slightly sticky and slightly plastic; few very fine roots; 8 percent calcium carbonate equivalent; violent effervescence, common fine irregularly shaped soft masses of calcium carbonate; moderately alkaline (pH 8.3); abrupt smooth boundary. (Combined thickness of Bk horizon is 10 to 30 inches.)" diff --git a/inst/extdata/OSD/C/CHURCH_SPRINGS.json b/inst/extdata/OSD/C/CHURCH_SPRINGS.json index 28943a05e7..94740706e1 100644 --- a/inst/extdata/OSD/C/CHURCH_SPRINGS.json +++ b/inst/extdata/OSD/C/CHURCH_SPRINGS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt--10 to 17 inches; dark brown (10YR 3/3) silty clay loam; brown (7.5YR 4/4) dry; moderate fine and medium subangular blocky structure; very hard, firm, sticky, plastic; common fine and medium roots roots; few very fine tubular pores; few thin clay films on faces of peds; moderately effervescent, (21 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); gradual wavy boundary. (6 to 9 inches thick)" diff --git a/inst/extdata/OSD/C/CINTRONA.json b/inst/extdata/OSD/C/CINTRONA.json index 885d0b4bee..849f113f66 100644 --- a/inst/extdata/OSD/C/CINTRONA.json +++ b/inst/extdata/OSD/C/CINTRONA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 8 inches; very dark gray (10YR 3/1) clay; weak fine and medium granular structure; firm, sticky, plastic; many fine roots; common fine volcanic and limestone fragments; strong effervescence; clear smooth boundary. (6 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B1g--8 to 16 inches; dark gray (10YR 4/1) clay with few fine faint dark gray (N 4/) and few fine distinct dark yellowish brown (10YR 3/4) mottles; weak medium subangular blocky structure; firm, sticky, plastic; many fine roots; common fine volcanic and limestone fragments; few shell fragments; strong effervescence; clear smooth boundary. (6 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B2g--16 to 24 inches; dark gray (10YR 4/1) clay with few fine distinct dark yellowish brown (10YR 3/4), common medium faint dark gray (N 4/) and few fine prominent dark greenish gray (5GY 4/1) mottles; weak coarse subangular blocky structure; firm, sticky, plastic; many decayed roots; common fine volcanic fragments; numerous soft calcium carbonate accumulations; violent effervescence; clear smooth boundary. (6 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B3g--24 to 31 inches; very dark grayish brown (10YR 3/2) clay with few fine faint dark yellowish brown (10YR 3/4) and few fine prominent black (10YR 2/1) mottles; weak medium subangular blocky structure; firm, sticky, plastic; many decayed roots; common fine volcanic fragments; violent effervescence; clear smooth boundary. (6 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1g--31 to 38 inches; very dark brown (10YR 2/2) clay with few fine prominent dark greenish gray (5G 4/1), many medium distinct very dark gray (N 3/), and few fine faint dark yellowish brown (10YR 4/4) mottles; massive; firm, sticky, plastic; many decayed roots; violent effervescence; abrupt smooth boundary. (6 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2g--38 to 46 inches; dark greenish gray (5G 4/1) 60 percent; greenish gray (5GY 5/1) 15 percent; dark gray (5Y 4/1) 10 percent, very dark gray (N 3/) 10 percent, and dark yellowish brown (10YR 4/5) clay; massive; firm, slightly sticky, plastic; many decayed roots; violent effervescence; abrupt smooth boundary. (6 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3g--46 to 60 inches; dark greenish gray (5GY 2/1) clay loam with few fine faint prominent dark yellowish brown (10YR 4/4), few fine distinct light olive brown (2.5Y 5/6), and dark greenish gray (5G 4/1) mottles; massive; firm, slightly sticky, plastic; strong effervescence." diff --git a/inst/extdata/OSD/C/CITADEL.json b/inst/extdata/OSD/C/CITADEL.json index 61531e9c16..8c3fa33964 100644 --- a/inst/extdata/OSD/C/CITADEL.json +++ b/inst/extdata/OSD/C/CITADEL.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--88 to 128 cm; light olive brown (2.5Y 5/3) silt loam, pale brown (10YR 6/3) dry; weak medium prismatic parting to moderate medium and coarse subangular blocky; very hard, firm, slightly sticky and moderately plastic; few coarse, medium, fine, and very fine roots; common very fine tubular pores throughout; 1 percent subrounded limestone gravel and 1 percent cobble; common (30 percent) distinct yellowish brown (10YR 5/4) continuous clay films on vertical faces of peds; many medium and coarse distinct very pale brown (10YR 8/2) very weakly cemented irregular threads of calcium carbonate in matrix, lining pores, and around rock fragments; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Btk horizon is 0 to 50 cm)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--128 to 203 cm; light olive brown (2.5Y 5/4) silt loam, light yellowish brown (10YR 6/4) dry; moderate medium subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few fine and very fine roots; common very fine dendritic-tubular pores throughout; 6 percent rock fragments, of which 2 percent are subrounded limestone gravel, 3 percent cobble, and 1 percent stones; few (10 percent) distinct yellowish brown (10YR 5/4) continuous clay films on vertical faces of peds; many medium and coarse distinct very pale brown (10YR 8/2), very weakly cemented irregular threads of calcium carbonate in matrix, lining pores, and around rock fragments; strong effervescence; moderately alkaline. (20 to 75 cm thick)" diff --git a/inst/extdata/OSD/C/CLAIRE.json b/inst/extdata/OSD/C/CLAIRE.json index 666f12c85b..9d81858094 100644 --- a/inst/extdata/OSD/C/CLAIRE.json +++ b/inst/extdata/OSD/C/CLAIRE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--48 to 60 inches; light gray (10YR 7/1) fine sand, dark grayish brown (2.5Y 4/2) moist; common medium dark reddish gray (5YR 4/2) moist redoximorphic concentrations; single grained; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CLAIRETTE.json b/inst/extdata/OSD/C/CLAIRETTE.json index e086965d80..d5979e0559 100644 --- a/inst/extdata/OSD/C/CLAIRETTE.json +++ b/inst/extdata/OSD/C/CLAIRETTE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk1--67 to 142 centimeters (26 to 56 in); reddish brown (5YR 5/4), reddish brown (5YR 4/4), moist; clay loam; 40 percent sand; 27 percent silt; 33 percent clay; strong medium subangular blocky structure; hard, firm, moderately sticky, moderately plastic; common fine roots throughout; few fine pores; 80 percent prominent clay films on all faces of peds; 1 percent fine threadlike carbonate masses; 1 percent by volume nonflat subangular indurated 2-5-20 millimeter limestone; strong effervescence, by HCL, 1N; slightly alkaline, pH 7.8; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btk2--142 to 187 cm (56 to 74 in); strong brown (7.5YR 5/6), strong brown (7.5YR 4/6), moist; sandy clay loam; 47 percent sand; 27 percent silt; 26 percent clay; moderate medium subangular blocky structure; moderately hard, firm, moderately sticky, slightly plastic; few fine roots throughout; few fine pores; 40 percent distinct clay films on all faces of peds; 2 percent fine threadlike carbonate masses; violent effervescence, by HCL, 1N; moderately alkaline, pH 8.0; abrupt smooth boundary. (Combined thickness is 25 to 171 cm [10 to 67 in].)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "CBk--187 to 212 centimeters (73.6 to 83.5 inches); very pale brown (10YR 7/4), light yellowish brown (10YR 6/4), moist; fine sandy loam; 56 percent sand; 27 percent silt; 17 percent clay; massive; few fine roots throughout; very few fine pores; 2 percent medium spherical weakly cemented carbonate concretions; violent effervescence, by HCL, 1N; moderately alkaline, pH 8.2." diff --git a/inst/extdata/OSD/C/CLAMO.json b/inst/extdata/OSD/C/CLAMO.json index d9d1200a5d..d8a0822c72 100644 --- a/inst/extdata/OSD/C/CLAMO.json +++ b/inst/extdata/OSD/C/CLAMO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg1--15 to 24 inches; very dark grayish brown (2.5Y 3/2) silty clay, grayish brown (2.5Y 5/2) dry; weak medium prismatic structure parting to moderate medium and fine subangular blocky; hard, firm, sticky, and plastic; few fine distinct olive brown (2.5Y 4/4) Fe concentrations; many medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg2--24 to 38 inches; very dark gray (5Y 3/1) silty clay, dark gray (5Y 4/1) dry; weak coarse subangular blocky structure; very hard, firm, sticky, and plastic; many coarse accumulations of carbonate; few fine crystals of gypsum; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bkg horizon is 15 to 35 inches thick.)" diff --git a/inst/extdata/OSD/C/CLARNO.json b/inst/extdata/OSD/C/CLARNO.json index f664db37d6..fdabd25baa 100644 --- a/inst/extdata/OSD/C/CLARNO.json +++ b/inst/extdata/OSD/C/CLARNO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk1--16 to 30 inches; light yellowish brown (2.5Y 6/3) loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; slightly hard, friable; few pebbles; many fine and medium soft masses and threads of calcium carbonate; violent effervescence; moderately alkaline; diffuse wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk2--30 to 48 inches; light yellowish brown (2.5Y 6/3) loam, light olive brown (2.5Y 5/3) moist; few fine distinct mottles of gray (2.5Y 6/1) redox depletions moist and few fine distinct olive yellow (2.5Y 6/6) redox concentrations moist; massive; slightly hard, friable; 5 percent pebbles (chalk rock); many medium and coarse masses of calcium carbonate; violent effervescence; moderately alkaline; diffuse wavy boundary. (Combined Bk horizons is 15 to 40 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; light yellowish brown (2.5Y 6/3) loam, light olive brown (2.5Y 5/4) moist; few fine distinct gray (2.5Y 6/l) redox depletions moist, few fine distinct olive yellow (2.5Y 6/6) and strong brown (7.5YR 5/6) redox concentrations moist; massive; slightly hard, friable; common pebbles; consolidated layers evident; few fine dark masses (Fe and Mn oxides); few fine threads of calcium carbonate; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CLAWHAMMER.json b/inst/extdata/OSD/C/CLAWHAMMER.json index 5213852a92..6e4e6d7676 100644 --- a/inst/extdata/OSD/C/CLAWHAMMER.json +++ b/inst/extdata/OSD/C/CLAWHAMMER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ak--0 to 29 centimeters (0 to11 inches); dark grayish brown (10YR 4/2) sandy clay loam, grayish brown (10YR 5/2) dry; moderate medium subangular parting to moderate thin platy structure; very friable, hard; many fine and very fine roots; violent effervescence; finely disseminated carbonate throughout; exchangeable sodium percentage >100; sodium adsorption ratio = 130; electrical conductivity = 4.29; very strongly alkaline; clear wavy boundary. [3 to 28 centimeters (1 to 11 inches thick)]" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "ACkg1--29 to 48 centimeters (11 to 19 inches); light brownish gray (10YR 6/2)) fine sandy loam, light gray (7/2) dry; common patchy faint very dark grayish brown (10YR3/2) moist organic stains on all faces of peds; common fine distinct dark yellowish brown (10YR 3/4) moist iron threadlike masses lining pores; weak coarse prismatic parting to weak medium subangular blocky structure; very friable, hard; many fine and very fine roots; violent effervescence; finely disseminated carbonate throughout; exchangeable sodium percentage >100; sodium adsorption ratio = 180; electrical conductivity = 4.97; very strongly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "ACkg2--48 to 70 centimeters (19 to 28 inches); light brownish gray (2.5Y 6/2) fine sandy loam, light gray (2.5Y 7/2) dry; common fine distinct dark yellowish brown (10YR 3/4) moist irregular iron masses lining pores; weak coarse prismatic parting to weak medium subangular blocky structure; very friable, slightly hard; common fine and very fine roots; violent effervescence; finely disseminated carbonate throughout and common fine prominent very weakly cemented pale yellow (2.5Y 8/2) moist irregular shell fragments throughout; exchangeable sodium percentage > 100; sodium adsorption ratio = 157; electrical conductivity = 3.45; very strongly alkaline; clear wavy boundary [Combined thickness of the ACkg horizon is 15 to 81 centimeters (6 to 32 inches) thick]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--70 to 109 centimeters (28 to 43 inches); grayish brown (2.5Y 5/2) loamy fine sand, light brownish gray (10YR 6/2) dry; common fine distinct threadlike dark yellowish brown (10YR 3/4) moist irregular iron masses throughout; weak coarse prismatic structure; very friable, hard; few fine and very fine roots; common fine prominent very weakly cemented pale yellow (2.5Y 8/2) moist irregular shell fragments throughout; violent effervescence; finely disseminated carbonate throughout and common fine prominent very weakly cemented pale yellow (2.5Y 8/2) moist irregular shell fragments throughout; exchangeable sodium percentage > 100; sodium adsorption ratio = 46; electrical conductivity = 2.03; very strongly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--109 to 130 centimeters (43 to 51 inches); light brownish gray (2.5Y 6/2) loamy fine sand, light gray (2.5Y 7/2) dry; weak coarse prismatic structure; very friable, soft; violent effervescence; finely disseminated carbonate throughout and common fine prominent very weakly cemented pale yellow (2.5Y 8/2) moist irregular shell fragments throughout; exchangeable sodium percentage > 100; sodium adsorption ratio = 44; electrical conductivity = 2.06 very strongly alkaline; abrupt way boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cg3--130 to 173 centimeters (51 to 68 inches); dark grayish brown (2.5Y 4/2) fine sand, light brownish gray (2.5Y 6/2) dry; common coarse distinct gray (5Y 5/1) moist irregular iron depletions throughout; weak coarse prismatic structure; very friable, soft; strong effervescence; finely disseminated carbonate throughout and common fine prominent very weakly cemented pale yellow (2.5Y 8/2) moist irregular shell fragments throughout; exchangeable sodium percentage = 67; sodium adsorption ratio = 25; electrical conductivity = 1.03; very strongly alkaline; abrupt wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Akb--173 to 200 centimeters (68 to 79 inches); very dark grayish brown (2.5Y 3/2) fine sand, grayish brown (2.5Y 5/2) dry; weak coarse prismatic structure; very friable, soft; violent effervescence; finely disseminated carbonate throughout and common fine prominent very weakly cemented pale yellow (2.5Y 8/2) moist irregular shell fragments throughout; exchangeable sodium percentage = 25; sodium adsorption ratio = 7; electrical conductivity = 0.27; strongly alkaline." diff --git a/inst/extdata/OSD/C/CLAYSVILLE.json b/inst/extdata/OSD/C/CLAYSVILLE.json index a085065cf9..2f8e3c2e02 100644 --- a/inst/extdata/OSD/C/CLAYSVILLE.json +++ b/inst/extdata/OSD/C/CLAYSVILLE.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--75 to 84 inches; yellowish brown (10YR 5/4) shaly silty clay loam; common medium prominent gray (10YR 6/1) mottles; massive; firm; 20 percent light yellowish brown (2.5Y 6/4) shale and siltstone fragments; neutral above 80 inches; slight effervescence and mildly alkaline below 80 inches." diff --git a/inst/extdata/OSD/C/CLEARWATER.json b/inst/extdata/OSD/C/CLEARWATER.json index 39154037ce..f15d1d8511 100644 --- a/inst/extdata/OSD/C/CLEARWATER.json +++ b/inst/extdata/OSD/C/CLEARWATER.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bss1--8 to 16 inches; dark grayish brown (2.5Y 4/2) clay; few fine distinct light olive brown (2.5Y 5/6) redoximorphic concentrations; moderate fine angular blocky structure; firm; about 5 percent gravel; few intersecting slickensides tilted less than 45 degrees from horizontal; cracks 1/2 to 3 inches wide and 2 to 4 feet apart filled with A material; slight effervescence; slightly alkaline; clear smooth boundary. (3 to 24 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bss2--16 to 35 inches; grayish brown (2.5Y 5/2) clay; few fine distinct light olive brown (2.5Y 5/4) redoximorphic concentrations; moderate very fine angular blocky structure; firm; about 3 percent gravel; few intersecting slickensides tilted less than 60 degrees from horizontal; cracks 1/4 to 1 inch wide and 2 to 4 feet apart filled with A material;few masses or threads of segregated lime; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 23 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--35 to 65 inches; olive gray (5Y 4/2) clay; common fine prominent light olive brown (2.5Y 5/4) and common medium prominent olive yellow (2.5Y 6/6) redoximorphic concentrations; massive; very firm; about 2 percent gravel; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--65 to 80 inches; olive gray (5Y 5/2) clay; many large faint dark gray (5Y 4/1) redoximorphic depletions and few medium prominent yellowish brown (10YR 5/8) redoximorphic concentrations; massive; very firm; about 3 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CLEAVER.json b/inst/extdata/OSD/C/CLEAVER.json index 51b5867643..eccaf33e2d 100644 --- a/inst/extdata/OSD/C/CLEAVER.json +++ b/inst/extdata/OSD/C/CLEAVER.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bqk1--51 to 99 cm; pink (7.5YR 7/4) extremely gravelly loamy sand, brown (7.5YR 5/4), moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; many very fine and fine interstitial pores; 35 percent strongly cemented carbonate concretions; 5 percent stones, 10 percent cobbles and 50 percent gravel; violent effervescence; strongly alkaline (pH 8.7); clear wavy boundary. (15 to 60 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bqk2--99 to 142 cm; pink (7.5YR 7/4) extremely gravelly loamy sand, brown (7.5YR 5/4), moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; many very fine and fine interstitial pores; 20 percent weakly cemented carbonate concretions and 20 percent carbonate masses and 20 percent strongly cemented carbonate concretions; 5 percent stones, 10 percent cobbles and 55 percent gravel; violent effervescence; strongly alkaline (pH 8.7); clear wavy boundary. (0 to 60 cm thick)" @@ -250,7 +250,7 @@ "cf_class": "extremely gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bqky--142 to 197 cm; light yellowish brown (10YR 6/4) extremely gravelly loamy sand, dark yellowish brown (10YR 4/4), moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; many very fine and fine interstitial pores; 10 percent strongly cemented silica concretions around rock fragments and 20 percent weakly cemented carbonate concretions and 20 percent carbonate masses and fine barite crystals; 5 percent stones, 10 percent cobbles and 55 percent gravel; violent effervescence; strongly alkaline, (pH 8.7)." diff --git a/inst/extdata/OSD/C/CLEAVMOR.json b/inst/extdata/OSD/C/CLEAVMOR.json index a1ea33fd49..e5dde6d397 100644 --- a/inst/extdata/OSD/C/CLEAVMOR.json +++ b/inst/extdata/OSD/C/CLEAVMOR.json @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--23 to 38 cm; grayish brown (10YR 5/2) extremely gravelly clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few fine and very fine roots; few fine, common very fine tubular pores; common distinct clay skins on faces of ped and lining pores; 70 percent gravel and channers; common fine strongly effervescent carbonate seams; noneffervescent matrix; slightly alkaline (pH 7.8); clear smooth boundary. (10 to 18 cm thick)" diff --git a/inst/extdata/OSD/C/CLEGORPASS.json b/inst/extdata/OSD/C/CLEGORPASS.json index 66bc4c72dc..431c47ba5f 100644 --- a/inst/extdata/OSD/C/CLEGORPASS.json +++ b/inst/extdata/OSD/C/CLEGORPASS.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkq1--18 to 38 inches; light yellowish brown (10YR 6/4) very gravelly coarse sand, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, very friable, nonsticky and nonplastic; many very fine and common fine interstitial pores; 20 percent discontinuous prominent clay skins on sand and gravel; 4 percent pockets and discontinuous bands of disseminated lime 2 to 4 inches thick, violently effervescent; thin (1 to 3 millimeters) lime and silica coats on underside of coarse fragments; 5 percent moderately and 10 percent very weakly cemented discontinuous bands of silica and lime; 40 percent gravel and 2 percent cobbles; strongly effervescent; slightly alkaline (pH 7.6), clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btkq2--38 to 60 inches; pale brown (10YR 6/3) very gravelly sand, brown (10YR 4/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; many very fine and common fine interstitial pores; 10 percent discontinuous prominent clay skins on sand and gravel; 2 percent pockets and discontinuous bands of disseminated lime 2 to 4 inches thick, violently effervescent; thin (1 to 3 millimeters) lime and silica coats on underside of coarse fragments; 5 percent moderately and 10 percent very weakly cemented discontinuous bands of silica and lime; 50 percent gravel and 5 percent cobbles; slightly effervescent; slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/C/CLENAGE.json b/inst/extdata/OSD/C/CLENAGE.json index 4d45d218f1..8d31fac0c7 100644 --- a/inst/extdata/OSD/C/CLENAGE.json +++ b/inst/extdata/OSD/C/CLENAGE.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btk1--16 to 20 inches; brown (10YR 5/3) very gravelly clay, brown (10YR 4/3) moist; strong medium prismatic structure parting to strong fine and medium angular blocky; very hard, firm, sticky and plastic; few very fine and medium roots; many fine to coarse irregular pores; many prominent clay films lining pores and on faces of peds; few distinct lime coats on vertical and horizontal faces of peds; 30 percent pebbles and 10 percent cobbles; strong effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary. (3 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "3Btk2--20 to 25 inches; brown (10YR 5/3) extremely gravelly clay, brown (10YR 4/3) moist; moderate fine subangular blocky structure; hard, friable, sticky and plastic; few very fine roots; many fine and medium irregular pores; common distinct clay films lining pores and on faces of peds; common distinct lime coats on vertical and horizontal faces of peds; 35 percent pebbles, 20 percent cobbles and 10 percent stones; strong effervescence; moderately alkaline (pH 8.0); abrupt irregular boundary. (5 to 8 inches thick)" diff --git a/inst/extdata/OSD/C/CLIME.json b/inst/extdata/OSD/C/CLIME.json index ca6cbc6a36..a172e19bd2 100644 --- a/inst/extdata/OSD/C/CLIME.json +++ b/inst/extdata/OSD/C/CLIME.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 23 centimeters (0 to 9 inches); dark grayish brown (10YR 4/2) silty clay, very dark brown (10YR 2/2) moist; moderate fine granular structure; hard, firm, very sticky and very plastic; many roots; slight effervescence; moderately alkaline; clear smooth boundary. (5 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--23 to 46 centimeters (9 to 18 inches); grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate fine subangular blocky structure; very hard, very firm, very sticky and very plastic; few roots; strong effervescence; moderately alkaline; clear smooth boundary. (6 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "C--46 to 84 centimeters (18 to 33 inches); light brownish gray (10YR 6/2) silty clay, dark grayish brown (10YR 4/2) moist; massive; very hard, very firm, very sticky and very plastic; horizon contains many shale fragments; strong effervescence; moderately alkaline; diffuse smooth boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/C/CLOTHO.json b/inst/extdata/OSD/C/CLOTHO.json index e6dac6146d..fedefe7c21 100644 --- a/inst/extdata/OSD/C/CLOTHO.json +++ b/inst/extdata/OSD/C/CLOTHO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 12 inches; black (10YR 2/1) sandy loam; very dark gray (10YR 3/1) dry; moderate fine subangular blocky structure; friable; about 2 percent coarse fragments; slight effervescence; mildly alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ag--12 to 16 inches; very dark grayish brown (2.5Y 3/2) sandy loam; dark grayish brown (2.5Y 4/2) dry; common medium distinct brown (7.5YR 4/4) mottles; weak medium subangular blocky structure; friable; about 2 percent coarse fragments; slight effervescence; mildly alkaline; clear smooth boundary. (Combined thickness of A horizons is 10 to 20 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bg--16 to 20 inches; dark grayish brown (2.5Y 4/2) sandy loam; few fine prominent yellowish red (5YR 4/6) and brown (7.5YR 4/4) mottles; weak medium subangular blocky structure; friable; about 2 percent coarse fragments; slight effervescence; moderately alkaline; clear smooth boundary. (4 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--20 to 26 inches; yellowish brown (10YR 5/4) sandy loam; common fine prominent strong brown (7.5YR 5/6) gray (10YR 6/1) and grayish brown (2.5Y 5/2) mottles; weak medium subangular blocky structure; friable; about 2 percent coarse fragments; strong effervescence; mildly alkaline; clear smooth boundary. (0 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--26 to 34 inches; yellowish brown (10YR 5/4) sandy loam; common medium distinct yellow (10YR 7/8) mottles; weak coarse platy soil fragments; friable; about 3 percent coarse fragments; strong effervescence; lime segregated in irregularly shaped filaments or threads; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--34 to 60 inches; yellowish brown (10YR 5/4) sandy loam; common medium faint light brownish gray (10YR 6/2) mottles; weak coarse platy soil fragments; friable; about 3 percent coarse fragments; strong effervescence; lime segregated in irregularly shaped filaments or threads; moderately alkaline." diff --git a/inst/extdata/OSD/C/CLURO.json b/inst/extdata/OSD/C/CLURO.json index ea36a4e699..63bf86a74b 100644 --- a/inst/extdata/OSD/C/CLURO.json +++ b/inst/extdata/OSD/C/CLURO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "but effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "BC--30 to 43 cm; light brownish gray (10YR 6/2) loam, very dark grayish brown (10YR 3/2) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; many very fine, and few fine and medium roots; few very fine and fine tubular pores; common fine and medium distinct dark brown (7.5YR 3/2) masses of iron accumulation; noneffervescent matrix but effervescent in spots; neutral (pH 7.3); clear smooth boundary. (8 to 38 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Aqkb--43 to 61 cm; dark grayish brown (10YR 4/2), silty clay loam, very dark grayish brown (10YR 3/2) moist; weak medium prismatic structure; hard, friable, moderately sticky and moderately plastic; many very fine, and few fine roots; common very fine, and few fine tubular pores; few medium faint dark brown (7.5YR 3/2) and very dark brown (7.5YR 2.5/2) masses of iron and manganese accumulation; 30 percent durinodes; secondary carbonates segregated as few fine white (10YR 8/1) masses; slightly effervescent matrix with strongly effervescent carbonates masses; slightly alkaline. (pH 7.5); abrupt wavy boundary. (0 to 25 cm thick)" diff --git a/inst/extdata/OSD/C/CODORA.json b/inst/extdata/OSD/C/CODORA.json index 74b2ae2db1..0ac1de8679 100644 --- a/inst/extdata/OSD/C/CODORA.json +++ b/inst/extdata/OSD/C/CODORA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw3--38 to 60 inches, (96 to 152 cm); pale brown (10YR 6/3) silty clay loam, dark brown (10YR 3/3) moist; 7 percent sand; 61 percent silt; 32 percent clay; moderate coarse subangular blocky structure; hard, firm, slightly sticky, moderately plastic; few very fine roots; many very fine and fine tubular and common very fine to medium irregular pores; carbonate, finely disseminated and carbonate masses lining pores; slight effervescence; moderately alkaline, pH 8.1 by Unspecified. (22 to 42 inches (56 to 107 cm) or more thick)" diff --git a/inst/extdata/OSD/C/COE.json b/inst/extdata/OSD/C/COE.json index bd5aceb901..9788fb85b8 100644 --- a/inst/extdata/OSD/C/COE.json +++ b/inst/extdata/OSD/C/COE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; dark gray (10YR 4/1) sandy loam, black (10YR 2/1) moist; weak fine subangular blocky structure parting to weak fine granular; slightly hard, friable, slightly sticky and slightly plastic; many very fine and fine roots; about 10 percent gravel; about 80 percent shale in the 0.1 to 76 mm fraction; slight effervescence; slightly alkaline; clear smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--6 to 16 inches; light brownish gray and gray (2.5Y 6/2 and 5Y 6/1) very gravelly coarse sand, dark grayish brown (2.5Y 4/2) moist; single grained; nonsticky and nonplastic; few very fine roots; about 45 percent gravel; about 80 percent shale in the 0.1 to 76 mm fraction; slight effervescence; moderately alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--16 to 60 inches; light gray (2.5Y 7/2) very gravelly coarse sand, dark gray and dark grayish brown (N 4/0 and 2.5Y 4/2) moist; single grained; nonsticky and nonplastic; some evidence of stratification; about 45 percent gravel; about 85 percent shale in the 0.1 to 76 mm fraction; strong effervescence in the upper part and slight effervescence below 30 inches; moderately alkaline." diff --git a/inst/extdata/OSD/C/COESSE.json b/inst/extdata/OSD/C/COESSE.json index 6914003962..4f6de992e2 100644 --- a/inst/extdata/OSD/C/COESSE.json +++ b/inst/extdata/OSD/C/COESSE.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--70 to 80 inches; olive brown (2.5Y 4/4) clay loam; many medium distinct light olive brown (2.5Y 5/6) and common medium distinct grayish brown (2.5Y 5/2) mottles; massive; very firm; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/C/COHAGEN.json b/inst/extdata/OSD/C/COHAGEN.json index 5b4594a3de..e80dc1820b 100644 --- a/inst/extdata/OSD/C/COHAGEN.json +++ b/inst/extdata/OSD/C/COHAGEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 3 inches; grayish brown (10YR 5/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak fine subangular blocky structure parting to weak medium granular; slightly hard, very friable; many roots; slight effervescence; slightly alkaline; clear wavy boundary. (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--3 to 8 inches; light brownish gray (2.5Y 6/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; weak medium and fine subangular blocky structure; slightly hard, very friable; common roots; slight effervescence; slightly alkaline; gradual boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--8 to 17 inches; light yellowish brown and light olive brown (2.5Y 6/4 and 5/5) fine sandy loam, olive brown (2.5Y 4/4) moist; weak medium subangular blocky structure; hard, friable; common grading to few roots; 25 percent soft sandstone fragments; slight effervescence; moderately alkaline; clear wavy boundary. (Combined C horizons 8 to 14 inches thick)" diff --git a/inst/extdata/OSD/C/COLBY.json b/inst/extdata/OSD/C/COLBY.json index fbbfd445c7..02b081988a 100644 --- a/inst/extdata/OSD/C/COLBY.json +++ b/inst/extdata/OSD/C/COLBY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 10 cm (0 to 4 inches); grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; weak fine platy structure to a depth of 5 cm (2 inches), weak fine granular structure below 5 cm (2 inches); slightly hard, friable; strong effervescence; moderately alkaline; gradual smooth boundary. (8 to 15 cm (3 to 6 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--10 to 20 cm (4 to 8 inches); light brownish gray (10YR 6/2) silt loam, grayish brown (10YR 5/2) moist; weak fine granular structure; slightly hard, friable; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 23 cm (0 to 9 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--20 to 51 cm (8 to 20 inches); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; massive; slightly hard, friable; few fine roots and root channels; porous; few soft lime accumulations; violent effervescence; moderately alkaline; gradual wavy boundary. (25 to 76 cm (10 to 30 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--51 to 200 cm (20 to 79 inches); very pale brown (10YR 7/3) silt loam, light yellowish brown (10YR 6/4) moist; massive; slightly hard, friable; porous; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/COLDENT.json b/inst/extdata/OSD/C/COLDENT.json index 9bbbd0d6cb..2c2a0e7209 100644 --- a/inst/extdata/OSD/C/COLDENT.json +++ b/inst/extdata/OSD/C/COLDENT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Bqk2--33 to 38 cm; very pale brown (10YR 7/3) fine sandy loam, brown (10YR 5/3) moist; strong medium platy structure; hard, firm and brittle, slightly sticky and nonplastic; common very fine and few fine horizontally oriented roots between plates; many very fine tubular pores; 5 percent gravel; many silica coats and laminae on faces of peds; secondary carbonates segregated as common fine coats on faces of peds; slightly effervescent matrix and strongly effervescent coats; strongly alkaline (pH 9.0); clear smooth boundary. (5 to 20 cm thick)" diff --git a/inst/extdata/OSD/C/COLFER.json b/inst/extdata/OSD/C/COLFER.json index 7401a2fcd0..fc9be2cc08 100644 --- a/inst/extdata/OSD/C/COLFER.json +++ b/inst/extdata/OSD/C/COLFER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bkb--50 to 55 inches; light brownish gray (2.5Y 6/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; common medium prominent light yellowish brown (10YR 6/4) and common medium prominent dark yellowish brown (10YR 4/4) iron masses in the matrix; the matrix color and iron accumulations are relict redoximorphic features; moderate coarse subangular blocky structure; hard, friable; common visible secondary calcium carbonate as nodules and soft masses; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--55 to 60 inches; pale yellow (2.5Y 8/2) loamy sand, light brownish gray (2.5Y 6/2) moist; common medium prominent light yellowish brown (10YR 6/4) iron masses in the matrix; the matrix color and iron accumulations are relict redoximorphic features; single grain; slightly hard, very friable; few visible secondary calcium carbonate as nodules and soft masses; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/COLLAMER.json b/inst/extdata/OSD/C/COLLAMER.json index a748ada456..4e10b254c1 100644 --- a/inst/extdata/OSD/C/COLLAMER.json +++ b/inst/extdata/OSD/C/COLLAMER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--114 to 183 cm; 80 percent dark yellowish brown (10YR 4/4), 10 percent yellowish brown (10YR 5/6), and 10 percent brown (10YR 5/3) silt loam; massive; friable; strong effervescence, by HCl, 1 normal; slightly alkaline, pH 8.0." diff --git a/inst/extdata/OSD/C/COLMENA.json b/inst/extdata/OSD/C/COLMENA.json index 3b35ad41f4..e211a71550 100644 --- a/inst/extdata/OSD/C/COLMENA.json +++ b/inst/extdata/OSD/C/COLMENA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Btk1--99 to 128 cm (39 to 50 in); variegated matrix with 50 percent light gray (10YR 7/2) and 50 percent light yellowish brown (10YR 6/4) sandy clay loam, 50 percent brown (10YR 5/3) and 50 percent grayish brown (10YR 5/2) moist; moderate medium prismatic structure; extremely hard, very friable; common fine roots; common very fine and fine tubular pores; 3 percent faint pale brown (10YR 6/3) clay films on surfaces along pores; 2 percent fine prominent irregular extremely weakly cemented white (7.5YR 8/1) calcium carbonate masses with sharp boundaries in matrix along faces of peds and 10 percent fine prominent irregular extremely weakly cemented white (7.5YR 8/1) calcium carbonate, finely disseminated with sharp boundaries infused in matrix; strong effervescence; slightly alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Btk2--128 to 155 cm (50 to 61 in); very pale brown (10YR 7/3) sandy clay loam, pale brown (10YR 6/3) moist; moderate medium prismatic structure; extremely hard, very friable; common fine roots; common very fine and fine tubular pores; 3 percent faint light yellowish brown (10YR 6/4) clay films on surfaces along pores; 15 percent fine prominent irregular extremely weakly cemented white (7.5YR 8/1) calcium carbonate masses with sharp boundaries in matrix along faces of peds; violent effervescence; slightly alkaline, pH 7.7; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Btk3--155 to 203 cm (61 to 80 in); very pale brown (10YR 7/4) sandy clay loam, pale brown (10YR 6/3) moist; moderate medium prismatic structure; very hard, very friable; common fine roots; common very fine and fine tubular pores; 3 percent faint brownish yellow (10YR 6/6) clay films on surfaces along pores; 20 percent medium prominent irregular extremely weakly cemented white (7.5YR 8/1) calcium carbonate masses with sharp boundaries in matrix along faces of peds and 5 percent coarse prominent irregular weakly cemented white (7.5YR 8/1) calcium carbonate masses with sharp boundaries along faces of peds; violent effervescence; slightly alkaline. (combined thickness of the 2Btk horizons is 38 to 130 cm [15 to 51 in])" diff --git a/inst/extdata/OSD/C/COLOCKUM.json b/inst/extdata/OSD/C/COLOCKUM.json index 59835f1979..13f7cff22c 100644 --- a/inst/extdata/OSD/C/COLOCKUM.json +++ b/inst/extdata/OSD/C/COLOCKUM.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Btk2--47 to 60 inches; pale brown (10YR 6/3) very gravelly silty clay loam, brown (10YR 4/3) moist; moderate fine subangular blocky structure; very hard, very firm, moderately sticky and moderately plastic; many very fine tubular pores; few faint and very faint clay bridges between mineral grains and few faint clay films lining pores and on surfaces of peds; 30 percent basalt gravel and 10 percent basalt cobbles; strong effervescence; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/C/COLVIN.json b/inst/extdata/OSD/C/COLVIN.json index f1feabf6aa..c6856ed2d0 100644 --- a/inst/extdata/OSD/C/COLVIN.json +++ b/inst/extdata/OSD/C/COLVIN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 10 inches; black (10YR 2/1) silty clay loam, dark gray (10YR 4/1) dry; weak coarse prismatic structure parting to moderate medium granular; hard, friable, sticky and plastic; many roots; many fine pores; strong effervescence; slightly alkaline; clear wavy boundary. (6 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg1--10 to 20 inches; gray (5Y 6/1) and olive gray (5Y 5/2) silty clay loam, gray (N 6/0) and white (N 8/0) dry; very weak medium subangular blocky structure parting to weak fine granular; hard, friable, slightly sticky and plastic; common roots; common fine pores; few masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg2--20 to 30 inches; light olive gray (5Y 6/2) and olive gray (5Y 5/2) silty clay loam, light gray (5Y 7/1) and gray (5Y 6/1) dry; common medium prominent light olive brown (2.5Y 5/6) redoximorphic concentrations; very weak fine subangular blocky structure; hard, friable, slightly sticky and plastic; few roots; common pores; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bkg horizons 8 to 54 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--30 to 60 inches; olive gray (5Y 5/2) silty clay loam, light gray (5Y 7/2) dry; many coarse prominent yellowish brown (10YR 5/8) and few medium prominent yellowish red (5YR 5/6) redoximorphic concentrations; massive; hard, friable, sticky and plastic; strong effervescence in upper part, gradually decreases to slight effervescence at 50 inches; moderately alkaline." diff --git a/inst/extdata/OSD/C/COLY.json b/inst/extdata/OSD/C/COLY.json index 4898b691a7..6afd809d7c 100644 --- a/inst/extdata/OSD/C/COLY.json +++ b/inst/extdata/OSD/C/COLY.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--10 to 20 cm, (4 to 8 inches ); dark grayish brown (10YR 4/2) interior, silt loam, light brownish gray (10YR 6/2) interior, dry; 21 percent sand; 57 percent silt; 22 percent clay; weak fine granular structure; very friable, slightly hard, nonsticky; common fine roots; common fine tubular pores; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; clear wavy boundary. Lab sample # 79P00715" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--20 to 37 cm, (8 to 15 inches ); grayish brown (10YR 5/2) interior, silt loam, light brownish gray (10YR 6/2) interior, dry; 22 percent sand; 58 percent silt; 20 percent clay; 1 percent fine distinct brownish yellow (10YR 6/8) mottles; weak coarse prismatic structure; very friable, slightly hard, nonsticky; common very fine and fine roots; few fine tubular pores; 5 percent fine threadlike carbonate masses on vertical faces of peds; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.3, pH meter 1:1 water; gradual wavy boundary. Lab sample # 79P00716" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "C2--37 to 86 cm, (15 to 34 inches ); grayish brown (10YR 5/2) interior, silt loam, light gray (10YR 7/2) interior, dry; 23 percent sand; 57 percent silt; 20 percent clay; 1 percent fine and medium distinct brownish yellow (10YR 6/8) mottles; weak coarse prismatic structure; very friable, hard, nonsticky; common very fine and fine roots; few fine tubular pores; 7 percent fine threadlike carbonate masses on vertical faces of peds; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.4, pH meter 1:1 water; diffuse wavy boundary. Lab sample # 79P00717" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "C3--86 to 121 cm, (34 to 48 inches ); brown (10YR 5/3) interior, silt loam, light gray (10YR 7/2) interior, dry; 26 percent sand; 54 percent silt; 20 percent clay; 5 percent medium distinct brownish yellow (10YR 6/8) mottles; weak very coarse prismatic parting to weak coarse prismatic structure; very friable, hard, nonsticky; few fine roots; 1 percent fine iron concretions; 11 percent fine and medium threadlike lime masses on vertical faces of peds; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.4, pH meter 1:1 water; diffuse wavy boundary. Lab sample # 79P00718" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--121 to 153 cm, (48 to 60 inches ); brown (10YR 5/3) interior, silt loam, light gray (10YR 7/2) interior, dry; 26 percent sand; 54 percent silt; 20 percent clay; 10 percent medium distinct brownish yellow (10YR 6/6) mottles; weak very coarse prismatic parting to weak coarse prismatic structure; very friable, hard, nonsticky; few fine roots; 11 percent fine and medium threadlike lime masses on vertical faces of peds; violent effervescence, by HCl, 1 normal; strongly alkaline, pH 8.5, pH meter 1:1 water. Lab sample # 79P00719" diff --git a/inst/extdata/OSD/C/CONATA.json b/inst/extdata/OSD/C/CONATA.json index 94ea8376f7..39ef6db709 100644 --- a/inst/extdata/OSD/C/CONATA.json +++ b/inst/extdata/OSD/C/CONATA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--6 to 12 inches; pinkish gray (5YR 6/2) clay, reddish brown (5YR 5/3) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; very hard, firm, sticky and plastic; many very fine fragments of shale; few fine accumulations of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (5 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--12 to 17 inches; vari-colored pinkish gray (5YR 6/2), light reddish brown (5YR 6/3), and very pale brown (10YR 7/4) clay, reddish gray (5YR 5/2), reddish brown (5YR 5/3), and yellowish brown (10YR 5/6) moist; weak medium and coarse prismatic structure parting to weak medium and coarse subangular blocky; very hard, very firm, sticky and plastic; many very fine fragments of shale; common fine accumulations of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (4 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--17 to 30 inches; vari-colored yellow (10YR 7/6), light gray (10YR 7/1), white (10YR 8/1), and light reddish brown (5YR 6/3) mudstone, brownish yellow (10YR 6/6), gray (10YR 6/1) and reddish brown (5YR 5/3) moist; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CONESUS.json b/inst/extdata/OSD/C/CONESUS.json index e9e8050a9a..3038cec12e 100644 --- a/inst/extdata/OSD/C/CONESUS.json +++ b/inst/extdata/OSD/C/CONESUS.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--91 to 107 cm; grayish brown (2.5Y 5/2) gravelly loam; massive parting to weak thick platy structure; very firm, slightly plastic; few pores; many medium distinct yellowish brown (10YR 5/4) masses of oxidized iron; 5 percent cobbles and 25 percent gravels; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CONRAD.json b/inst/extdata/OSD/C/CONRAD.json index 82f0b1e7a6..4e6f3c218c 100644 --- a/inst/extdata/OSD/C/CONRAD.json +++ b/inst/extdata/OSD/C/CONRAD.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--25 to 42 inches; Light yellowish brown (10YR 6/4) fine sand; few fine distinct light brownish gray mottles; single grain; loose; slight effervescence; mildly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--42 to 49 inches; Pale brown (10YR 6/3) sand; single grain; loose; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--49 to 60 inches; Brown (10YR 5/3) sand; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/COOCREEK.json b/inst/extdata/OSD/C/COOCREEK.json index 837a6bf2d6..2d38f0f3a6 100644 --- a/inst/extdata/OSD/C/COOCREEK.json +++ b/inst/extdata/OSD/C/COOCREEK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 5 inches; reddish brown (5YR 4/4) loam, dark reddish brown (5YR 3/4) moist; weak medium granular structure; soft, very friable, nonsticky and nonplastic; many fine and very fine and common medium roots; few very fine and fine continuous random irregular pores; 2 percent gravel; strong effervescent, calcium carbonate disseminated; 5 percent calcium carbonate equivalent; slightly alkaline (pH 7.6); clear smooth boundary. (4 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--5 to 12 inches; yellowish red (5YR 5/6) loam, reddish brown (5YR 4/4)moist; moderate medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; many fine and very fine and common medium roots; common very fine and fine continuous random irregular pores; 8 percent gravel; strong effervescent, calcium carbonate disseminated; slightly alkaline (pH 7.8); gradual wavy boundary. (7 to 17 inches thick)" diff --git a/inst/extdata/OSD/C/COOKSON.json b/inst/extdata/OSD/C/COOKSON.json index 788b6a4f0f..15d42bad3e 100644 --- a/inst/extdata/OSD/C/COOKSON.json +++ b/inst/extdata/OSD/C/COOKSON.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C--79 to 91 centimeters; reddish brown (5YR 5/4) fine sandy loam; massive; firm; about 5 percent fine, medium and coarse gravel; moderately alkaline; strong effervescence; abrupt smooth boundary." diff --git a/inst/extdata/OSD/C/COONSKIN.json b/inst/extdata/OSD/C/COONSKIN.json index a303d01ac3..5086811552 100644 --- a/inst/extdata/OSD/C/COONSKIN.json +++ b/inst/extdata/OSD/C/COONSKIN.json @@ -135,7 +135,7 @@ "cf_class": "cobbly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--7 to 16 inches; very pale brown (10YR 7/3) cobbly silt loam, yellowish brown (10YR 5/4) moist; moderate medium subangular blocky structure; hard, firm, slightly sticky and slightly plastic; common very fine and fine, few medium roots; common very fine and fine tubular pores; 10 percent gravel, 10 percent cobbles; violent effervescence; moderately alkaline (pH 8.0); clear wavy boundary. (0 to 9 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very cobbly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkq--16 to 30 inches; white (10YR 8/2) discontinuous, weakly cemented very cobbly fine sandy loam, very pale brown (10YR 7/4) moist; massive; hard, firm; few very fine and fine roots; few fine tubular pores; 20 percent gravel (mainly indurated duripan fragments), 25 percent cobbles; violent effervescence; sodic; moderately alkaline (pH 8.4); abrupt smooth boundary. (8 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkqm--30 to 40 inches; very pale brown (10YR 7/3) to yellow (10YR 7/6) continuous, indurated prominent siliceous laminae 1 to 2 cm thick over very pale brown (10YR 8/3) to light yellowish brown (10YR 6/4) continuous, indurated very thick plates; violent effervescence, lime is segregated in common fine seams and pendents." diff --git a/inst/extdata/OSD/C/CORINTH.json b/inst/extdata/OSD/C/CORINTH.json index d87d1e7003..9fc2a2c5e6 100644 --- a/inst/extdata/OSD/C/CORINTH.json +++ b/inst/extdata/OSD/C/CORINTH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 13 centimeters (0 to 5 inches); grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate fine granular structure; hard, firm, slightly sticky, slightly plastic; many fine roots; few worm casts; few flat pieces of calcite; strong effervescence; moderately alkaline, 5 percent calcium carbonate; clear smooth boundary" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--13 to 23 centimeters (5 to 9 inches); light olive brown (2.5Y 5/3) silty clay loam, olive brown (2.5Y 4/3) moist; moderate fine and very fine subangular blocky structure; hard, firm moderately sticky, moderately plastic; many fine roots; few worm casts; few flat pieces of calcite; strong effervescence; moderately alkaline, 10 percent calcium carbonate; gradual smooth boundary. (Combined thickness of the A horizons is 5 to 41 centimeters (2 to 16 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--23 to 41 centimeters (9 to 16 inches); light yellowish brown (2.5Y 6/3) silty clay, olive brown (2.5Y 4/3) moist; moderate fine and very fine subangular blocky structure; very hard, firm, moderately sticky, very plastic; many fine roots; 44 percent clay; few worm casts; few flat pieces of calcite; strong effervescence; moderately alkaline, 20 percent calcium carbonate; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--41 to 56 centimeters (16 to 22 inches); light yellowish brown (2.5Y 6/3) silty clay, olive brown (2.5Y 4/3) moist; moderate fine subangular blocky structure; very hard, firm, moderately sticky, very plastic; few very fine roots; 47 percent clay; few soft platy fragments of calcareous shale; few flat pieces of calcite; violent effervescence; moderately alkaline, 28 percent calcium carbonate; gradual smooth boundary. (The combined thickness of the Bw horizons is 10 to 74 centimeters (4 to 29 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--56 to 76 centimeters (22 to 30 inches); brownish yellow (10YR 6/6) silty clay; yellowish brown (10YR 5/6) moist; weak fine subangular blocky structure with many soft platy fragments of chalky shale; very hard, firm, moderately sticky, very plastic; few fine roots; 47 percent clay; many flat pieces of calcite; violent effervescence; moderately alkaline, 29 percent calcium carbonate; gradual boundary. (0 to 31 centimeters (0 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--76 to 102 centimeters (30 to 40 inches); light yellowish brown (10YR 6/4) and brown (10YR 4/3) soft platy shale of silty clay loam texture; strong effervescence; moderate excavation difficulty; moderately alkaline, 36 percent calcium carbonate." diff --git a/inst/extdata/OSD/C/COTTONTHOMAS.json b/inst/extdata/OSD/C/COTTONTHOMAS.json index c439105369..4da76f57e4 100644 --- a/inst/extdata/OSD/C/COTTONTHOMAS.json +++ b/inst/extdata/OSD/C/COTTONTHOMAS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--89 to 114 cm; pale brown (10YR 6/3) ashy fine sandy loam, brown (10YR 4/3) moist; massive; hard, firm, nonsticky and nonplastic; common very fine roots; few very fine tubular pores; slightly effervescent matrix; strongly effervescent common fine irregular carbonate in seams; slightly alkaline (pH 7.8); gradual smooth boundary. (20 to 46 cm thick)" diff --git a/inst/extdata/OSD/C/COUNTERFEIT.json b/inst/extdata/OSD/C/COUNTERFEIT.json index af0f32daf7..b44694110a 100644 --- a/inst/extdata/OSD/C/COUNTERFEIT.json +++ b/inst/extdata/OSD/C/COUNTERFEIT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "^Au--0 to 13 cm; clay loam, very dark grayish brown (10YR 3/2), moist; strong medium granular structure; friable, moderately sticky, very plastic; finely disseminated carbonate; common flat angular channers; slight effervescence; slightly alkaline (pH 7.5); channers are from road-base and crushed paralithic bedrock; abrupt wavy boundary (8 to 26 cm)." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "^Cu1--13 to 46 cm; clay, olive brown (2.5Y 4/3), moist; massive; firm, very sticky, very plastic; common distinct pressure faces; common medium distinct irregular strong brown (7.5YR 5/6), masses of oxidized iron and common medium distinct irregular light brownish gray (10YR 6/2), iron depletions; common distinct carbonate masses in matrix; common channers; few artifacts; strong effervescence; moderately alkaline (pH 8.0); channers are from road-base and crushed paralithic bedrock, calcium carbonate masses are geogenic from the source material; abrupt wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "^Cu2--46 to 95 cm; clay, olive brown (2.5Y 4/4), moist; massive; firm, very sticky, very plastic; many pressure faces; common medium distinct irregular yellowish brown (10YR 5/6), masses of oxidized iron and common medium distinct irregular light brownish gray (10YR 6/2), iron depletions; few channers; few artifacts; strong effervescence; slightly alkaline (pH 7.5); channers are from road-base and crushed paralithic bedrock; abrupt wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "^C1--95 to 145 cm; clay loam, olive brown (2.5Y 4/4), moist; firm, very sticky, very plastic; pressure faces; common medium prominent irregular yellowish red (5YR 4/6), masses of oxidized iron; common irregular pale brown (10YR 6/3), carbonate masses; common para-channers; strong effervescence; slightly alkaline (pH 7.5); channers are from crushed paralithic bedrock, calcium carbonate masses are geogenic from the source material abrupt wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "^C2--145 to 183 cm; sandy loam, dark yellowish brown (10YR 4/6), moist; massive; friable, slightly sticky, slightly plastic; common coarse distinct yellowish brown (10YR 5/6), masses of oxidized iron and common medium distinct gray (2.5Y 6/1), iron depletions; slight effervescence; moderately alkaline (pH 8.0) (combine thickness of the ^C(u) horizons is 145 to 192 cm)." diff --git a/inst/extdata/OSD/C/COVEY.json b/inst/extdata/OSD/C/COVEY.json index 51921d0cf3..bf084cad63 100644 --- a/inst/extdata/OSD/C/COVEY.json +++ b/inst/extdata/OSD/C/COVEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violenlty effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--57 to 97 cm; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; weak medium subangular blocky structure; slightly hard, friable, moderately sticky, moderately plastic; few very fine roots throughout; few fine dendritic tubular pores; 5 percent gravel; 30 percent carbonate concretions on bottom surfaces of rock fragments and 10 percent fine carbonate masses in matrix; violenlty effervescent; moderately alkaline (pH 8.4); gradual smooth boundary. (36 to 42 cm thick)" diff --git a/inst/extdata/OSD/C/COVINGTON.json b/inst/extdata/OSD/C/COVINGTON.json index 1cb8da2940..11bb58c6e2 100644 --- a/inst/extdata/OSD/C/COVINGTON.json +++ b/inst/extdata/OSD/C/COVINGTON.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BCg -- 25 to 33 inches; dark gray (N4/0) clay; moderate coarse prismatic structure parting to strong fine and medium blocky; very firm, very plastic, very sticky; few roots; few medium light gray (10YR 7/1) lime nodules; common black patches on peds; many fine distinct dark grayish brown (2.5Y 4/2) areas of iron depletion; slightly alkaline, strong effervescence with cold dilute hydrochloric acid; abrupt wavy boundary. (7 to 18 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg -- 33 to 65 inches; dark gray (N4/0) clay; moderate medium prismatic structure parting to strong fine, medium, and coarse angular blocky; very firm, very plastic, very sticky; few roots; few fine black patches on peds; few pale brown (10YR 6/3) nodules all of which do not effervesce with cold dilute hydrochloric acid; violent effervescence on faces of peds, and strong effervescence in ped interiors; many coarse prominent olive brown (2.5Y 4/4) masses of iron accumulation; slightly alkaline." diff --git a/inst/extdata/OSD/C/COZAD.json b/inst/extdata/OSD/C/COZAD.json index a2be0c9d47..625805db44 100644 --- a/inst/extdata/OSD/C/COZAD.json +++ b/inst/extdata/OSD/C/COZAD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--122 to 203 centimeters (48 to 80 inches); light brownish gray (10YR 6/2) very fine sandy loam, grayish brown (10YR 5/2) moist; massive; slightly hard, very friable; thin stratification; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CRAFT.json b/inst/extdata/OSD/C/CRAFT.json index 210db88957..ea7a6ad1b6 100644 --- a/inst/extdata/OSD/C/CRAFT.json +++ b/inst/extdata/OSD/C/CRAFT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; light brownish gray (10YR 6/2) very fine sandy loam, dark grayish brown (10YR 4/2) moist; weak medium granular structure; slightly hard, friable; violent effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--6 to 14 inches; light brownish gray (10YR 6/2) very fine sandy loam, dark grayish brown (10YR 4/2) moist; weak medium prismatic structure; slightly hard, friable; violent effervescence; moderately alkaline; gradual smooth boundary. (Combined A horizons 4 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--14 to 21 inches; light gray (10YR 7/2) very fine sandy loam, grayish brown (10YR 5/2) moist; massive; soft, very friable; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--21 to 29 inches; light gray (10YR 7/2) loam, grayish brown (10YR 5/2) moist; massive; slightly hard, friable; violent effervescence; slightly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--29 to 36 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable; violent effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C4--36 to 40 inches; gray (10YR 6/1) silty clay loam, dark gray (10YR 4/1) moist; massive; slightly hard, friable; violent effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--40 to 60 inches; pale brown (10YR 6/3) very fine sandy loam, brown (10YR 4/3) moist; massive; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CRANBAY.json b/inst/extdata/OSD/C/CRANBAY.json index d4b834add8..4d686a71b1 100644 --- a/inst/extdata/OSD/C/CRANBAY.json +++ b/inst/extdata/OSD/C/CRANBAY.json @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--33 to 47 inches; pink (5YR 7/4) extremely gravelly clay loam, yellowish red (5YR 5/8) moist; massive; hard, firm, sticky and plastic; common fine and very fine pores; 5 percent stones, 15 percent cobbles and 55 percent gravel; violent effervescence (17 percent calcium carbonate equivalent); carbonates are disseminated; moderately alkaline (pH 8.4); gradual wavy boundary (10 to 14 inches thick)." @@ -250,7 +250,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--47 to 60 inches; reddish yellow (5YR 6/6) extremely gravelly clay loam, yellowish red (5YR 5/8) moist; massive; hard, firm, sticky and plastic; common fine and very fine pores; 15 percent cobbles and 60 percent gravel; violent effervescence (16 percent calcium carbonate equivalent); carbonates are disseminated; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/C/CRESCO.json b/inst/extdata/OSD/C/CRESCO.json index 982bf9cfbc..965d1ec5f7 100644 --- a/inst/extdata/OSD/C/CRESCO.json +++ b/inst/extdata/OSD/C/CRESCO.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--47 to 60 inches; strong brown (7.5YR 5/8) clay loam, many medium prominent gray (5Y 6/1) mottles; massive; firm; some pebbles and small stones; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CRESKEN.json b/inst/extdata/OSD/C/CRESKEN.json index ab22de887e..71ae925c75 100644 --- a/inst/extdata/OSD/C/CRESKEN.json +++ b/inst/extdata/OSD/C/CRESKEN.json @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--55 to 60 inches; mottled yellowish brown (10YR 5/4), yellowish brown (10YR 5/6), and grayish brown (2.5Y 5/2) loam (24 percent clay); massive; very firm; few pebbles; few fine yellowish red (5YR 4/6) concretions (iron oxides); common fine soft lime accumulations; few thin soft lime threads; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/C/CRETE.json b/inst/extdata/OSD/C/CRETE.json index 33c5927e49..76c0c7f03e 100644 --- a/inst/extdata/OSD/C/CRETE.json +++ b/inst/extdata/OSD/C/CRETE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC--89 to 107 centimeters (35 to 42 inches); light olive brown (2.5Y 5/4) silty clay, olive brown (2.5Y 4/4) moist; moderate medium blocky structure; very hard, very firm; many small soft accumulations of calcium carbonate; strong effervescence; slightly alkaline; clear wavy boundary. (0 to 30 centimeters (0 to 12 inches) thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--107 to 152 centimeters (42 to 60 inches); light yellowish brown (2.5Y 6/4) silty clay loam, light olive brown (2.5Y 5/4) moist; few faint gray (10YR 6/1) and brownish yellow (10YR 6/6) iron stains in the matrix; massive; slightly hard, firm; few soft masses of calcium carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CRIPPIN.json b/inst/extdata/OSD/C/CRIPPIN.json index e15c6ae73c..916dd5706a 100644 --- a/inst/extdata/OSD/C/CRIPPIN.json +++ b/inst/extdata/OSD/C/CRIPPIN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (N 2/0) loam; cloddy parting to moderate fine granular structure; friable; common fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A1--7 to 11 inches; black (N 2/0) loam; moderate fine granular and some weak fine subangular blocky structure; friable; common fine roots; slight effervescence; slightly alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--11 to 16 inches; black (10YR 2/1) loam; moderate fine granular and some weak fine subangular blocky structure; friable; common fine roots; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the A horizon is 12 to 23 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BA--16 to 20 inches; mixed black (10YR 2/1), very dark gray (10YR 3/1) and dark grayish brown (10YR 4/2) loam; kneaded very dark grayish brown (10YR 3/2); weak fine subangular blocky structure parting to moderate fine granular; friable; common fine roots; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 6 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw1--20 to 27 inches; dark grayish brown (10YR 4/2) with about 20 percent very dark gray (10YR 3/1) loam, kneaded dark grayish brown (10YR 4/2); few fine faint brown (10YR 5/3) mottles; weak fine subangular blocky structure; friable; common fine roots; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--27 to 35 inches; dark grayish brown (10YR 4/2) loam; common fine distinct reddish brown (2.5YR 5/4) mottles; weak fine subangular blocky structure; friable; common fine roots; some mixing of light olive brown (2.5Y 5/4) in lower part; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bw horizon is 8 to 19 inches.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--35 to 60 inches; dark grayish brown (10YR 4/2) loam; many fine distinct yellowish brown (10YR 5/6) mottles; common fine distinct light olive brown (2.5Y 5/4) and light brownish gray (2.5Y 6/2) mottles; massive; friable; common fine yellowish red and strong brown concretions (oxides); strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CROKE.json b/inst/extdata/OSD/C/CROKE.json index f4a16fb5ea..30da6c9c37 100644 --- a/inst/extdata/OSD/C/CROKE.json +++ b/inst/extdata/OSD/C/CROKE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Cg1--25 to 38 inches; olive gray (5Y 5/2) silty clay; few fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; moderate medium subangular blocky structure; firm; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--38 to 60 inches; gray (5Y 5/1) silty clay; common fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations; moderate medium subangular blocky structure parting to moderate very fine angular blocky; firm; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/C/CROOKEDFLAT.json b/inst/extdata/OSD/C/CROOKEDFLAT.json index 11ecd9ffc3..955350e99d 100644 --- a/inst/extdata/OSD/C/CROOKEDFLAT.json +++ b/inst/extdata/OSD/C/CROOKEDFLAT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--41 to 63 cm; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; strong medium subangular blocky structure; hard, friable, moderately sticky, moderately plastic; very few very fine roots; common very fine dendritic tubular pores; 20 percent faint clay films on all faces of peds; 5 percent fine threadlike calcium carbonate masses in the matrix; finely disseminated calcium carbonates throughout; violent effervescence; moderately alkaline (pH 8.2); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--63 to 105 cm; light gray (10YR 7/2) silt loam, brown (10YR 5/3) moist; strong coarse subangular blocky structure; hard, friable, moderately sticky, moderately plastic; many very fine dendritic tubular pores; 10 percent faint clay films on all faces of peds; 10 percent fine threadlike calcium carbonate in the matrix; finely disseminated calcium carbonates throughout; violent effervescence; moderately alkaline (pH 8.3); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--105 to 150 cm; light gray (10YR 7/2) silt loam, brown (10YR 5/3) moist; moderate coarse subangular blocky structure; moderately hard, very friable, slightly sticky, slightly plastic; common very fine tubular pores; 10 percent fine threadlike and irregular shaped calcium carbonate masses in the matrix; finely disseminated calcium carbonates throughout; violent effervescence; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/C/CROPLEY.json b/inst/extdata/OSD/C/CROPLEY.json index e6367fdcaa..4081f77ec3 100644 --- a/inst/extdata/OSD/C/CROPLEY.json +++ b/inst/extdata/OSD/C/CROPLEY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bss3--33 to 51 inches; dark gray (2.5Y 4/1) broken face clay, very dark gray (2.5Y 3/1) broken face moist; 50 percent clay; strong coarse subangular blocky structure; hard, firm, very sticky, very plastic; few very fine roots; few very fine tubular pores; 40 percent pressure faces on slickensides; 10 percent irregular carbonate masses in matrix; very slight effervescence; slightly alkaline, pH 7.8 by pH meter 1:1 water; abrupt smooth boundary. ( combined Bss horizons 14 to 38 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BCk1--51 to 57 inches; brown (7.5YR 5/3) broken face sandy clay loam, brown (7.5YR 4/3) broken face moist; 32 percent clay; moderate medium subangular blocky structure; hard, firm, moderately sticky, moderately plastic; many very fine tubular pores; 10 percent clay films on all faces of peds; 10 percent irregular carbonate masses in matrix; strong effervescence; moderately alkaline, pH 8.0 by pH meter 1:1 water; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk2--57 to 63 inches; brown (7.5YR 5/3) broken face sandy clay loam, brown (7.5YR 4/3) broken face moist; 28 percent clay; moderate medium subangular blocky structure; slightly hard, friable, moderately sticky, slightly plastic; common very fine tubular pores; 10 percent clay films on all faces of peds; 1 percent subangular indurated 2 to 75 millimeter mixed rock fragments; strong effervescence; moderately alkaline, pH 8.0 by pH meter 1:1 water;" diff --git a/inst/extdata/OSD/C/CROSSPLAIN.json b/inst/extdata/OSD/C/CROSSPLAIN.json index fcb1b2858f..8d6cd3900e 100644 --- a/inst/extdata/OSD/C/CROSSPLAIN.json +++ b/inst/extdata/OSD/C/CROSSPLAIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg1--23 to 28 inches; olive gray (5Y 5/2) clay loam, gray (5Y 6/1) dry; common medium prominent yellowish brown (10YR 5/6) redox concentrations; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable, slightly sticky, and slightly plastic; shiny coats on vertical faces of peds; many fine dark masses and few dark concretions (iron and manganese oxides); many medium soft masses and common medium concretions of calcium carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg2--28 to 36 inches; olive gray (5Y 5/2) clay loam, gray (5Y 6/1) dry; many coarse and medium prominent light olive brown (2.5Y 5/6) redox concentrations; weak coarse subangular blocky structure parting to weak medium subangular blocky; very hard, friable, sticky, and plastic; common medium dark masses and common fine dark concretions (iron and manganese oxides); common medium concretions and many medium soft masses of calcium carbonate; strong effervescence; slightly alkaline; diffuse boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg3--36 to 48 inches; olive gray (5Y 5/2) heavy loam, gray (5Y 6/1) dry; many medium and coarse prominent light olive brown (2.5Y 5/6) redox concentrations; weak coarse subangular blocky structure; very hard, friable, sticky, and plastic; common medium dark masses and few medium dark concretions (iron and manganese oxides); many medium soft masses of calcium carbonate; strong effervescence; slightly alkaline; diffuse boundary. (Combined thickness of Bk horizon ranges from 10 inches to 36 inches.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--48 to 60 inches; olive gray (5Y 5/2) loam, gray (5Y 6/1) dry; many coarse and medium prominent light olive brown (2.5Y 5/6) redox concentrations; massive with laminations evident; very hard, friable, sticky, and plastic; common medium dark masses and few fine dark concretions (iron and manganese oxides); few medium soft masses of calcium carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/C/CROWTHER.json b/inst/extdata/OSD/C/CROWTHER.json index 1e04ea0203..5dc80e5380 100644 --- a/inst/extdata/OSD/C/CROWTHER.json +++ b/inst/extdata/OSD/C/CROWTHER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Oe---0 to 3 centimeters (0 to 1 inches); very dark grayish brown (10YR 3/2) mucky peat, dark grayish brown (10YR 4/2) dry; slightly hard, friable; strong effervescence; finely disseminated carbonate throughout; moderately alkaline; abrupt smooth boundary. (0 to 8 centimeters (0 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ak1--3 to 11 centimeters (1 to 4 inches); very dark gray (10YR 3/1) loam, gray (10YR 5/1) dry; weak fine granular structure; soft, very friable; violent effervescence; finely disseminated carbonate throughout; 25 percent calcium carbonate equivalent; moderately alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak2--11 to 18 centimeters (4 to 7 inches); very dark gray (10YR 3/1) clay loam, gray (10YR 5/1) dry; weak fine granular structure; slightly hard, friable; violent effervescence; finely disseminated carbonate throughout; 31 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak3--18 to 23 centimeters (7 to 9 inches); very dark grayish brown (10YR 3/2)) clay loam, gray (10YR 6/1) dry; weak medium subangular blocky structure parting to weak fine granular; slightly hard, friable; violent effervescence; finely disseminated carbonate throughout; 39 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak4--23 to 49 centimeters (9 to 19 inches); very dark gray (10YR 3/1) loam, gray (10YR 5/1) dry; few, fine faint dark yellowish brown (10YR 4/4) moist iron masses in the matrix; weak coarse subangular blocky structure parting to weak fine granular; slightly hard, friable; violent effervescence; finely disseminated carbonate throughout; 33 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary. [Combined thickness of the Ak horizon is 18 to 51 centimeters (7 to 20 inches).]" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "ACk--49 to 74 centimeters (19 to 29 inches); dark grayish brown (10YR 4/2) sandy clay loam, light gray (10YR 7/1) dry; few fine faint dark yellowish brown (10YR 4/4) moist iron masses in the matrix; weak coarse subangular blocky structure; slightly hard, friable; violent effervescence; finely disseminated carbonate throughout; 25 percent calcium carbonate equivalent; moderately alkaline; clear wavy boundary. [0 to 38 centimeters (0 to 15 inches thick)]" diff --git a/inst/extdata/OSD/C/CRUCES.json b/inst/extdata/OSD/C/CRUCES.json index fc0d997a56..fbfa05a158 100644 --- a/inst/extdata/OSD/C/CRUCES.json +++ b/inst/extdata/OSD/C/CRUCES.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btk--12 to 14 inches; red (2.5YR 4/6) sandy clay loam, dark red (2.5YR 3/6) moist; weak very coarse prismatic structure parting to weak medium subangular blocky structure; hard, firm; few roots; sand grains coated with clay; few calcium carbonate filaments; scattered, extremely hard, subangular and rounded, calcium carbonate-cemented fragments 2 mm to 5 cm in diameter; moderately effervescent; moderately alkaline; abrupt smooth boundary. (1 to 5 inches thick)" diff --git a/inst/extdata/OSD/C/CUBDEN.json b/inst/extdata/OSD/C/CUBDEN.json index 70c98e94b5..ac2a76acbf 100644 --- a/inst/extdata/OSD/C/CUBDEN.json +++ b/inst/extdata/OSD/C/CUBDEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 10 inches; black (10YR 2/1) silty clay loam, very dark gray (10YR 3/1) dry; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; few very fine accumulations of carbonate; strong effervescence (about 9 percent calcium carbonate); slightly alkaline; abrupt smooth boundary. (7 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "ABk--10 to 14 inches; very dark gray (10YR 3/1) silty clay loam, gray (10YR 5/1) dry; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; many fine and very fine accumulations of carbonate; strong effervescence (about 16 percent calcium carbonate); moderately alkaline; clear wavy boundary. (0 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--14 to 22 inches; dark grayish brown (2.5Y 4/2) silty clay loam, light gray (2.5Y 7/2) dry; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine roots; disseminated carbonate throughout; violent effervescence (about 22 percent calcium carbonate); moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--22 to 28 inches; light olive brown (2.5Y 5/3) silt loam, light gray (2.5Y 7/2) dry; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; disseminated carbonate throughout; violent effervescence (about 23 percent calcium carbonate); moderately alkaline; clear wavy boundary. (combined thickness of Bk horizons is 8 to 30 inches)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--28 to 40 inches; light olive brown (2.5Y 5/4) silt loam, pale yellow (2.5Y 7/4) dry; few fine prominent yellowish red (5YR 5/8) mottles; massive; hard, friable, slightly sticky and slightly plastic; few very fine roots; strong effervescence (about 17 percent calcium carbonate); moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--40 to 50 inches; light olive brown (2.5Y 5/4) silt loam, pale yellow (2.5Y 7/3) dry; common fine prominent yellowish red (5YR 5/8) mottles; few fine dark reddish brown (5YR 3/3) accumulations of Fe and Mn oxides; massive; very hard, friable, slightly sticky and slightly plastic; few fine accumulations of carbonate; strong effervescence (about 14 percent calcium carbonate); slightly alkaline; gradual wavy boundary. (combined thickness of C horizons is 15 to 45 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--50 to 60 inches; olive brown (2.5Y 4/4) clay loam, light yellowish brown (2.5Y 6/4) dry; many fine prominent yellowish red (5YR 5/8) mottles; massive; hard, friable, slightly sticky and slightly plastic; many fine faint dark reddish brown (5YR 3/3) accumulations of Fe and Mn oxides; about 1 percent pebbles; few fine accumulations of carbonate; strong effervescence (about 14 percent calcium carbonate); moderately alkaline." diff --git a/inst/extdata/OSD/C/CULLISON.json b/inst/extdata/OSD/C/CULLISON.json index 166fd3dc98..6239f05cc2 100644 --- a/inst/extdata/OSD/C/CULLISON.json +++ b/inst/extdata/OSD/C/CULLISON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Oe--0 to 3 centimeters (0 to 1 inches); very dark brown (10YR 2/2) Mucky peat, dark grayish brown (10YR 4/2) dry; soft, friable; violent effervescence; finely disseminated carbonate throughout; moderately alkaline; clear smooth boundary. (0 to 8 centimeters (0 to 3 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak1--3 to 20 centimeters (1 to 8 inches); black (10YR 2/1) loam, dark gray (10YR 4/1) dry; moderate very fine and fine granular structure; soft, very friable; many very fine and fine and few medium roots; violent effervescence; finely disseminated carbonate throughout; 23 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak2--20 to 36 centimeters (8 to 14 inches); very dark gray (10YR 3/1) clay loam, gray (10YR 5/1) dry; weak medium subangular blocky structure parting to moderate very fine and fine granular; slightly hard, very friable; many very fine and fine and few medium roots; violent effervescence; finely disseminated carbonate throughout; 35 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Ak3--36 to 46 centimeters (14 to 18 inches); very dark gray (10YR 3/1) clay loam, dark gray (10YR 4/1) dry; weak medium subangular blocky structure parting to moderate fine granular; slightly hard, friable; common very fine and fine and few medium roots; violent effervescence; finely disseminated carbonate throughout; 42 percent calcium carbonate equivalent; moderately alkaline; gradual irregular boundary. (Combined Ak horizon is 18 to 117 centimeters (7 to 46 inches) thick." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg1--46 to 61 centimeters (18 to 24 inches); dark gray (10YR 4/1) clay loam, gray (10YR 5/1) dry; weak medium subangular blocky structure parting to weak fine granular; slightly hard, friable; few very fine and medium roots; violent effervescence; finely disseminated carbonate throughout; 56 percent calcium carbonate equivalent; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg2--61 to 76 centimeters (24 to 30 inches); gray (10YR 5/1) clay loam, gray (10YR 6/1) dry; weak coarse subangular blocky structure parting to weak fine granular; slightly hard, friable; few very fine and fine roots; violent effervescence; finely disseminated carbonate throughout; 51 percent calcium carbonate equivalent; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg3--76 to 117 centimeters (30 to 46 inches); gray (10YR 5/1) and dark gray (10YR 4/1) clay loam, light gray (10YR 7/1) and gray (10YR 6/1) dry; weak medium and coarse subangular blocky structure parting to weak fine granular structure; hard, friable; few very fine roots; violent effervescence; finely disseminated carbonate throughout; 39 percent calcium carbonate equivalent; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg4--117 to 200 centimeters (46 to 79) inches; grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) loam, light gray (2.5Y 7/2) and pale yellow (2.5Y 8/2) dry; few fine distinct very dark gray (10YR 3/1) moist iron depletions in the matrix; weak medium and coarse subangular blocky structure; slightly hard, very friable; few very fine roots; violent effervescence; finely disseminated carbonate throughout; 34 percent calcium carbonate equivalent; moderately alkaline. & RRH in 3/2007: All changed to metric. Introductory paragraph: revised. Typical pedon: revised, extended Ak horizon to include all of mollic epipedon. RIC's: revised including the O horizon: described ranges as in other horizons, Ak horizon: Textures: added mucky loam and mucky fine sandy loam. Geographic Setting through Distribution and Extent: revised. Geographically Associated Soils: Deleted Crowther, Els, Gannett, and Gus, added Elsmere and Nenzel. Additional Data: revised. & RRH in 3/2009: Introductory paragraph and Geographic Setting: Changed slope range to 0 to 1 percent. Typical pedon: changed loam to mucky peat to agree with Oe horizon." diff --git a/inst/extdata/OSD/C/CUMBRES.json b/inst/extdata/OSD/C/CUMBRES.json index ab4031bd16..b645de2e9b 100644 --- a/inst/extdata/OSD/C/CUMBRES.json +++ b/inst/extdata/OSD/C/CUMBRES.json @@ -181,7 +181,7 @@ "cf_class": "extremely stony", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C1ca--16 to 22 inches; light gray (10YR 7/2) extremely stony sandy loam, grayish brown (10YR 5/2) moist; massive; hard, firm; 70 percent lime-coated rock fragments; very strongly effervescent with much disseminated lime and many lime nodules; moderately alkaline. (4 to 10 inches thick)" diff --git a/inst/extdata/OSD/C/CUPVAR.json b/inst/extdata/OSD/C/CUPVAR.json index ad2095aec6..ad78fa3bca 100644 --- a/inst/extdata/OSD/C/CUPVAR.json +++ b/inst/extdata/OSD/C/CUPVAR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bkqm--21 to 25 inches; light yellowish brown (10YR 6/4) strongly cemented duripan, dark brown (10YR 3/3) moist; strong medium platy structure with thin continuous laminar capping 1/4 inch thick; extremely hard, very firm and brittle; many very fine tubular pores; violently effervescent with lime and silica segregated in filaments and slightly effervescent matrix; moderately alkaline (pH 8.4); abrupt smooth boundary. (3 to 10 inches thick)" diff --git a/inst/extdata/OSD/C/CURABITH.json b/inst/extdata/OSD/C/CURABITH.json index 924e80c6ba..23b930a024 100644 --- a/inst/extdata/OSD/C/CURABITH.json +++ b/inst/extdata/OSD/C/CURABITH.json @@ -89,7 +89,7 @@ "cf_class": "channery", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 10 inches; dark grayish brown (10YR 4/2) loam, very dark grayish brown (10YR 3/2) moist; weak medium granular structure; soft, very friable; 5 percent channery fragments; strong effervescence; moderately alkaline (pH 8.2); abrupt smooth boundary. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very channery", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--10 to 25 inches; very pale brown (10YR 7/3) very channery sandy loam, light yellowish brown (10YR 6/4) moist; massive; soft, very friable; 45 percent channery fragments, 15 percent flagstones; lime coatings on rock fragments; violent effervescence; strongly alkaline (pH 8.6); clear smooth boundary. (14 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "channery", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk2--25 to 42 inches; pink (7.5YR 7/4) channery sandy loam, strong brown (7.5YR 5/6) moist; massive; soft, very friable; 25 percent channery fragments, 5 percent flagstones; lime coatings on rock fragments; strong effervescence; strongly alkaline (pH 8.6); diffuse wavy boundary. (16 to 24 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very channery", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--42 to 60 inches; pink (7.5YR 7/3) very channery loamy sand, light brown (7.5YR 6/4) moist; massive; soft, very friable; 35 percent channery fragments, 35 percent flagstones; lime coatings on rock fragments; strong effervescence; strongly alkaline (pH 8.5)." diff --git a/inst/extdata/OSD/C/CUSHING.json b/inst/extdata/OSD/C/CUSHING.json index ddc52fa707..7f0950be3f 100644 --- a/inst/extdata/OSD/C/CUSHING.json +++ b/inst/extdata/OSD/C/CUSHING.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--65 to 73 inches; yellowish brown (10YR 5/4) fine sandy loam; strong coarse prismatic structure; friable; few very fine fibrous roots; 3 percent gravel; many medium prominent strong brown (7.5YR 5/6) masses of iron accumulations; common fine light gray (10YR 7/2) masses of calcium carbonates; moderately effervescent; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/D/DAGLUM.json b/inst/extdata/OSD/D/DAGLUM.json index da17f35403..87f5813e7b 100644 --- a/inst/extdata/OSD/D/DAGLUM.json +++ b/inst/extdata/OSD/D/DAGLUM.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bky1--18 to 26 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; strong fine and medium angular and subangular blocky structure; very hard, very firm, very sticky and very plastic; common very fine roots; many very fine pores; few faint clay films on faces of peds; very dark grayish brown (10YR 3/2) moist coatings on faces of peds; few fine gypsum crystals; common fine and medium irregularly shaped masses of lime; strong effervescence; strongly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bky2--26 to 32 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky structure; hard, firm, sticky and plastic; common very fine roots; common very fine pores; common fine and medium gypsum crystals; common fine and medium irregularly shaped masses of lime; violent effervescence; strongly alkaline; clear smooth boundary. (Combined Bky horizons 0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCk--32 to 47 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure; hard, firm, sticky and plastic; few very fine roots; many very fine pores; common fine threads of lime; violent effervescence; moderately alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--47 to 60 inches; light yellowish brown (2.5Y 6/4) clay, light olive brown (2.5Y 5/4) moist; common fine distinct brownish yellow (10YR 6/8)redoximorphic concentrations; weak medium and coarse subangular blocky structure; extremely hard, very firm, very sticky and very plastic; few very fine roots; common very fine pores; few fine gypsum crystals; common fine irregularly shaped masses of lime; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DALCO.json b/inst/extdata/OSD/D/DALCO.json index 0991bd9112..2948567f17 100644 --- a/inst/extdata/OSD/D/DALCO.json +++ b/inst/extdata/OSD/D/DALCO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 9 inches; very dark gray (10YR 3/1) clay, black (10YR 2/1) moist; weak very fine angular and subangular blocky structure; very hard, very firm, very sticky and plastic; few fine roots; few fine chalk fragments and siliceous pebbles; slight effervescence; slightly alkaline; gradual smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss1--9 to 26 inches; black (10YR 2/1) clay, black (10YR 2/1) moist; moderate; very fine angular blocky structure; extremely hard, very firm, very sticky and plastic; few fine roots; common pressure faces; few grooved slickensides; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bss2--26 to 35 inches; dark gray (10YR 4/1) clay, very dark gray (10YR 3/1) moist; fine and very fine angular blocky structure; extremely hard, very firm, very sticky and plastic; few fine roots; common pressure faces; common grooved slickensides; few fine fragments of chalk in lower part; strong effervescence; moderately alkaline, abrupt wavy boundary. (combined Bss subhorizons are 18 to 34 inches thick)" diff --git a/inst/extdata/OSD/D/DANGBERG.json b/inst/extdata/OSD/D/DANGBERG.json index 4ab0d43ce2..383022376c 100644 --- a/inst/extdata/OSD/D/DANGBERG.json +++ b/inst/extdata/OSD/D/DANGBERG.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btkn1--8 to 38 cm; light brownish gray (10YR 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak very coarse prismatic structure; very hard, friable, very sticky and very plastic; many very fine and few fine roots; few very fine tubular and many very fine interstitial pores; many faint clay films on faces of peds, lining pores, and bridging mineral grains; slightly effervescent; secondary carbonates segregated as common fine strongly effervescent masses; strongly alkaline (pH 8.8); abrupt wavy boundary. (20 to 38 cm thick)" diff --git a/inst/extdata/OSD/D/DANUBE.json b/inst/extdata/OSD/D/DANUBE.json index 6b4d9276fa..4daaf76dfe 100644 --- a/inst/extdata/OSD/D/DANUBE.json +++ b/inst/extdata/OSD/D/DANUBE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bg--19 to 31 inches; grayish brown (2.5Y 5/2) silt loam; weak medium platy structure parting to weak fine subangular blocky; friable; many fine prominent yellowish brown (10YR 5/6) Fe concentrations; few fine roots; slightly effervescence; slightly alkaline; abrupt smooth boundary. (6 to 20 inches thick)" diff --git a/inst/extdata/OSD/D/DARRET.json b/inst/extdata/OSD/D/DARRET.json index a1658f1f30..d86ef03988 100644 --- a/inst/extdata/OSD/D/DARRET.json +++ b/inst/extdata/OSD/D/DARRET.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--28 to 60 inches; reddish interbedded soft sandstone and shale; few roots that extend beyond 19 inches are compressed into a horizontal mat between the shale and sandstone layers; moderately effervescent." diff --git a/inst/extdata/OSD/D/DARROCH.json b/inst/extdata/OSD/D/DARROCH.json index 863cc9f69c..b5bacf7ce5 100644 --- a/inst/extdata/OSD/D/DARROCH.json +++ b/inst/extdata/OSD/D/DARROCH.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C2--117 to 152 cm (46 to 60 inches); yellowish brown (10YR 5/4) silt loam containing thin strata of fine sand and silty clay loam; massive; friable; common medium prominent yellowish brown (10YR 5/8) and few medium distinct dark yellowish brown (10YR 4/6) masses of oxidized iron in the matrix; few black (N 2.5/) very weakly cemented iron-manganese nodules throughout; common medium distinct gray (10YR 6/1) iron depletions in the matrix; strong effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/D/DARROUZETT.json b/inst/extdata/OSD/D/DARROUZETT.json index a79ae8a668..1203c35032 100644 --- a/inst/extdata/OSD/D/DARROUZETT.json +++ b/inst/extdata/OSD/D/DARROUZETT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk1--36 to 58 cm (14 to 23 in); grayish brown (10YR 5/2) silty clay loam, very dark grayish brown (10YR 3/2), moist; moderate medium prismatic structure parting to moderate medium subangular blocky; slightly hard, friable; very few medium roots between peds and few fine roots between peds; common prominent clay films on all faces of peds; few distinct carbonate coats on vertical faces of peds; few fine and few medium distinct irregular carbonate masses in matrix; very slight effervescence (2 percent calcium carbonate); moderately alkaline, pH 8.2; gradual smooth boundary. (Thickness of the upper Bt and/or Btk horizon is 18 to 51 cm [7 to 20 in])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkss1--58 to 89 cm (23 to 35 in); dark grayish brown (10YR 4/2) silty clay, very dark grayish brown (10YR 3/2), moist; strong medium prismatic structure parting to strong medium wedge; very hard, firm; few fine roots between peds; many prominent slickensides (pedogenic) on tops of soil columns; very many prominent organoargillans on all faces of peds; common fine and common medium distinct irregular carbonate masses on faces of peds; slight effervescence (3 percent calcium carbonate); moderately alkaline, pH 8.3 gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btkss2--89 to 118 cm (35 to 47 in); brown (10YR 4/3) silty clay, very dark grayish brown (10YR 3/2), moist; moderate medium prismatic parting to moderate medium angular blocky structure; hard, very firm; very few fine roots between peds; few prominent slickensides (pedogenic) on tops of soil columns; common prominent organoargillans on vertical faces of peds; common medium prominent irregular moderately cemented carbonate nodules in matrix; very slight effervescence (1 percent calcium carbonate); moderately alkaline, pH 8.4; clear smooth boundary. (Combined thickness of the Btss (where present) and Btkss horizon is 17 to 94 cm [7 to 37 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk2--118 to 166 cm (47 to 65 in); yellowish brown (10YR 5/4) silty clay loam, dark yellowish brown (10YR 3/4), moist; moderate coarse subangular blocky parting to moderate medium subangular blocky structure; slightly hard, very friable; few fine roots throughout; few distinct clay films on all faces of peds; common coarse and common medium prominent threadlike carbonate masses on vertical faces of peds; very slight effervescence (1 percent calcium carbonate); strongly alkaline, pH 8.5; clear smooth boundary. (Combined thickness of the lower Btk horizon is 61 to 109 cm [24 to 43 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk3--166 to 205 cm (65 to 81 in); brown (7.5YR 4/4) clay loam, dark brown (7.5YR 3/4), moist; moderate coarse subangular blocky parting to moderate medium subangular blocky structure; slightly hard, very friable; very few fine roots throughout; few distinct organoargillans on vertical faces of peds; few fine faint threadlike and few faint irregular carbonate masses on surfaces along root channels; very slight effervescence (1 percent calcium carbonate); moderately alkaline, pH 8.2." diff --git a/inst/extdata/OSD/D/DAVISON.json b/inst/extdata/OSD/D/DAVISON.json index 3ae20cfcf5..5287794a60 100644 --- a/inst/extdata/OSD/D/DAVISON.json +++ b/inst/extdata/OSD/D/DAVISON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; grayish brown (10YR 5/2) loam, very dark brown (10YR 2/2) moist; weak medium subangular blocky structure parting to weak fine granular; slightly hard, very friable; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--6 to 9 inches; grayish brown (10YR 5/2) loam, very dark brown (10YR 2/2) moist; weak medium subangular blocky structure; slightly hard, friable; few fine masses of carbonates; strong effervescence; moderately alkaline; abrupt smooth boundary. (Combined A horizon is 7 to 15 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--9 to 15 inches; light gray (2.5Y 7/2) loam, light olive brown (2.5Y 5/4) moist; few fine distinct light olive brown (2.5Y 5/6) moist redox concentrations; weak medium subangular blocky structure; slightly hard, friable; slightly sticky and slightly plastic; common medium masses of calcium carbonate; violent effervescence; strongly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--15 to 24 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; many fine and medium prominent yellowish brown (10YR 5/6) and dark yellowish brown (10YR 4/4) moist redox concentrations; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common medium masses of calcium carbonate; violent effervescence; strongly alkaline; gradual wavy boundary. (Combined Bk horizon is 10 to 40 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--24 to 34 inches; light gray (2.5Y 7/2) clay loam, grayish brown (2.5Y 5/2) moist; many fine and medium prominent yellowish brown (10YR 5/6) and dark yellowish brown (10YR 4/4) moist redox concentrations; massive; slightly hard, friable; slightly sticky and slightly plastic; laminated; few fine dark stains and concretions (iron and manganese oxides); few medium masses of calcium carbonate; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg2--34 to 38 inches; light gray (5Y 7/1) silt loam, gray (5Y 5/1) moist; many medium and coarse prominent yellowish brown (10YR 5/6) and dark yellowish brown (10YR 4/4) moist redox concentrations; massive; soft, very friable; few fine dark concretions (iron and manganese oxides); strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--38 to 60 inches; light gray (5Y 7/2) sandy loam, gray (5Y 5/1) moist; many medium prominent redox concentrations yellowish brown (10YR 5/6) and light olive brown (2.5Y 5/6) moist; massive; soft, very friable; common medium dark stains and concretions (iron and manganese oxides); strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DAWES.json b/inst/extdata/OSD/D/DAWES.json index e4d4e48605..46e94deba7 100644 --- a/inst/extdata/OSD/D/DAWES.json +++ b/inst/extdata/OSD/D/DAWES.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--16 to 24 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure; soft, very friable; strong effervescence, strongly alkaline; gradual smooth boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--24 to 32 inches; light gray (10YR 7/2) silt loam, brown (10YR 5/3) moist; weak coarse prismatic structure; soft, very friable; violent effervescence; strongly alkaline, gradual smooth boundary. (4 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--32 to 40 inches; light gray (10YR 7/2) silt loam, brown (10YR 5/3) moist; massive; soft, very friable; strong effervescence; strongly alkaline; abrupt wavy boundary. (4 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--40 to 80 inches; pale brown (10YR 6/3) coarse sand; single grain; slight effervescence in upper part; strongly alkaline." diff --git a/inst/extdata/OSD/D/DEADYON.json b/inst/extdata/OSD/D/DEADYON.json index 7dadafb1bc..66ee531880 100644 --- a/inst/extdata/OSD/D/DEADYON.json +++ b/inst/extdata/OSD/D/DEADYON.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Ck2--109 to 152 cm; light yellowish brown (10YR 6/4) sandy loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; few very fine tubular pores; few fine strongly effervescent segregated soft lime masses in a noneffervescent matrix; 8 percent gravel; moderately alkaline (pH 8.4). (38 to 64 cm thick)" diff --git a/inst/extdata/OSD/D/DEEDALE.json b/inst/extdata/OSD/D/DEEDALE.json index 2f7a7b7260..c66c77ae8e 100644 --- a/inst/extdata/OSD/D/DEEDALE.json +++ b/inst/extdata/OSD/D/DEEDALE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; dark gray (10YR 4/1) clay loam, black (10YR 2/1) moist; moderate medium granular structure parting to moderate fine granular; very hard, firm, slightly sticky and slightly plastic; common very fine, fine and few medium roots; few very fine tubular and common fine irregular pores; 1/2 to 1-inch vertical cracks forming a polyhedron; slight effervescence, moderately alkaline (pH 7.9); abrupt smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--6 to 12 inches; dark gray (10YR 4/1) clay loam, black (10YR 2/1) moist; moderate fine angular blocky structure parting to moderate fine granular; very hard, firm, slightly sticky and slightly plastic; few very fine, fine and few medium roots; few very fine tubular and common fine irregular pores; slightly effervescence, 3/4-inch vertical cracks; moderately alkaline (pH 7.9); abrupt wavy boundary. (6 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bssg1--12 to 19 inches; dark gray (10YR 4/1) clay, black (10YR 2/1) moist; moderate medium angular blocky structure parting to moderate fine angular blocky; very hard, firm, very sticky and very plastic; few very fine roots; few very fine tubular and common fine irregular pores; few fine prominent brownish yellow (10YR 6/8) iron accumulations; common white (10YR 8/1) fine seams of lime; many distinct intersecting slickensides; 1/2-inch vertical cracks; slight effervescence, moderately alkaline (pH 7.9); clear wavy boundary." diff --git a/inst/extdata/OSD/D/DEERWOOD.json b/inst/extdata/OSD/D/DEERWOOD.json index fbcebcf5a4..6e1d554a3c 100644 --- a/inst/extdata/OSD/D/DEERWOOD.json +++ b/inst/extdata/OSD/D/DEERWOOD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Oa--0 to 10 inches; black (10YR 2/1, broken face and rubbed) sapric material; about 25 percent fiber, 10 percent rubbed; weak very fine granular structure; very friable; herbaceous fiber; about 40 percent mineral material; slight effervescence; slightly alkaline; abrupt smooth boundary. (8 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--10 to 12 inches; black (10YR 2/1) loamy sand; many (about 40 percent) medium distinct gray (10YR 5/1) redoximorphic depletions and mixing from C horizon: massive; very friable; strong effervescence; moderately alkaline; gradual smooth boundary. (2 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--12 to 30 inches; light brownish gray (2.5Y 6/2) gravelly fine sand; very fine distinct light olive brown (2.5Y 5/4) redoximorphic concentrations; single grain; loose; 20 percent gravel; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--30 to 60 inches; light brownish gray (2.5Y 6/2) gravelly sand; few fine distinct light olive brown (2.5Y 5/4) redoximorphic concentrations; single grain; loose; 20 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DEFLER.json b/inst/extdata/OSD/D/DEFLER.json index 0467071ae7..a033974232 100644 --- a/inst/extdata/OSD/D/DEFLER.json +++ b/inst/extdata/OSD/D/DEFLER.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B'k2--86 to 97 cm; pale brown (10YR 6/3) very gravelly sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; common very fine and fine roots; few fine tubular pores; 45 percent gravel; noneffervescent matrix with slight effervescence in common fine carbonate filaments; slightly alkaline (pH 7.8); clear wavy boundary. (0 to 43 cm thick)" diff --git a/inst/extdata/OSD/D/DEGREY.json b/inst/extdata/OSD/D/DEGREY.json index 780a150e25..cadb49dff1 100644 --- a/inst/extdata/OSD/D/DEGREY.json +++ b/inst/extdata/OSD/D/DEGREY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--14 to 19 inches; grayish brown (10YR 5/2) silty clay, dark grayish brown (10YR 4/2) moist; moderate medium prismatic structure parting to moderate coarse subangular blocky; very hard, very firm, sticky and plastic; few fine clay films on vertical faces of peds; few fine masses and threads of carbonate accumulations; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--19 to 36 inches; light brownish gray (2.5Y 6/2) silty clay loam, light olive brown (2.5Y 5/4) moist; weak fine subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (5 to 30 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk2--36 to 47 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5YR 5/2) moist; weak medium and coarse subangular blocky structure; hard, firm, sticky and plastic; few fine stains of yellowish red (5YR 5/8); few fine pebbles up to 1/2 inch in diameter; common medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 18 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--47 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm, sticky and plastic; few fine and medium stains of yellowish red (5YR 5/8); 5 percent by volume fine weathered shale fragments; few fine crystals of gypsum; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DEIBERT.json b/inst/extdata/OSD/D/DEIBERT.json index 340df854cd..c3d05c01f2 100644 --- a/inst/extdata/OSD/D/DEIBERT.json +++ b/inst/extdata/OSD/D/DEIBERT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--26 to 37 inches; brown (7.5YR 5/4) silty clay loam; moderate medium subangular blocky structure; firm; about 1 percent fine gravel; strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 14 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--68 to 80 inches; light yellowish brown (10YR 6/4) stratified sand and gravel; single grain; loose; about 16 percent fine gravel, 5 percent medium gravel, and 3 percent coarse gravel; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/D/DEIGHT.json b/inst/extdata/OSD/D/DEIGHT.json index 5cfcf6fac0..91c92d2a9a 100644 --- a/inst/extdata/OSD/D/DEIGHT.json +++ b/inst/extdata/OSD/D/DEIGHT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk -- 16 to 30 inches; light gray (10YR 7/2) very fine sandy loam, brown (10YR 5/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common very fine and few fine roots; violent effervescence, calcium carbonate disseminated and as common medium irregularly shaped soft masses, 16 percent calcium carbonate equivalent; moderately alkaline (pH 8.4); gradual smooth boundary. (10 to 40 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C -- 30 to 60 inches; very pale brown (10YR 7/3) very fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard, very friable, slightly sticky and nonplastic; few very fine roots; violent effervescence, calcium carbonate disseminated, 9 percent calcium carbonate equivalent; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/D/DELAMERE.json b/inst/extdata/OSD/D/DELAMERE.json index 26d87cb29a..b183efc660 100644 --- a/inst/extdata/OSD/D/DELAMERE.json +++ b/inst/extdata/OSD/D/DELAMERE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--18 to 27 inches; light brownish gray (10YR 6/2) fine sandy loam, light gray (10YR 7/2) dry; common medium and fine distinct brown (10YR 4/3) redoximorphic concentrations; moderate medium prismatic structure parting to weak medium angular blocky structure; soft, very friable, slightly sticky and slightly plastic; common very fine roots; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--27 to 35 inches; brown (10YR 4/3) fine sandy loam, very pale brown (10YR 7/3) dry; common fine and medium distinct light brownish gray (2.5Y 6/2) redoximorphic depletions; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; slight effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--35 to 60 inches; brown (10YR 4/3) fine sandy loam, pale brown (10YR 6/3) dry; common fine and medium distinct grayish brown (2.5Y 5/2) redoximorphic depletions and few fine distinct dark yellowish brown (10YR 3/6) redoximorphic concentrations; massive; soft, very friable; slightly sticky and slightly plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DELMONT.json b/inst/extdata/OSD/D/DELMONT.json index 5a8d633f98..b2bd658441 100644 --- a/inst/extdata/OSD/D/DELMONT.json +++ b/inst/extdata/OSD/D/DELMONT.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--15 to 24 inches; grayish brown (10YR 5/2) gravelly sand, dark grayish brown (10YR 4/2) moist; single grained; loose; 25 percent gravel; moderately alkaline; few large accumulations of calcium carbonate; gravel coated with calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--24 to 60 inches; light brownish gray (10YR 6/2) gravelly sand, grayish brown (10YR 5/2) moist; single grained; loose; 30 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DELRIDGE.json b/inst/extdata/OSD/D/DELRIDGE.json index cc744591cb..84f89530f7 100644 --- a/inst/extdata/OSD/D/DELRIDGE.json +++ b/inst/extdata/OSD/D/DELRIDGE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; grayish brown (2.5Y 5/2) loam, dark grayish brown (2.5Y 4/2) moist; weak fine granular structure; slightly hard, friable; many fine roots; strong effervescence; neutral; clear smooth boundary. (1 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--3 to 9 inches; grayish brown (2.5Y 5/2) loam; dark grayish brown (2.5Y 4/2) moist; weak medium and coarse prismatic structure; slightly hard, friable; many fine roots; strong effervescence; slightly alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--9 to 14 inches; light brownish gray (2.5Y 6/2) silt loam; grayish brown (2.5Y 5/2) moist; weak medium and coarse prismatic structure; hard, friable; common fine roots; many fine accumulations of carbonate; violent effervescence; slightly alkaline; gradual wavy boundary. (Combined Bk horizons is 0 to 20 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--14 to 24 inches; light brownish gray (2.5Y 6/2) loam; grayish brown (2.5Y 5/2) moist; massive; hard, friable; few fine roots; common pebbles of hard sandstone; few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/D/DELVADA.json b/inst/extdata/OSD/D/DELVADA.json index dfaedd3c30..7e16db50b8 100644 --- a/inst/extdata/OSD/D/DELVADA.json +++ b/inst/extdata/OSD/D/DELVADA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Ag3--43 to 74 cm; black (10YR 2/1) silty clay, gray (10YR 5/1) dry; strong coarse prismatic structure parting to moderate medium subangular blocky; hard, firm, very sticky and very plastic; common very fine and fine roots; many very fine and fine tubular pores; few fine prominent dark reddish brown (5YR 3/4) masses of manganese accumulation and common fine and medium brown (7.5YR 4/4) masses of iron accumulation; many worm channels and casts; few fine violently effervescent carbonate filaments; slightly effervescent matrix; moderately alkaline (pH 8.4); clear wavy boundary. (8 to 38 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg--74 to 140 cm; variegated dark grayish brown (2.5Y 4/2) and very dark grayish brown (2.5Y 3/2) silty clay, gray (10YR 6/1) dry; weak coarse prismatic structure parting to moderate medium subangular blocky; hard, firm, very sticky and very plastic; few very fine and fine roots; many very fine and fine tubular pores; common thin silt coats lining pores; many worm channels and casts; many fine through coarse black (10YR 2/1) manganese stains in irregular pattern; few fine black (10YR 2/1) manganese concretions; common fine soft violently effervescent carbonate filaments; slightly effervescent matrix; moderately alkaline (pH 8.2); gradual wavy boundary. (25 to 90 cm thick)" diff --git a/inst/extdata/OSD/D/DEMKY.json b/inst/extdata/OSD/D/DEMKY.json index 034f9e79df..b06307bbfe 100644 --- a/inst/extdata/OSD/D/DEMKY.json +++ b/inst/extdata/OSD/D/DEMKY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--14 to 22 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; hard, firm, sticky and plastic; common medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--22 to 36 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; hard, firm, sticky and plastic; common medium and fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 13 to 28 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--36 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; common fine mottles of light gray (2.5Y 7/1) and olive yellow (2.5Y 6/6) moist; hard, firm, sticky and plastic; few fine yellowish red (5YR 5/8) iron accumulations; few fine nests of gypsum; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DEMPSTER.json b/inst/extdata/OSD/D/DEMPSTER.json index 786b7669bc..cc452146f9 100644 --- a/inst/extdata/OSD/D/DEMPSTER.json +++ b/inst/extdata/OSD/D/DEMPSTER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--29 to 36 inches; pale brown (10YR 6/3) loam, dark grayish brown (2.5Y 4/2) moist; weak very coarse and coarse subangular blocky structure; slightly hard, friable, slightly sticky; many fine and medium masses of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 9 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--36 to 60 inches; brown (10YR 5/3) gravelly sand, dark brown (10YR 4/3) moist; single grain; loose; moderately thick carbonate crusts on undersides of pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DENBY.json b/inst/extdata/OSD/D/DENBY.json index c748691bb6..8d4769d156 100644 --- a/inst/extdata/OSD/D/DENBY.json +++ b/inst/extdata/OSD/D/DENBY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 3 inches; light brownish gray (10YR 6/2) silty clay, grayish brown (10YR 5/2) moist; weak fine granular structure; hard, firm, sticky and plastic; strong effervescence; moderately alkaline; abrupt smooth boundary. (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw1--3 to 6 inches; light brownish gray (10YR 6/2) silty clay, brown (10YR 5/3) moist; moderate medium subangular blocky structure; very hard, very firm, sticky and plastic; cracks 1/2 inch to 1 inch wide; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--6 to 22 inches; light brownish gray (10YR 6/2) silty clay, brown (10YR 5/3) moist; weak coarse and medium subangular blocky structure; very hard, very firm, sticky and plastic; cracks 1/2 inch to 1 inch wide; strong effervescence; strongly alkaline; clear smooth boundary. (Combined Bw horizons 10 to 24 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC--22 to 26 inches; light gray (10YR 7/2) clay loam, pale brown (10YR 6/3) moist; weak coarse subangular blocky structure; hard, firm, sticky and plastic; strong effervescence; strongly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--26 to 60 inches; light gray (10YR 7/2) silty clay loam with thin layers of silt loam and loam, pale brown (10YR 6/3) moist; massive; slightly hard, friable; weak bedding planes are evident; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/D/DEPALT.json b/inst/extdata/OSD/D/DEPALT.json index cfe03b44f8..0ba417124f 100644 --- a/inst/extdata/OSD/D/DEPALT.json +++ b/inst/extdata/OSD/D/DEPALT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--30 to 35 inches; reddish brown (5YR 5/4) clay, reddish brown (5YR 4/4) moist; moderate medium subangular blocky structure; hard, firm; few fine roots and pores; about 15 percent by volume calcium carbonate concretions; strong effervescence; moderately alkaline; gradual wavy boundary. (4 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--35 to 63 inches; yellowish red (5YR 5/6) gravelly clay, yellowish red (5YR 4/6) moist; weak medium subangular blocky structure; hard, firm; estimated 35 percent by volume limestone pebbles; strong effervescence; moderately alkaline. (20 to 50 inches thick)" diff --git a/inst/extdata/OSD/D/DERMOTT.json b/inst/extdata/OSD/D/DERMOTT.json index 4b9d141be2..b53009c199 100644 --- a/inst/extdata/OSD/D/DERMOTT.json +++ b/inst/extdata/OSD/D/DERMOTT.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--0 to 12 cm (0 to 5 in); brown (7.5YR 4/3) gravelly fine sandy loam, dark brown (7.5YR 3/2), moist; weak fine and medium subangular blocky structure parting to weak very fine and fine granular structure; very friable, soft; moderate excavation difficulty when moist; common very fine, fine and medium roots throughout; 5 percent strongly cemented 2 to 5 millimeter caliche fragments ,11 percent strongly cemented 5 to 20 millimeter caliche fragments, 2 percent strongly cemented 20 to 75 millimeter caliche fragments; 3 percent siliceous pebbles; strong effervescence; moderately alkaline; clear wavy boundary. (5 to 33 cm [2 to 13 in] thick)" @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A2--12 to 31 cm (5 to 12 in); brown (7.5YR 5/3) extremely gravelly fine sandy loam, dark brown (7.5YR 3/2), moist; weak very fine granular structure; very friable, soft; moderate excavation difficulty when moist; common very fine, fine, medium roots throughout; 5 percent strongly cemented 2 to 5 millimeter caliche fragments, 10 percent strongly cemented 5 to 20 millimeter caliche fragments, 35 percent strongly cemented 20 to 75 millimeter caliche fragments, 20 percent strongly cemented 75 to 300 millimeter caliche fragments; 3 percent siliceous pebbles; strong effervescence; moderately alkaline; abrupt smooth boundary. (13 to 25 cm [5 to 10 in] thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkm--31 to 39 cm (12 to 15 in); pinkish white (7.5YR 8/2) strongly cemented caliche, pink (7.5YR 7/4), moist; massive; very high excavation difficulty moist; common, very fine, fine, and medium roots matted on top of the horizon and common very fine roots along fractures between petrocalcic plates; violent effervescence; moderately alkaline; laminar cap of the petrocalcic is degrading; clear wavy boundary. (8 to 53 cm [3 to 21 in] thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkm/Bk--39 to 103 cm (15 to 41 in); Bkm comprises 90 percent of horizon; Bk comprises 10 percent of horizon; Bkm part consists of pinkish white (7.5YR 8/2), pink (7.5YR 7/4), moist; massive, strongly cemented caliche; very high excavation difficulty moist; violent effervescence; The strongly cemented caliche layers are scattered throughout the horizon. These layers are tilted 10 to 30 degrees from the horizontal; Bk part consists of pinkish white (7.5YR 8/2) extremely gravelly sandy loam, pink (7.5YR 8/4), moist; massive; common very fine roots throughout; 2 percent medium and 1 percent coarse distinct irregular moderately cemented very pale brown (10YR 8/2) carbonate nodules with clear boundaries throughout; 3 percent siliceous pebbles throughout; violent effervescence; moderately alkaline; gradual wavy boundary. (25 to 102 cm [10 to 40 in] thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--103 to 211 cm (41 to 83 in); pink (7.5YR 8/4) extremely gravelly coarse sandy loam, pink (7.5YR 7/4), moist; massive; common very fine roots throughout; 12 percent medium and 12 percent coarse distinct irregular moderately cemented very pale brown (10YR 8/2) carbonate nodules with clear boundaries throughout; 40 percent by volume, pinkish white (7.5YR 8/2), pink (7.5YR 7/4), moist; strongly cemented caliche; The strongly cemented caliche layers are scattered throughout the horizon. These layers are tilted 10 to 30 degrees from the horizontal; high excavation difficulty moist; 3 percent siliceous pebbles throughout; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DESERTMANN.json b/inst/extdata/OSD/D/DESERTMANN.json index bf42c2a275..15bc8e1bca 100644 --- a/inst/extdata/OSD/D/DESERTMANN.json +++ b/inst/extdata/OSD/D/DESERTMANN.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bq--64 to 89 cm; light reddish brown (2.5YR 7/3) very gravelly loam, reddish brown (2.5YR 5/4) moist; massive; very hard, friable, slightly sticky and slightly plastic; few very fine roots; few very fine interstitial pores; 1 to 2 mm thick silica pendants on under sides of rock fragments; 40 percent subangular gravel, 10 percent subangular cobbles and 5 percent subangular stones; slight effervescence; moderately alkaline (pH 8.2); clear wavy boundary. (15 to 25 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkqm--89 to 99 cm; cemented material; violent effervescence; clear wavy boundary. (10 to 38 cm thick)" diff --git a/inst/extdata/OSD/D/DETROIT.json b/inst/extdata/OSD/D/DETROIT.json index 38aebcddff..e92c59f2f9 100644 --- a/inst/extdata/OSD/D/DETROIT.json +++ b/inst/extdata/OSD/D/DETROIT.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BC--96 to 117 centimeters (38 to 46 inches); brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; common fine prominent strong brown (7.5YR 5/6) irregularly shaped masses of oxidized iron; weak coarse subangular blocky structure; hard, friable; sticky and plastic; common fine accumulations of very dark brown oxides; few fine carbonate masses below 100 centimeters (39 inches); slight effervescence; slightly alkaline; gradual smooth boundary. (0 to 38 centimeters (0 to 15 inches thick))" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--117 to 135 centimeters (46 to 53 inches); light yellowish brown (10YR 6/4) silt loam, brown (10YR 5/3) moist; common medium distinct yellowish brown (10YR 5/6) irregularly shaped masses of oxidized iron; massive; slightly hard, very friable; slightly sticky and slightly plastic; few fine accumulations of very dark brown oxides; few fine carbonate masses; strong effervescence; moderately alkaline; clear smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--135 to 200 centimeters (53 to 79 inches); light brownish gray (10YR 6/2) silty clay loam, grayish brown (10YR 5/2) moist; common medium prominent yellowish brown (10YR 5/6) irregularly shaped masses of oxidized iron; massive; slightly hard, friable; sticky and plastic; a few strata of grayish brown (10YR 5/2) material; common fine carbonate concretions; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DIABLO.json b/inst/extdata/OSD/D/DIABLO.json index 43cfaab57a..caa9885b97 100644 --- a/inst/extdata/OSD/D/DIABLO.json +++ b/inst/extdata/OSD/D/DIABLO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss1--15 to 26 inches; finely mixed gray (5Y 5/1) and olive gray (5Y 5/2) silty clay, dark gray (5Y 4/1) and olive gray (5Y 4/2) moist; moderate coarse prismatic and medium blocky structure; very hard, very firm, sticky, very plastic; few fine roots along faces of peds; few fine and very fine tubular pores; numerous slickensides; slightly effervescent in matrix, strongly effervescent few white lime nodules; moderately alkaline; clear wavy boundary. (3 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bkss2--26 to 32 inches; finely mixed gray (5Y 5/1) and olive gray ( 5Y5/2) silty clay, dark gray (5Y 4/1) and olive gray (5Y4/2) moist); weak coarse prismatic and weak medium blocky structure; very hard, very firm, sticky, very plastic; few fine roots mainly along faces of peds, roots distinctly flattened in appearance; few fine and very fine tubular pores; numerous slickensides; slightly effervescent matrix, strongly effervescent few small hard white lime nodules; moderately alkaline; diffuse smooth boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/D/DIAMONDHIL.json b/inst/extdata/OSD/D/DIAMONDHIL.json index f2d81647dc..7fb29348fa 100644 --- a/inst/extdata/OSD/D/DIAMONDHIL.json +++ b/inst/extdata/OSD/D/DIAMONDHIL.json @@ -89,7 +89,7 @@ "cf_class": "very cobbly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; brown (7.5YR 5/4) very cobbly fine sandy loam, brown (7.5YR 4/4) moist; moderate medium platy structure; soft, very friable, nonsticky and nonplastic; few very fine and fine roots; common very fine vesicular pores and few very fine and fine interstitial; 20 percent pebbles, 20 percent cobbles and 2 percent stones; slightly effervescent in irregular patches, noneffervescent matrix; moderately alkaline (pH 8.0); clear smooth boundary. (1 to 3 inches thick)" diff --git a/inst/extdata/OSD/D/DIAWELL.json b/inst/extdata/OSD/D/DIAWELL.json index 1d920400bd..031839a9a4 100644 --- a/inst/extdata/OSD/D/DIAWELL.json +++ b/inst/extdata/OSD/D/DIAWELL.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkq--11 to 20 inches; very pale brown (10YR 7/3) gravelly fine sandy loam, pale brown (10YR 6/3) moist; weak medium subangular blocky structure; soft, very friable; few very fine, fine and medium roots; few very fine tubular pores; 20 percent durinodes; 20 percent gravel; violent effervescence; slightly alkaline (pH 7.7); abrupt smooth boundary. (4 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkqm--20 to 22 inches; very pale brown (10YR 7/4) strongly cemented continuous duripan, yellowish brown (10YR 5/4) moist; massive; very hard, very firm; 35 percent gravel; violent effervescence; clear smooth boundary. (2 to 5 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bk1--22 to 30 inches; light yellowish brown (10YR 6/4) gravelly sandy loam, yellowish brown (10YR 5/4) moist; massive; soft, very friable; 15 percent gravel; strong effervescence; moderately alkaline (pH 8.0); gradual smooth boundary. (8 to 40 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bk2--30 to 50 inches; light yellowish brown (10YR 6/4) gravelly loamy sand, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable; 15 percent gravel; strong effervescence; moderately alkaline (pH 8.1); gradual smooth boundary. (0 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "very gravelly", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Ck--50 to 60 inches; light yellowish brown (10YR 6/4) very gravelly loamy sand, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable; 50 percent gravel; slight effervescence; slightly alkaline (pH 7.7)." diff --git a/inst/extdata/OSD/D/DICKEY.json b/inst/extdata/OSD/D/DICKEY.json index 5dd9a07356..7f5b6639af 100644 --- a/inst/extdata/OSD/D/DICKEY.json +++ b/inst/extdata/OSD/D/DICKEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--30 to 42 inches; light olive brown (2.5Y 5/4) loam, light brownish gray (2.5Y 6/2) dry; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common soft masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--42 to 60 inches; olive brown (2.5Y 4/4) loam, light brownish gray (2.5Y 6/2) dry; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DIMO.json b/inst/extdata/OSD/D/DIMO.json index c50c579962..5096194ad7 100644 --- a/inst/extdata/OSD/D/DIMO.json +++ b/inst/extdata/OSD/D/DIMO.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--26 to 40 inches; light olive brown (2.5Y 5/3) very gravelly sand, olive brown (2.5Y 4/3) moist; many fine to coarse distinct dark yellowish brown (10YR 4/4) and light olive brown (2.5Y 5/6) redox concentrations; single grain; loose; 45 percent gravel; many medium and coarse dark accumulations and fine dark concretions (Fe and Mn oxides); slight effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--40 to 60 inches; light olive brown (2.5Y 5/4) gravelly sand, olive brown (2.5Y 4/3) moist; many fine to coarse distinct dark yellowish brown (10YR 4/4) and light olive brown (2.5Y 5/6) redox concentrations; single grain; loose; 30 percent gravel; many medium and coarse dark accumulations and fine and medium dark concretions (Fe and Mn oxides); strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DISABEL.json b/inst/extdata/OSD/D/DISABEL.json index 9d34df3589..b82ce3140e 100644 --- a/inst/extdata/OSD/D/DISABEL.json +++ b/inst/extdata/OSD/D/DISABEL.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "but effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A12--2 to 11 inches; light brownish-gray (10YR 6/2) silty clay loam, brown (10YR 4/3) moist; strong very thin platy structure; slightly hard, friable, sticky, very plastic; abundant very fine and fine roots; few fine tubular pores; matrix is noneffervescent but effervescent in spots; moderately alkaline (pH 8.4); clear smooth boundary. (2 to 10 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "but effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "B1t--11 to 17 inches; light brownish-gray (10YR 6/2) clay, brown (10YR 4/3) moist; weak medium prismatic and strong fine angular blocky structure; hard, friable, very sticky, very plastic; abundant very fine and fine exped roots; few very fine and fine tubular pores; few thin clay films on ped faces and common thin clay films in pores; matrix is noneffervescent but effervescent in spots; moderately alkaline (pH 8.3); clear smooth boundary. (4 to 8 inches thick.)" diff --git a/inst/extdata/OSD/D/DISHPAN.json b/inst/extdata/OSD/D/DISHPAN.json index f3a43b0585..ffe47b4802 100644 --- a/inst/extdata/OSD/D/DISHPAN.json +++ b/inst/extdata/OSD/D/DISHPAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--13 to 16 inches; light yellowish brown (10YR 6/4) clay loam, brown (10YR 4/3) moist; moderate fine and medium subangular blocky structure; slightly hard, friable, sticky and plastic; common fine, few very fine and medium roots; common very fine interstitial and tubular pores; common thin clay films on faces of peds; 5 percent gravel; violent effervescence; slightly alkaline (pH 7.8); clear smooth boundary. (0 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very cobbly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkq--16 to 28 inches; very pale brown (10YR 8/3) very cobbly fine sandy loam, pale brown (10YR 6/3) moist; massive; soft, very friable; few very fine, fine, and medium roots; 35 percent gravel, 20 percent cobbles (rock fragments have lime and silica coatings up to 1 cm thick); violent effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary. (7 to 20 inches thick)" diff --git a/inst/extdata/OSD/D/DISTON.json b/inst/extdata/OSD/D/DISTON.json index 7a8583f336..2c083128d1 100644 --- a/inst/extdata/OSD/D/DISTON.json +++ b/inst/extdata/OSD/D/DISTON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 5 inches; grayish brown (10YR 5/2) loamy sand, very dark grayish brown (10YR 3/2) moist; weak very thin platy structure; soft, very friable, nonsticky and nonplastic; common very fine roots; many very fine and fine interstitial pores; 2 percent duripan fragments less than 3/4 inch in diameter; strong effervescence; moderately alkaline (pH 8.2); clear smooth boundary. (4 to 11 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--5 to 13 inches; light brownish gray (10YR 6/2) loamy sand, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure; soft, very friable, nonsticky and nonplastic; common very fine and fine roots; common very fine and fine tubular pores; about 2 percent duripan fragments less than 3/4 inch in diameter; violent effervescence; moderately alkaline (pH 8.0); clear wavy boundary. (6 to 13 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--13 to 31 inches; light gray (10YR 7/2) loamy sand, grayish brown (10YR 5/2) moist; weak coarse prismatic structure; soft, very friable, nonsticky and nonplastic; few very fine and fine roots; common very fine and fine tubular pores; about 2 percent duripan fragments less than 3/4 inch in diameter; violent effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary. (10 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkqm--31 to 40 inches; white (2.5Y 8/1) duripan, very pale brown (10YR 7/3) moist; many very fine and fine tubular pores; indurated; slight effervescence; slightly alkaline (pH 7.8); abrupt wavy boundary. (6 to 13 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkq--40 to 45 inches; sand, grayish brown (10YR 5/2) moist; single grain; weakly cemented layers, many very fine and fine tubular pores; 10 percent duripan fragments; strong effervescence; abrupt smooth boundary. (0 to 7 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "B'kqm--45 to 47 inches; duripan, very pale brown (10YR 7/3) moist; few very fine tubular pores; indurated; violent effervescence; abrupt wavy boundary. (0 to 6 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B'kq--47 to 60 inches; sand, grayish brown (10YR 5/2) moist; single grain; slightly hard, friable; common very fine and fine tubular pores; stratified layers of duripan 1 to 5 inches thick; violent effervescence." diff --git a/inst/extdata/OSD/D/DIVIDE.json b/inst/extdata/OSD/D/DIVIDE.json index e605316a67..e8e7758dce 100644 --- a/inst/extdata/OSD/D/DIVIDE.json +++ b/inst/extdata/OSD/D/DIVIDE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) loam, very dark gray (10YR 3/1) dry; moderate medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common fine and medium roots; about 5 percent gravel; strong effervescence; moderately alkaline; abrupt smooth boundary. (A horizon 7 to 20 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ak--8 to 12 inches; very dark gray (10YR 3/1) loam, gray (10YR 5/1) dry; weak medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common fine roots; about 5 percent gravel; few fine masses of carbonates; violent effervescence; moderately alkaline; abrupt wavy boundary. (0 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--12 to 22 inches; light brownish gray (2.5Y 6/2) loam, light gray (2.5Y 7/2) dry; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine roots; about 5 percent gravel; common medium masses of carbonates; violent effervescence; moderately alkaline; clear smooth boundary. (8 to 28 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C1--22 to 26 inches; light olive brown (2.5Y 5/4) gravelly loamy coarse sand, light yellowish brown (2.5Y 6/4) dry; single grain; loose, nonsticky and nonplastic; few fine roots; about 20 percent gravel; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--26 to 60 inches; olive brown (2.5Y 4/4) very gravelly coarse sand, light olive brown (2.5Y 5/4) dry; single grain; loose, nonsticky and nonplastic; about 35 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DOANE.json b/inst/extdata/OSD/D/DOANE.json index 3b1117a265..5993509dc0 100644 --- a/inst/extdata/OSD/D/DOANE.json +++ b/inst/extdata/OSD/D/DOANE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--4 to 14 inches; brown (10YR 5/3) fine sandy loam; dark brown (10YR 4/3) moist; weak medium subangular blocky structure parting to weak medium granular; soft, very friable; strong effervescence; slightly alkaline, clear smooth boundary. (10 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--14 to 42 inches; pale brown (10YR 6/3) fine sandy loam; brown (10YR 5/3) moist massive; soft, very friable; strong effervescence, slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--42 to 80 inches; very pale brown (10YR 7/3) loamy fine sand; pale brown (10YR 6/3) moist; massive; soft, very friable; violent effervescence; silghtly alkaline." diff --git a/inst/extdata/OSD/D/DOGIECREEK.json b/inst/extdata/OSD/D/DOGIECREEK.json index 862800f1ae..b0889a0e6e 100644 --- a/inst/extdata/OSD/D/DOGIECREEK.json +++ b/inst/extdata/OSD/D/DOGIECREEK.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cz--3 to 6 inches; dark grayish brown (2.5Y 4/2), very fine sandy loam, grayish brown (2.5Y 5/2) dry; moderate medium and fine subangular blocky structure; hard, friable, few fine compressed roots; few fine accumulations of salts; slight effervescence; strongly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Czg1--6 to 12 inches; olive gray (5Y 4/2) loam, light olive gray (5Y 6/2) dry; common fine distinct light olive brown (2.5Y 5/6) mottles; weak medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few fine compressed roots; finely stratified material of light gray (2.5Y 6/1) dry; common fine nests of salts; strong effervescence; very strongly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Czg2--12 to 20 inches; olive gray (5Y 4/2) fine sandy loam, light olive gray (5Y 6/2) dry; common fine distinct light yellowish brown (2.5Y 5/6) mottles; massive; soft, very friable; very few fine roots; finely stratified with material of light gray (2.5Y 6/1) dry; common fine nests of salts; slight effervescence; very strongly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Czg3--20 to 41 inches; olive gray (5Y 5/2) fine sandy loam, light gray (5Y 7/2) dry; common fine distinct light yellowish brown (2.5Y 5/6) mottles; massive; soft, very friable; few fine accumulations of carbonates; few fine nests of salts; strong effervescence; very strongly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--41 to 60 inches; olive gray (5Y 5/2) loamy fine sand, light olive gray (5Y 6/2) dry; common medium distinct light yellowish brown (2.5Y 5/6) mottles; loose; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DOGTOOTH.json b/inst/extdata/OSD/D/DOGTOOTH.json index e91df9c3f3..362380e549 100644 --- a/inst/extdata/OSD/D/DOGTOOTH.json +++ b/inst/extdata/OSD/D/DOGTOOTH.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btn--2 to 8 inches; grayish brown (2.5Y 5/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; strong medium columnar structure parting to moderate fine angular blocky; very hard, very firm, very sticky and very plastic; common fine roots between peds; few medium and common fine pores; column tops coated with light brownish gray (2.5Y 6/2) E material; many distinct dark grayish brown (2.5Y 4/2) clay films on faces of peds; slight effervescence in lower part; moderately alkaline; clear smooth boundary. (3 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btkn--8 to 13 inches; light yellowish brown (2.5Y 6/4) silty clay, light olive brown (2.5Y 5/4) moist; moderate medium prismatic structure parting to strong fine angular blocky; very hard, very firm, very sticky and very plastic; few fine roots; common fine pores; many faint clay films on faces of peds; few fine irregular masses of carbonates; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bky--13 to 21 inches; light yellowish brown (2.5Y 6/4) silty clay, light olive brown (2.5Y 5/4) moist; moderate medium prismatic structure parting to moderate fine angular blocky; very hard, very firm, very sticky and very plastic; few fine roots; few fine pores; common fine irregular masses of carbonates; few fine gypsum crystals; strong effervescence; strongly alkaline; abrupt wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--21 to 60 inches; light gray (5Y 6/1) soft shale bedrock, dark gray (5Y 4/1) moist; slight effervescence." diff --git a/inst/extdata/OSD/D/DOLAND.json b/inst/extdata/OSD/D/DOLAND.json index 9b58f571a8..65bfc16362 100644 --- a/inst/extdata/OSD/D/DOLAND.json +++ b/inst/extdata/OSD/D/DOLAND.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--24 to 32 inches; grayish brown (2.5Y 5/2) loam; weak fine subangular blocky structure; slightly hard, friable; strong effervescence; mildly alkaline; gradual wavy boundary. (4 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--32 to 60 inches; light olive brown (2.5Y 5/4) loam; few fine faint grayish brown (2.5Y 5/2) mottles; weak fine subangular blocky structure; slightly hard, friable; few soft yellowish red masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DONALDSON.json b/inst/extdata/OSD/D/DONALDSON.json index 16662d3038..5822a5607e 100644 --- a/inst/extdata/OSD/D/DONALDSON.json +++ b/inst/extdata/OSD/D/DONALDSON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--14 to 24 inches; pale brown (10YR 6/3) loamy very fine sand; common medium distinct brownish yellow (10YR 6/6), yellow (2.5Y 7/6) and pale yellow (2.5Y 8/3) redoximorphic concentrations; massive; very friable; slight effervescence; slightly alkaline; clear wavy boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--24 to 60 inches; olive gray (5Y 4/2) clay; common medium distinct olive brown(2.5Y 4/3) redoximorphic concentrations and light gray (2.5Y 7/2) redoximorphic depletions; moderate coarse prismatic structure parting to moderate very fine angular blocky; firm; few black concretions 1 to 5 mm in size; few 1 to 4 mm bands of silty material below 50 inches; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DONTWANNA.json b/inst/extdata/OSD/D/DONTWANNA.json index f92b0b0223..f93dbec036 100644 --- a/inst/extdata/OSD/D/DONTWANNA.json +++ b/inst/extdata/OSD/D/DONTWANNA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkqm--66 to 152 cm; moderately silica cemented material; massive; very firm; 10 percent subangular paragravel, 5 percent subangular paracobbles, 25 percent subangular gravel, 15 percent subangular cobbles and 5 percent subangular stones; slight effervescence." diff --git a/inst/extdata/OSD/D/DORAN.json b/inst/extdata/OSD/D/DORAN.json index b57bf63137..a41899ff56 100644 --- a/inst/extdata/OSD/D/DORAN.json +++ b/inst/extdata/OSD/D/DORAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "2Bt2--15 to 20 inches; olive brown (2.5Y 4/3) clay loam, grayish brown (2.5Y 5/2) dry; moderate medium prismatic structure parting to moderate fine granular; very hard, firm, sticky and plastic; common fine roots; about 2 percent pebbles; vertical streaks of black (10YR 2/1) and very dark brown (10YR 2/2); slight effervescence; slightly alkaline; clear irregular boundary. (Combined Bt horizons 6 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bky--20 to 29 inches; grayish brown (2.5Y 5/2) clay loam, light brownish gray (2.5Y 6/2) dry; common fine distinct brown (10YR 4/3) redoximorphic concentrations; weak fine granular structure; hard, friable, sticky and plastic; few fine roots; about 1 percent pebbles and hard shale fragments; common medium masses of carbonates and gypsum crystals; violent effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2BCy--29 to 41 inches; grayish brown (2.5Y 5/2) clay loam, light gray (2.5Y 7/2) dry; many fine distinct dark yellowish brown (10YR 4/4) redoximorphic concentrations; moderate very fine subangular blocky structure; hard, friable, slightly sticky and plastic; few fine roots; about 3 percent hard shale fragments; few iron concretions; common gypsum crystals; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--41 to 66 inches; dark grayish brown (2.5Y 4/2) clay loam, light gray (2.5Y 7/2) dry; common medium distinct brown (10YR 4/3) redoximorphic concentrations in the matrix and many fine distinct very dark grayish brown (10YR 3/2) stains on faces of peds; moderate fine angular blocky structure; very hard, firm, slightly sticky and plastic; about 6 percent pebbles: few iron concretions; few gypsum crystals; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--66 to 80 inches: light olive brown (2.5Y 5/3) clay loam, pale yellow (2.5Y 7/3) dry; many medium prominent dark yellowish brown (10YR 4/6) and few fine prominent brown (7.5YR 4/4) redoximorphic concentrations, and common coarse faint grayish brown (2.5Y 5/2) redoximorphic depletions; massive; very hard, firm, slightly sticky and slightly plastic; about 5 percent pebbles: few fine masses of iron-manganese; few gypsum crystals; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/D/DORERTON.json b/inst/extdata/OSD/D/DORERTON.json index 7258be6366..4f6b07d4b7 100644 --- a/inst/extdata/OSD/D/DORERTON.json +++ b/inst/extdata/OSD/D/DORERTON.json @@ -227,7 +227,7 @@ "cf_class": "extremely flaggy", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--30 to 60 inches; very pale brown (10YR 7/3) extremely flaggy loamy sand; single grain; loose; about 75 percent dolostone fragments of pebble through flagstone size; strongly effervescence; slightly alkaline" diff --git a/inst/extdata/OSD/D/DORNA.json b/inst/extdata/OSD/D/DORNA.json index 99079bd4d8..b103d49a88 100644 --- a/inst/extdata/OSD/D/DORNA.json +++ b/inst/extdata/OSD/D/DORNA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--7 to 15 inches; very dark grayish brown (10YR 3/2) silt loam, very dark brown (10YR 2/2) moist; weak coarse prismatic structure; slightly hard, very friable; few very fine striations of carbonate; slight effervescence; slightly alkaline; clear smooth boundary. (Combined A horizon is 8 to 18 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--15 to 24 inches; grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure; slightly hard, very friable; few very fine accumulations of carbonates; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Ck--24 to 27 inches; light brownish gray (10YR 6/2) silty clay, grayish brown (10YR 5/2) moist; moderate medium and fine subangular blocky structure; hard, firm, slightly sticky and slightly plastic; many medium accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C--27 to 39 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak medium and coarse subangular blocky structure; very hard, firm, sticky and plastic; few fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Ckz--39 to 46 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm, sticky and plastic; common very fine accumulations of carbonate and salts; slight effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C'--46 to 60 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm, sticky and plastic; few fine and very fine accumulations of salts; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DORRANCE.json b/inst/extdata/OSD/D/DORRANCE.json index 03e772adc0..15c18265d5 100644 --- a/inst/extdata/OSD/D/DORRANCE.json +++ b/inst/extdata/OSD/D/DORRANCE.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 11 inches; dark grayish brown (10YR 4/2) gravelly sandy loam, very dark brown (10YR 2/2) moist; moderate fine granular structure; soft, very friable; common fine and very fine roots; 15 percent gravel; strong effervescence; moderately alkaline; clear smooth boundary. (7 to 19 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--11 to 15 inches; grayish brown (10YR 5/2) gravelly loamy sand, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; soft, very friable; few fine and very fine roots; 20 percent gravel; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--15 to 26 inches; light gray (10YR 7/2) gravelly loamy sand, brown (10YR 5/3) moist; single grain; loose; 20 percent gravel; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--26 to 60 inches; very pale brown (10YR 7/3) gravelly sand, light yellowish brown (10YR 6/4) moist; single grain; loose; 15 percent gravel; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DOUGHBOY.json b/inst/extdata/OSD/D/DOUGHBOY.json index 7f936dae8d..30e518a41b 100644 --- a/inst/extdata/OSD/D/DOUGHBOY.json +++ b/inst/extdata/OSD/D/DOUGHBOY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ak1--0 to 25 centimeters (0 to 10 inches); dark grayish brown (10YR 4/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure parting to weak fine granular; soft, very friable; many fine and very fine roots; strong effervescence; finely disseminated carbonate throughout; 2 percent calcium carbonate equivalent; slightly alkaline; gradual wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak2--25 to 48 centimeters (10 to 19 inches); dark grayish brown (10YR 4/2) fine sandy loam, very dark gray (10YR 3/1) moist; weak medium subangular blocky structure parting to weak fine granular; soft, very friable; many fine and very fine roots; strong effervescence; finely disseminated carbonate throughout; 1 percent fine prominent irregular white (10YR 8/1), moist snail shell fragments; 5 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary. (Combined thickness of the A horizon is 25 to 76 centimeters (10 to 30 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk1--48 to 71 centimeters (l9 to 28 inches); gray (10YR 5/1) sandy clay loam, very dark gray (10YR 3/1) moist; weak medium and thick platy structure; slightly hard, very friable; common fine and very fine roots in parting planes between peds; violent effervescence; finely disseminated carbonate throughout; 1 percent fine prominent irregular white (10YR 8/1), moist snail shell fragments; 10 percent fine prominent irregular white (10YR 8/1), moist carbonate masses throughout; 15 percent calcium carbonate equivalent; moderately alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--71 to 89 centimeters (28 to 35 inches); gray (10YR 6/1) loam, very dark grayish brown (2.5Y 3/2) moist; weak coarse prismatic structure parting to weak medium platy; slightly hard, very friable;common fine and very fine roots in parting planes between peds; violent effervescence; finely disseminated carbonate throughout; 20 percent fine prominent irregular white (10YR 8/1), moist snail shell fragments; 10 percent fine prominent irregular white (10YR 8/1), moist carbonate masses throughout; 42 percent calcium carbonate equivalent; moderately alkaline; abrupt wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--89 to 97 centimeters (35 to 38 inches); grayish brown (10YR 5/2) clay loam, very dark brown (10YR 2/2) moist; weak medium granular structure; soft, very friable; few very fine roots throughout; violent effervescence; finely disseminated carbonate throughout; 20 percent fine prominent irregular white (10YR 8/1), moist snail shell fragments; 30 percent calcium carbonate equivalent; moderately alkaline; clear wavy boundary. (Combined thickness of the Bk horizon is 33 to 102 centimeters (13 to 40 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--97 to 165 centimeters (38 to 65 inches); light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; common fine distinct dark yellowish brown (10YR 4/4), moist and many fine prominent yellowish brown (10YR 5/8), moist iron masses throughout; massive; hard, friable; few very fine roots throughout horizon; violent effervescence; finely disseminated carbonate throughout; 30 percent fine prominent irregular white (10YR 8/1), moist snail shell fragments; 42 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--165 to 200 centimeters (65 to 79 inches); light brownish gray (2.5Y 6/2)fine sandy loam, dark grayish brown (2.5Y 4/2) moist; common fine distinct irregular dark yellowish brown (10YR 4/4), moist iron masses throughout; massive; soft, very friable; few very fine roots throughout horizon; violent effervescence; finely disseminated carbonate throughout; 5 percent fine prominent irregular white (10YR 8/1), moist snail shell fragments; 23 percent calcium carbonate equivalent; moderately alkaline. & RRH in 4/2007: All changed to metric. Introductory paragraph: revised. Typical pedon: revised to better match SSL data. RICs: revised, Bk and Cg horizons: Textures: added clay loam and sandy clay loam. Geographic Setting through Distribution and Extent: revised. Geographically Associated Soils: Deleted Dunday and Ipage, added Cullison, Nenzel, and Ord. Additional Data: revised." diff --git a/inst/extdata/OSD/D/DOVRAY.json b/inst/extdata/OSD/D/DOVRAY.json index 881e1f29de..514b2637ea 100644 --- a/inst/extdata/OSD/D/DOVRAY.json +++ b/inst/extdata/OSD/D/DOVRAY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--56 to 60 inches; light olive gray (5Y 6/2) clay; many fine prominent dark yellowish brown (10YR 4/4) redoximorphic concentrations; massive; firm; few streaks and threads of lime; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/D/DOYCE.json b/inst/extdata/OSD/D/DOYCE.json index 7bac4e8ebd..f112a21b39 100644 --- a/inst/extdata/OSD/D/DOYCE.json +++ b/inst/extdata/OSD/D/DOYCE.json @@ -204,7 +204,7 @@ "cf_class": "cobbly", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--32 to 44 inches; light brown (7.5YR 6/3) cobbly sandy clay loam, dark brown (7.5YR 4/3) moist; massive; very hard, firm, sticky and plastic; few fine and very fine roots; few very fine pores; 35 percent coarse fragments, dominantly cobbles and stones; violent effervescence; carbonates are disseminated and in veins, also 1/4 inch thick coatings on coarse fragments; strongly alkaline (pH 8.5); abrupt wavy boundary. (6 to 15 inches thick)" diff --git a/inst/extdata/OSD/D/DRAGLINE.json b/inst/extdata/OSD/D/DRAGLINE.json index f0ed98a3bc..9db894c0a8 100644 --- a/inst/extdata/OSD/D/DRAGLINE.json +++ b/inst/extdata/OSD/D/DRAGLINE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C/B--36 to 84 centimeters; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; 15 percent medium and coarse faint irregular grayish brown (2.5Y 5/2) redoximorphic depletions; moderate medium and coarse cloddy structure; firm, moderately hard; moderately sticky and moderately plastic; common very fine and fine roots throughout; few very fine low-continuity tubular pores; strong effervescence; 10% soft masses of lime from original Bk horizon; abrupt smooth boundary. (2C/B horizon 25 to 102 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C-- 84 to 203 centimeters; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; 15 percent medium and coarse faint irregular light brownish gray (2.5Y 6/2) redoximorphic depletions; massive; firm, hard; moderately sticky and moderately plastic; common very fine roots in cracks; slight effervescence; 2% lignite fragments." diff --git a/inst/extdata/OSD/D/DRINO.json b/inst/extdata/OSD/D/DRINO.json index 947b27962f..3d367ed0b1 100644 --- a/inst/extdata/OSD/D/DRINO.json +++ b/inst/extdata/OSD/D/DRINO.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--19 to 25 inches; yellowish brown (10YR 5/4) very gravelly loam, dark yellowish brown (10YR 3/4) moist; moderate medium prismatic structure; soft, very friable, nonsticky and slightly plastic; few very fine roots; few very fine tubular and common fine irregular pores; few patchy lime coats on the faces of peds; 40 percent pebbles, 15 percent cobbles; slight effervescence; slightly alkaline (pH 7.4); clear wavy boundary. (3 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--25 to 32 inches; brown (10YR 5/3) extremely gravelly loam, dark yellowish brown (10YR 3/4) moist; weak medium prismatic structure; soft, very friable, nonsticky and slightly plastic; few very fine roots; few very fine tubular and common fine to medium vesicular pores; few patchy lime coatings in root channels and pores; 35 percent pebbles, 45 percent cobbles; slight effervescence; slightly alkaline (pH 7.6); clear wavy boundary. (4 to 9 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bk3--32 to 38 inches; pale brown (10YR 6/3) extremely gravelly loam, dark yellowish brown (10YR 3/4) moist; weak medium prismatic structure; loose, nonsticky and slightly plastic; few very fine roots; common lime filaments throughout horizon; 30 percent pebbles, 45 percent cobbles; strong effervescence; moderately alkaline (pH 8.4); abrupt irregular boundary. (3 to 10 inches thick)" diff --git a/inst/extdata/OSD/D/DRUM.json b/inst/extdata/OSD/D/DRUM.json index 791a714ec6..6712cfa886 100644 --- a/inst/extdata/OSD/D/DRUM.json +++ b/inst/extdata/OSD/D/DRUM.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--11 to 20 inches; very pale brown (10YR 8/3) silty clay loam, brown (10YR 5/3) moist; massive; hard, friable, slightly sticky and slightly plastic; few fine and very fine roots; many fine and very fine random tubular pores; very strongly effervescent, strongly alkaline (pH 8.6); gradual wavy boundary. (6 to 18 inches thick)" diff --git a/inst/extdata/OSD/D/DRYBURG.json b/inst/extdata/OSD/D/DRYBURG.json index e2aa0ad944..9780309232 100644 --- a/inst/extdata/OSD/D/DRYBURG.json +++ b/inst/extdata/OSD/D/DRYBURG.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC--24 to 60 inches; reddish brown (2.5YR 4/4) silty clay; moderate medium angular blocky structure; very firm; some weak red (2.5YR 5/2) coatings on peds; occasional thin white (5YR 8/1) secondary carbonate accumulations; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DRYGYP.json b/inst/extdata/OSD/D/DRYGYP.json index 2d5c3e32da..90bcd5b23e 100644 --- a/inst/extdata/OSD/D/DRYGYP.json +++ b/inst/extdata/OSD/D/DRYGYP.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bym2--13 to 65 inches; pink (7.5YR 7/3) very weakly and weakly cemented petrogypsic horizon, brown (7.5YR 5/4) moist; massive; moderately hard and hard, firm and very firm, brittle; secondary gypsum segregated throughout matrix as many clusters of crystals; slightly effervescent and strongly effervescent; slightly alkaline (pH 7.6). (Combined thickness of the 2Bym horizons is 50 to 56 inches.)" diff --git a/inst/extdata/OSD/D/DUCKCLUB.json b/inst/extdata/OSD/D/DUCKCLUB.json index ce07fba12d..c2fe5b093f 100644 --- a/inst/extdata/OSD/D/DUCKCLUB.json +++ b/inst/extdata/OSD/D/DUCKCLUB.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bkq2--51 to 63 inches; olive brown (2.5Y 4/3) loamy fine sand, light brownish gray (2.5Y 6/2) dry; massive; slightly hard, firm, nonsticky and nonplastic; few very fine roots; few very fine tubular pores; 60 percent durinodes; common lime in 5 to 10 mm wide filaments and lining pores; strongly effervescent in filaments, noneffervescent in matrix; common fine faint dark brown (10YR 4/3) redoximorphic iron concentrations; strongly alkaline (pH 9.0)." diff --git a/inst/extdata/OSD/D/DUDA.json b/inst/extdata/OSD/D/DUDA.json index 7d3832ff01..09448cbe86 100644 --- a/inst/extdata/OSD/D/DUDA.json +++ b/inst/extdata/OSD/D/DUDA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--25 to 80 inches; white (10YR 8/1) sandstone, light gray (10YR 7/2) moist; light gray (10YR 7/2) loamy fine sand, light brownish gray (2.5Y 6/2) moist in cracks, joints, and cleavages; fine earth is single grain and loose; sandstone can be dug with a spade with difficulty; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DUDLEY.json b/inst/extdata/OSD/D/DUDLEY.json index 828df135a7..755c04c9c8 100644 --- a/inst/extdata/OSD/D/DUDLEY.json +++ b/inst/extdata/OSD/D/DUDLEY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bz2--25 to 30 inches; grayish brown (2.5Y 5/2) clay loam, very dark grayish brown (2.5Y 3/2) and dark grayish brown (2.5Y 4/2) crushing to dark grayish brown (10YR 4/2) moist; weak medium prismatic structure parting to moderate medium subangular blocky; hard, firm, sticky, and plastic; common fine and medium nests of gypsum and other salts; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined Bz horizons is 0 to 12 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--30 to 36 inches; grayish brown(2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium subangular blocky structure; hard, firm, sticky, and plastic; common fine and medium nests of gypsum and other salts; few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (4 to 24 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; light yellowish brown (2.5Y 6/4) clay loam, light olive brown (2.5Y 5/4) moist; many fine faint of light gray (2.5Y 7/1) and few fine distinct yellowish brown (10YR 5/6) mottles; massive; hard, friable sticky and plastic; few fine nests of gypsum and other salts; common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DUDLEYVILLE.json b/inst/extdata/OSD/D/DUDLEYVILLE.json index abbb561c28..13de5f8bdb 100644 --- a/inst/extdata/OSD/D/DUDLEYVILLE.json +++ b/inst/extdata/OSD/D/DUDLEYVILLE.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--0 to 4 inches; brown (7.5YR 5/3) very gravelly loamy sand, brown (7.5YR 4/3) moist; weak thin platy parting to weak very fine subangular blocky structure; soft, very friable, nonsticky, nonplastic; many very fine roots; many very fine vesicular pores; 37 percent gravel; violent effervescence; moderately alkaline, pH 8.2; abrupt wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck1--4 to 16 inches; brown (7.5YR 5/4) very gravelly loamy sand, brown (7.5YR 4/4) moist; massive; soft, very friable, nonsticky, nonplastic; many very fine roots; many very fine tubular pores; common distinct continuous calcium carbonate coats on rock fragments; 36 percent gravel; violent effervescence; moderately alkaline, pH 8.2; abrupt wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ck2--16 to 52 inches; light brown (7.5YR 6/4) very gravelly coarse sand, brown (7.5YR 5/4) moist; single grain; loose, nonsticky, nonplastic; many very fine roots; many very fine interstitial pores; few faint patchy calcium carbonate coats on rock fragments; 5 percent cobbles and 48 percent gravel; violent effervescence; moderately alkaline, pH 8.0; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck3--52 to 60 inches; light brown (7.5YR 6/4) extremely gravelly loamy sand, brown (7.5YR 5/4), moist; single grain; loose, nonsticky, nonplastic; many very fine roots; many very fine interstitial pores; many distinct continuous calcium carbonate coats on rock fragments; 10 percent cobbles and 54 percent gravel; violent effervescence; moderately alkaline, pH 8.0. (Combined thickness of the C horizons is 50 to 80 inches)" diff --git a/inst/extdata/OSD/D/DUKE.json b/inst/extdata/OSD/D/DUKE.json index e0ca5bf0fc..391b74ddd8 100644 --- a/inst/extdata/OSD/D/DUKE.json +++ b/inst/extdata/OSD/D/DUKE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 cm (0 to 5 in); reddish brown (5YR 4/3) silty clay, dark reddish brown (5YR 3/3), moist; moderate medium granular structure; friable, hard; common fine and medium roots; common fine and medium pores; very slight effervescence; moderately alkaline (pH 7.9); abrupt smooth boundary. (Thickness is 10 to 30 cm [4 to 12 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bnyz1--13 to 28 cm (5 to 11 in); reddish brown (5YR 5/3) clay, reddish brown (5YR 4/3), moist; weak coarse prismatic structure parting to moderate medium angular blocky structure; firm, hard; common fine and medium roots; few fine and medium pores; 20 percent distinct pressure faces; 2 percent fine salt masses along root channels; 1 percent fine gypsum masses along root channels; slight effervescence; slightly alkaline (pH 7.8); gradual smooth boundary. (Thickness is 0 to 51 cm [0 to 20 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bssnyz2--28 to 63 cm (11 to 25 in); reddish brown (5YR 5/4) clay, reddish brown (5YR 4/4), moist; weak coarse prismatic structure parting to moderate medium angular blocky structure; very firm, very hard; common fine and very fine roots; few fine and common very fine pores; 10 percent distinct slickensides; 30 percent distinct pressure faces; 3 percent fine salt masses along root channels; 2 percent fine gypsum masses along root channels; 1 percent fine carbonate masses; strong effervescence; slightly alkaline (pH 7.7); gradual smooth boundary. (Combine thickness is 38 to 190 cm [15 to 75 in])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnyz3--63 to 86 cm (25 to 34 in); reddish brown (5YR 5/4) silty clay, reddish brown (5YR 4/4), moist; moderate coarse prismatic structure parting to moderate medium subangular blocky structure; firm, very hard; common fine and very fine roots; few fine and common very fine pores; 1 percent fine salt masses along root channels; 1 percent fine gypsum masses along root channels; strong effervescence; slightly alkaline (pH 7.7); clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bnyz4--86 to 112 cm (34 to 44 in); yellowish red (5YR 5/6) silty clay loam, yellowish red (5YR 4/6), moist; weak coarse prismatic structure parting to moderate medium subangular blocky structure; firm, very hard; few very fine roots; few fine and common very fine pores; 1 percent fine salt masses along root channels; strong effervescence; slightly alkaline (pH 7.6); clear wavy boundary. (Combined thickness is 76 to 190 cm [30 to 75 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC1--112 to 165 cm (44 to 65 in); 50 percent yellowish red (5YR 5/6) and 30 percent reddish brown (5YR 4/3) and 20 percent light brown (7.5YR 6/4) stratified with many 0.63 cm (1/4 in) to 2.54cm (1 in) thick strata of loam and silt loam, 50 percent yellowish red (5YR 4/6) and 30 percent dark reddish brown (5YR 3/3) and 20 percent brown (7.5YR 5/4), moist; weak very coarse prismatic structure parting to weak medium platy structure; very friable, hard; few very fine roots; common fine and common medium pores; strong effervescence; slightly alkaline (pH 7.7); clear smooth boundary. (Combine thickness is 0 to 127 cm [0 to 50 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC2--165 to 221 cm (65 to 87 in); 70 percent reddish brown (5YR 4/3) and 20 percent reddish brown (5YR 5/4) and 10 percent light brown (7.5YR 6/4) stratified with three 3 inch thick strata separated by many 0.32 cm (1/8 in) to 1.27 cm (1/2 in) thick strata of silt loam and loam, 70 percent dark reddish brown (5YR 3/3) and 20 percent reddish brown (5YR 4/4) and 10 percent brown (7.5YR 5/4), moist; weak very coarse prismatic structure parting to weak medium platy structure; very friable, hard; few very fine roots; common fine and medium pores; slight effervescence; slightly alkaline (pH 7.7)." diff --git a/inst/extdata/OSD/D/DUNAWAY.json b/inst/extdata/OSD/D/DUNAWAY.json index baaba1a8a7..08a992376a 100644 --- a/inst/extdata/OSD/D/DUNAWAY.json +++ b/inst/extdata/OSD/D/DUNAWAY.json @@ -89,7 +89,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--0 to 9 cm (0.0 to 3.5 in); pale brown (10YR 6/3) extremely cobbly loamy sand, brown (10YR 5/3), moist; 90 percent sand; 4 percent clay; single grain; loose, loose, nonsticky, nonplastic; common fine and very fine roots and few medium roots; common medium vesicular and common very fine interstitial pores; 5 percent stones and 25 percent gravels and 40 percent cobbles; strong effervescence; slightly alkaline, pH 7.7; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--9 to 87 cm (3.5 to 34.3 in); light brownish gray (10YR 6/2) extremely gravelly loamy coarse sand, dark grayish brown (10YR 4/2), moist; 95 percent sand; 3 percent clay; single grain; loose, loose, nonsticky, nonplastic; common very fine, fine, and medium roots and few coarse roots; common fine medium and coarse vesicular pores; 5 percent stones and 20 percent cobbles and 60 percent gravels; strong effervescence; slightly alkaline, pH 7.7; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--87 to 200 cm (34.3 to 78.7 in); very dark brown (10YR 2/2) extremely gravelly coarse sandy loam, dark grayish brown (10YR 4/2), moist; 90 percent sand; 6 percent clay; massive; very friable, soft, nonsticky, nonplastic; few fine and medium roots and common very fine roots; few fine and common medium and coarse vesicular pores; 10 percent stones and 25 percent cobbles and 50 percent gravels; strong effervescence; slightly alkaline, pH 7.6." diff --git a/inst/extdata/OSD/D/DUNDAS.json b/inst/extdata/OSD/D/DUNDAS.json index 7fe3c985dc..28f3eabfa7 100644 --- a/inst/extdata/OSD/D/DUNDAS.json +++ b/inst/extdata/OSD/D/DUNDAS.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "stronlyly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cg--40 to 60 inches; grayish brown (2.5Y 5/2) loam; many medium faint light olive brown (2.5Y 5/4) and common fine distinct olive yellow (2.5Y 6/8) mottles; massive; friable; few black (10YR 2/1) clayey fillings in old root channels in the upper part; few soft grayish limy segregations; few dark oxide stains; about 5 percent coarse fragments; stronlyly effervescent; slightly alkaline." diff --git a/inst/extdata/OSD/D/DURRSTEIN.json b/inst/extdata/OSD/D/DURRSTEIN.json index cb1b4ffab4..c58746a4a4 100644 --- a/inst/extdata/OSD/D/DURRSTEIN.json +++ b/inst/extdata/OSD/D/DURRSTEIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bzg--11 to 16 inches; very dark grayish brown (2.5Y 3/2) silty clay, grayish brown (2.5Y 5/2) dry; few fine distinct olive brown (2.5Y 4/4) redox concentrations; moderate coarse subangular blocky structure; very hard, firm; few fine striations and nests of salts; slight effervescence; moderately alkaline; clear smooth boundary. (0 to 17 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkzg--16 to 42 inches; dark gray (5Y 4/1) and gray (5Y 5/1) silty clay, gray (5Y 5/1 and 6/1) dry; few fine prominent olive brown (2.5Y 4/4) redox concentrations; weak medium and coarse subangular blocky structure; very hard, firm; common fine striations and nests of salts; common fine accumulations of carbonate; slight effervescence; moderately alkaline; abrupt smooth boundary. (18 to 44 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--42 to 60 inches; dark olive gray (5Y 3/2) silty clay, olive gray (5Y 5/2) dry; common fine prominent olive brown (2.5Y 4/4) redox concentrations; weak medium subangular blocky structure; hard, firm; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/D/DUVERT.json b/inst/extdata/OSD/D/DUVERT.json index db8511693c..8ca918d319 100644 --- a/inst/extdata/OSD/D/DUVERT.json +++ b/inst/extdata/OSD/D/DUVERT.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bnssz1--4 to 9 inches; light yellowish brown (2.5Y 6/3) clay, light olive brown (2.5Y 5/3) moist; moderate fine and medium angular blocky structure; few fine wedge-shaped aggregates; very hard, very firm, very sticky and very plastic; common very fine and fine and few medium roots; few very fine and fine pores; common distinct slickensides; 1 percent fine masses of salt; moderately sodic; SAR 16.8; violently effervescent; slightly effervescent; clear smooth boundary." diff --git a/inst/extdata/OSD/D/DWIGHT.json b/inst/extdata/OSD/D/DWIGHT.json index 964f369b7c..62afdf0b83 100644 --- a/inst/extdata/OSD/D/DWIGHT.json +++ b/inst/extdata/OSD/D/DWIGHT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--71 to 84 centimeters (22 to 33 inches); silty clay (48 percent clay and 3 percent sand), dark reddish brown (5YR 3/4), moist; weak medium subangular blocky structure; very firm; 1 percent fine carbonate concretions and 2 percent fine and medium carbonate masses; few fine angular chert chips; slight effervescence; moderately alkaline; gradual smooth boundary. Lab sample # 40A14196" diff --git a/inst/extdata/OSD/D/DYLAN.json b/inst/extdata/OSD/D/DYLAN.json index 04b2a2d9d9..99eb8ea39a 100644 --- a/inst/extdata/OSD/D/DYLAN.json +++ b/inst/extdata/OSD/D/DYLAN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss2--66 to 97 cm, (28 to 38 in); brownish yellow (10YR 6/6), clay; moderate coarse wedge parts to moderate coarse angular blocky structure; extremely hard, extremely firm; few fine roots throughout; common very fine tubular pores; 1 percent faint dark brown (10YR 3/3) organic stains; 8 percent distinct pressure faces; 15 percent prominent slickensides (pedogenic); 2 percent fine black (10YR 2/1) iron-manganese nodules in matrix; 2 percent medium distinct light brownish gray (10YR 6/2) iron depletions with sharp boundaries in matrix surrounding redox concentrations; 5 percent fine distinct light brownish gray (10YR 6/2) iron depletions with sharp boundaries in matrix surrounding redox concentrations; 20 percent fine distinct strong brown (7.5YR 5/8) masses of oxidized iron with sharp boundaries in matrix; 12 percent fine irregular weakly cemented carbonate nodules in matrix; 3 percent fine threadlike carbonate masses in matrix; very slight effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss3--97 to 132 cm, (38 to 52 in); yellowish brown (10YR 5/6), clay; strong coarse wedge parts to strong coarse angular blocky structure; extremely hard, extremely firm; few fine roots throughout; common very fine tubular pores; 1 percent faint dark brown (10YR 3/3) organic stains; 30 percent prominent slickensides (pedogenic); 2 percent fine black (10YR 2/1) iron-manganese nodules in matrix; 5 percent coarse distinct light olive gray (5Y 6/2) iron depletions with clear boundaries in matrix surrounding redox concentrations; 20 percent fine faint yellowish brown (10YR 5/8) masses of oxidized iron with sharp boundaries in matrix; 5 percent fine irregular weakly cemented carbonate nodules in matrix; slight effervescence; moderately alkaline; clear wavy boundary." diff --git a/inst/extdata/OSD/E/EAKIN.json b/inst/extdata/OSD/E/EAKIN.json index 3aab9471bd..d42e8215d4 100644 --- a/inst/extdata/OSD/E/EAKIN.json +++ b/inst/extdata/OSD/E/EAKIN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--13 to 27 inches; light yellowish brown (2.5Y 6/3) silt loam, olive brown (2.5Y 4/3) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable; common medium accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (5 to 26 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk2--27 to 38 inches; gray (5Y 5/1) clay loam, olive gray (5Y 4/2) moist; common fine faint mottles of dark grayish brown (2.5Y 4/2) and reddish brown (5YR 4/4) moist; weak medium and coarse subangular blocky structure; hard, firm, slightly sticky and slightly plastic; common medium and fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (8 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C1--38 to 54 inches; grayish brown (2.5Y 5/2) and dark gray (2.5Y 4/1) clay loam, dark grayish brown (2.5Y 4/2) and dark gray (2.5Y 3/1) moist; common fine distinct relic mottles of light olive brown (2.5Y 5/6) moist; massive; hard, firm, sticky and plastic; strong effervescence; moderately alkaline." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--54 to 62 inches; grayish brown (2.5Y 5/2) and gray (2.5Y 5/1) clay loam, dark grayish brown (2.5Y 4/2) and very dark gray (2.5Y 3/1) moist; common fine distinct relic mottles of light olive brown (2.5Y 5/6) moist; massive; hard, firm, sticky and plastic; common nests and seams of gypsum crystals; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EAPA.json b/inst/extdata/OSD/E/EAPA.json index 20ec02402c..483e9ae776 100644 --- a/inst/extdata/OSD/E/EAPA.json +++ b/inst/extdata/OSD/E/EAPA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--23 to 37 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse prismatic structure parting to weak coarse and medium subangular blocky; hard, very friable; few fine roots; few fine accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (7 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--37 to 60 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, very friable; few fine roots in the upper part; few fine accumulations of carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/E/EARP.json b/inst/extdata/OSD/E/EARP.json index 56561688a2..d8e1a27524 100644 --- a/inst/extdata/OSD/E/EARP.json +++ b/inst/extdata/OSD/E/EARP.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--8 to 25 inches; dark brown (7.5YR 3/2) very gravelly clay loam, very dark brown (10YR 2/2) moist; moderate fine and medium subangular blocky structure; hard, friable, sticky, plastic; common fine roots; many fine interstitial pores; more than 50 percent medium and large pebbles and few cobbles, both angular and subangular; moderately effervescent; moderately alkaline (pH 8.0); gradual wavy boundary. (8 to 20 inches thick)" diff --git a/inst/extdata/OSD/E/EASBY.json b/inst/extdata/OSD/E/EASBY.json index dbdfd7e5d0..2e9230ed66 100644 --- a/inst/extdata/OSD/E/EASBY.json +++ b/inst/extdata/OSD/E/EASBY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) clay loam, very dark gray (10YR 3/1) dry; weak fine and medium subangular blocky structure; very hard, friable, sticky and plastic; few fine roots; few fine masses of salt; slight effervescence; moderately alkaline; abrupt smooth boundary. (6 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "ABkyz--7 to 11 inches; dark gray (10YR 4/1) clay loam, gray (10YR 6/1) dry; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, sticky and slightly plastic; few very fine roots; few fine masses of salt and gypsum; strong effervescence; moderately alkaline; clear irregular boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Bky--11 to 22 inches; light brownish gray (2.5Y 6/2) clay loam, light gray (2.5Y 7/2) dry; few fine prominent dark yellowish brown (10YR 4/6) and common medium prominent brownish yellow (10YR 6/6) mottles; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, sticky, and slightly plastic; about 2 percent gravel; common fine masses of gypsum; few fine soft masses of carbonates; violent effervescence; moderately alkaline; clear irregular boundary. (6 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--22 to 30 inches; dark grayish brown (2.5Y 4/2) clay loam, light brownish gray (2.5Y 6/2) dry; common medium distinct light olive brown (2.5Y 5/4) and few medium prominent dark yellowish brown (10YR 4/6) and gray (10YR 6/1) mottles; massive; slightly hard, friable, sticky, and plastic; about 5 percent gravel; few fine masses of gypsum; few fine soft masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--30 to 43 inches; grayish brown (2.5Y 5/2) loam, light brownish gray (2.5Y 6/2) dry; few medium prominent dark brown (10YR 3/3), common medium prominent gray (10YR 6/1), few fine prominent dark red (2.5YR 3/6), and many medium prominent dark brown (7.5YR 4/4) mottles; massive; slightly hard, friable, sticky and plastic; about 10 percent gravel; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--43 to 60 inches; olive brown (2.5Y 4/4) loam, light yellowish brown (2.5Y 6/4) dry; few fine prominent dark red (2.5YR 3/6), strong brown (7.5YR 4/6) and gray (10YR 6/1) mottles; massive; slightly hard, friable, sticky and plastic; about 10 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EASTHAM.json b/inst/extdata/OSD/E/EASTHAM.json index f153186093..d145ba93c3 100644 --- a/inst/extdata/OSD/E/EASTHAM.json +++ b/inst/extdata/OSD/E/EASTHAM.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss1--40 to 46 inches; dark gray (10YR 4/1) clay; moderate medium angular blocky structure; very hard, very firm; common fine roots; few fine vesicular and tubular pores; many slickensides; common fine masses and threads of calcium carbonate; many medium distinct light olive brown (2.5Y 5/4) relic redox concentrations or masses with sharp boundaries; weakly effervescent; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss2--46 to 57 inches; dark grayish brown (2.5Y 4/2) clay; moderate coarse angular blocky structure; very hard, very firm; few fine roots; few fine vesicular and tubular pores; common slickensides; common fine concretions and masses and few fine threads of calcium carbonate; common fine and medium faint grayish brown (2.5Y 5/2) and common fine distinct olive yellow (2.5Y 6/6) redox concentrations; weakly effervescent; moderately alkaline; gradual wavy boundary.(combined thickness of Bkss horizons 10 to 26 inches)" diff --git a/inst/extdata/OSD/E/EASTWALKER.json b/inst/extdata/OSD/E/EASTWALKER.json index 539b374db6..601c78e7ef 100644 --- a/inst/extdata/OSD/E/EASTWALKER.json +++ b/inst/extdata/OSD/E/EASTWALKER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Oe--0 to 8 cm; mucky peat, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine and fine roots; many very fine interstitial pores; slight effervescence; moderately alkaline, (pH 8.0); clear smooth boundary. (0 to 10 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--8 to 15 cm; loam, grayish brown (2.5Y 5/2) moist; moderate fine subangular blocky structure; slightly hard, friable, moderately sticky and moderately plastic; many very fine and fine roots; common very fine tubular and interstitial pores; 2 percent light brownish gray (2.5Y 6/2), moist, masses of oxidized iron in the matrix; slight effervescence; moderately alkaline, (pH 8.2); clear wavy boundary. (7 to 30 cm thick)" diff --git a/inst/extdata/OSD/E/ECKMAN.json b/inst/extdata/OSD/E/ECKMAN.json index d680e90ea1..d57d0ee97c 100644 --- a/inst/extdata/OSD/E/ECKMAN.json +++ b/inst/extdata/OSD/E/ECKMAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--20 to 32 inches; light olive brown (2.5Y 5/3) silt loam, pale yellow (2.5Y 7/3) dry; moderate medium subangular blocky structure; friable, slightly sticky and slightly plastic; few very fine roots; few fine and medium tubular pores; violently effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--32 to 41 inches; light olive brown (2.5Y 5/4) silt loam, pale yellow (2.5Y 7/4) dry; moderate medium subangular blocky structure; friable; slightly sticky and slightly plastic; few very fine roots; few fine and medium tubular pores; few fine carbonate masses; violently effervescence; moderately alkaline; clear smooth boundary. (Combined Bk horizons 6 to 24 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--41 to 57 inches; light olive brown (2.5Y 5/4) silt loam, light yellowish brown (2.5Y 6/4) dry; few fine prominent strong brown (7.5YR 5/8) redoximorphic concentrations along root channels; massive; friable, slightly sticky and slightly plastic; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--57 to 80 inches; light olive brown (2.5Y 5/4) and olive brown (2.5Y 4/4) stratified silt loam and very fine sandy loam, pale yellow (2.5Y 7/4) and light yellowish brown (2.5Y 6/4) dry; common medium prominent strong brown (7.5YR 5/8) redoximorphic concentrations and few medium prominent gray (2.5Y 6/1) redoximorphic depletions; massive; friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EDGAR.json b/inst/extdata/OSD/E/EDGAR.json index 47b1d14c57..4f82e52d3c 100644 --- a/inst/extdata/OSD/E/EDGAR.json +++ b/inst/extdata/OSD/E/EDGAR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B3--9 to 12 inches; light olive brown (2.5Y 5/4) loam, olive brown (2.5Y 4/4) moist; weak medium prismatic structure; hard, very friable, slightly sticky, slightly plastic; many very fine roots; many very fine and fine tubular pores; strong effervescence; moderately alkaline (pH 8.2); clear boundary. (2 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1ca--12 to 24 inches; pale yellow (2.5Y 7/3) loam, light olive brown (2.5Y 5/3) moist; massive; hard, very friable, slightly sticky, slightly plastic; common very fine roots; common very fine and fine tubular pores; violent effervescence with many soft, white accumulations of lime; moderately alkaline (pH 8.4); gradual boundary. (10 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--24 to 60 inches; pale yellow (5Y 7/3) light clay loam, olive (5Y 5/4) moist; massive; hard, very friable, slightly sticky, slightly plastic; few very fine roots; common very fine and fine tubular pores; violent effervescence; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/E/EDGELEY.json b/inst/extdata/OSD/E/EDGELEY.json index 0ba4fbd3c2..ff7ddcd669 100644 --- a/inst/extdata/OSD/E/EDGELEY.json +++ b/inst/extdata/OSD/E/EDGELEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--32 to 60 inches; gray (5Y 5/1) soft shale bedrock, very dark gray (5Y 3/1) moist; segregations of carbonates along fractures; slight effervescence." diff --git a/inst/extdata/OSD/E/EDMINSTER.json b/inst/extdata/OSD/E/EDMINSTER.json index 24996689de..6378a313c2 100644 --- a/inst/extdata/OSD/E/EDMINSTER.json +++ b/inst/extdata/OSD/E/EDMINSTER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--4 to 9 inches; gray and olive (5Y 5/1, 5/3) clay loam, dark gray and olive gray (5Y 4/1, 5/2) moist; strong medium prismatic structure; very hard, firm, sticky and very plastic; few very fine roots; common very fine tubular pores; clean sand grains coat columns; many moderately thick clay films on peds and many thick clay films line pores; slightly effervescent with disseminated lime, strongly effervescent, lime segregated in few fine soft masses; ESP is 20; strongly alkaline (pH 9.0); clear wavy boundary. (3 to 6 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "BC--18 to 26 inches; grayish brown (2.5Y 5/2) clay loam, gray (5Y 5/1) moist; many medium prominent light gray (2.5Y 7/2, 5Y 7/2) mottles, common fine distinct dark gray and light brownish gray (5Y 4/1, 2.5Y 6/2) mottles moist; weak fine prismatic structure; very hard, very firm, sticky and plastic; no roots; common very fine tubular pores; many thick clay films on peds and line pores; slightly effervescent with disseminated lime, strongly effervescent, lime segregated in common fine concretions; ESP is 15; moderately alkaline (pH 8.2); clear wavy boundary. (4 to 11 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3C--50 to 60 inches; pale yellow (5Y 8/3) loam, olive (5Y 5/3) moist; many fine prominent brownish yellow (10YR 6/6) mottles, many fine prominent yellowish brown (10YR 5/8) mottles moist; massive; slightly hard, firm, sticky and plastic; common very fine tubular pores; many moderately thick clay films line pores; slightly effervescent with disseminted lime, strongly effervescent, lime segregated in few fine soft masses; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/E/EDROY.json b/inst/extdata/OSD/E/EDROY.json index 7e2010250e..5095933f04 100644 --- a/inst/extdata/OSD/E/EDROY.json +++ b/inst/extdata/OSD/E/EDROY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk--178 to 203 cm (70 to 80 in); pale yellow (2.5Y 7/3) sandy clay loam, pale yellow (2.5Y 7/3) dry; massive; hard, firm; 3 percent fine and medium masses of calcium carbonate; 1 percent fine and medium weakly cemented nodules of calcium carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EDWIN.json b/inst/extdata/OSD/E/EDWIN.json index e13c23c712..fa92b511cd 100644 --- a/inst/extdata/OSD/E/EDWIN.json +++ b/inst/extdata/OSD/E/EDWIN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--9 to 27 inches; light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; weak medium and coarse prismatic structure parting to moderate medium and coarse subangular blocky; very hard, friable; slightly plastic; common fine roots throughout; strong effervescence; moderately alkaline; clear wavy boundary. (5 to 27 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cyz1--27 to 37 inches; pale yellow (2.5Y 7/3) silt loam, light olive brown (2.5Y 5/3) moist; massive; hard, friable; few fine roots in cracks; many fine plate like nests of gypsum; common fine threads of salt; slight effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cyz2--37 to 60 inches; pale yellow (2.5Y 7/3) silt loam varved with very thin layers of very fine sand to clay; light olive brown (2.5Y 5/3) moist; many medium and coarse distinct light gray (2.5Y 7/0) relic mottles; hard, friable; 1 to 2 mm thick varves; few fine plate like nests of gypsum; few fine threads of salt; common fine and medium prominent dark brown (7.5YR 4/4), yellowish brown (10YR 5/6), and brownish yellow (10YR 6/6) iron stains; common fine cylindrical iron concretions; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EGAN.json b/inst/extdata/OSD/E/EGAN.json index a50ac9ae6e..edb5e0d1fe 100644 --- a/inst/extdata/OSD/E/EGAN.json +++ b/inst/extdata/OSD/E/EGAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--24 to 31 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; common fine prominent strong brown (7.5YR 5/8) moist redox concentrations; weak coarse subangular blocky structure; hard, friable, slightly sticky; common fine brown accumulations of (Fe and Mn oxides); many medium accumulations of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--31 to 42 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; common fine prominent strong brown (7.5YR 5/8) moist redox concentrations; moderate coarse prismatic structure parting to moderate coarse subangular blocky; hard, firm, slightly sticky; common fine brown accumulations of (Fe and Mn oxides); many fine accumulations of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--42 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; many fine prominent strong brown (7.5YR 5/8) and yellowish red (5YR 5/8) moist redox concentrations; moderate coarse subangular blocky structure; hard, firm, slightly sticky; common fine and medium brown accumulations of (Fe and Mn oxides); common fine accumulations of calcium carbonate; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/E/EGAS.json b/inst/extdata/OSD/E/EGAS.json index 33e9c144fa..2ecce39249 100644 --- a/inst/extdata/OSD/E/EGAS.json +++ b/inst/extdata/OSD/E/EGAS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "ACz--4 to 19 inches; very dark gray (2.5Y 3/1) silty clay, gray (2.5Y 5/1) dry; weak fine subangular blocky structure; very hard, very firm, very sticky, plastic; disseminated salt and common fine salt striations, pedons become encrusted with white salts upon drying; strong effervescence; moderately alkaline; gradual wavy boundary. (5 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--19 to 36 inches; olive gray (5Y 4/2) silty clay, olive gray (5Y 5/2) dry; common fine distinct yellowish brown (10YR 5/6) redox concentrations; massive; very hard, very firm, very sticky, plastic; disseminated salt and few salt striations, pedons become encrusted with white salts upon drying; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--36 to 60 inches; dark gray (5Y 4/1) silty clay, gray (5Y 5/1) dry; common fine distinct yellowish brown (10YR 5/6) redox concentrations; massive; very hard, very firm, very sticky, plastic; disseminated salt and few salt striations, peds become encrusted with white salts upon drying, strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EGELAND.json b/inst/extdata/OSD/E/EGELAND.json index 57fecce57d..39026fabb3 100644 --- a/inst/extdata/OSD/E/EGELAND.json +++ b/inst/extdata/OSD/E/EGELAND.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--35 to 48 inches; pale brown (10YR 6/3) loamy fine sand, yellowish brown (10YR 5/4) moist; weak coarse subangular blocky structure; soft, very friable; common fine accumulations of calcium carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 32 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; pale brown (10YR 6/3) loamy fine sand; yellowish brown (10YR 5/4) moist; single grained; soft, very friable; few fine accumulations of calcium carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/E/EKALAKA.json b/inst/extdata/OSD/E/EKALAKA.json index 2a063ec212..77ceccca35 100644 --- a/inst/extdata/OSD/E/EKALAKA.json +++ b/inst/extdata/OSD/E/EKALAKA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bz1--17 to 21 inches; grayish brown (10YR 5/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; moderate medium prismatic structure parting to moderate medium angular blocky; very hard, friable, nonsticky and slightly plastic; common very fine roots between peds; many threads and masses of salt; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bz2--21 to 25 inches; pale brown (10YR 6/3) loamy fine sand, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; very hard, friable, nonsticky and nonplastic; few very fine roots; few masses of salt; slight effervescence; slightly alkaline; clear wavy boundary. (Combined Bz horizons 0 to 22 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCz--25 to 33 inches; grayish brown (2.5Y 5/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm, nonsticky and nonplastic; few very fine roots throughout; few salt masses; many coarse yellowish brown (10YR 5/6) and dark yellowish brown (10YR 4/4) masses of manganese; slight effervescence; slightly alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/E/ELBA.json b/inst/extdata/OSD/E/ELBA.json index 551e12c4e1..52ae8cadcf 100644 --- a/inst/extdata/OSD/E/ELBA.json +++ b/inst/extdata/OSD/E/ELBA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt3--14 to 22 inches; brown (7.5YR 5/4) clay; moderate fine angular blocky structure; firm; few roots; many distinct dark yellowish brown (10YR 4/4) clay films on faces of peds; about 5 percent brownish yellow (10YR 6/6) weathered remnants of limestone; slight effervescence, slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt4--22 to 30 inches; brown (7.5YR 5/4) channery silty clay; moderate fine and medium subangular blocky structure; friable; few roots; many distinct dark yellowish brown (10YR 4/4) clay films on faces of peds; about 20 percent weathered remnants of limestone; many medium and coarse brownish yellow (10YR 6/6) zones of light silty clay loam calcareous material; slight effervescence, moderately alkaline; clear smooth boundary. (Combined thickness of the Bt horizons is 14 to 38 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BC--30 to 42 inches; light yellowish brown (2.5Y 6/4) silty clay loam; moderate fine and medium subangular blocky structure; friable; few roots; few distinct dark yellowish brown (10YR 4/4) clay films on faces of peds; about 5 percent soft calcareous shale fragments; slight effervescence, moderately alkaline; abrupt wavy boundary. (5 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--42 to 48 inches; dark gray (10YR 4/1) channery silty clay loam; weak very fine subangular blocky structure; firm; dark yellowish brown (10YR 4/4) zones comprise about 5 percent of volume; 30 percent light gray (10YR 7/2) soft calcareous siltstone or limestone fragments and 10 percent brownish yellow (10YR 6/6) soft weathered remnants of limestone; strong effervescence, moderately alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--48 to 54 inches; dark gray (5Y 4/1) very channery silty clay loam, light olive gray (5Y 6/2) crushed; few fine distinct brownish yellow (10YR 6/6) mottles; massive; firm; thin very patchy yellowish brown (10YR 5/4) coatings on fragments; about 50 percent gray (5Y 6/1) limestone fragments; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/E/ELBAVILLE.json b/inst/extdata/OSD/E/ELBAVILLE.json index 3427b0b72c..f82e0b6616 100644 --- a/inst/extdata/OSD/E/ELBAVILLE.json +++ b/inst/extdata/OSD/E/ELBAVILLE.json @@ -273,7 +273,7 @@ "cf_class": "flaggy", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--37 to 61 inches; yellowish brown (10YR 5/4) extremely flaggy sandy loam; massive; friable; about 70 percent coarse fragments, mostly flagstones with some channers; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/E/ELKADER.json b/inst/extdata/OSD/E/ELKADER.json index 17942307c7..edb3274684 100644 --- a/inst/extdata/OSD/E/ELKADER.json +++ b/inst/extdata/OSD/E/ELKADER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 5 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable; many fine roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--5 to 17 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; slightly hard, friable; many fine roots; violent effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the A horizons is 7 to 20 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--17 to 26 inches; brown (10YR 5/3) silty clay loam, dark brown (10YR 4/3) moist; moderate fine granular structure; slightly hard, friable; common fine roots; violent effervescence; moderately alkaline; gradual smooth boundary. (8 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "C1--26 to 40 inches; yellow (10YR 7/6) clay loam, brownish yellow (10YR 6/6) moist; massive; slightly hard, friable; 2 percent limestone fragments; violent effervescence; moderately alkaline; diffuse smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--40 to 60 inches; yellow (10YR 7/6) clay loam, brownish yellow (10YR 6/6) moist; massive; soft, very friable; few medium sized clusters of gypsum crystals; strongly alkaline; violent effervescence." diff --git a/inst/extdata/OSD/E/ELKHILLS.json b/inst/extdata/OSD/E/ELKHILLS.json index 4a1629ec59..75b243211e 100644 --- a/inst/extdata/OSD/E/ELKHILLS.json +++ b/inst/extdata/OSD/E/ELKHILLS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 7 inches; pale brown (10YR 6/3) sandy loam, brown (10YR 4/3) moist; weak coarse subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; many very fine roots; few very fine interstitial and common very fine tubular pores; strong effervescent, lime disseminated; moderately alkaline (pH 8.0); clear smooth boundary. (2 to 12 inches thick)" diff --git a/inst/extdata/OSD/E/ELKHORN.json b/inst/extdata/OSD/E/ELKHORN.json index 46fc2b603d..ce1a28369b 100644 --- a/inst/extdata/OSD/E/ELKHORN.json +++ b/inst/extdata/OSD/E/ELKHORN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "but effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "B2t--26 to 46 inches; brown (7.5YR 5/4) sandy clay loam, mixed dark brown and reddish brown (7.5YR 4/4, 5YR 4/4) moist; massive; very hard, firm, sticky and slightly plastic; few thin discontinuous clay films lining pores; many medium and coarse weakly cemented shot that are not magnetic but effervescent in solution of H2O2; moderately acid (pH 6.0); gradual wavy boundary. (20 to 40 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "but effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--46 to 63 inches; strong brown (7.5YR 5/6) fine sandy loam, mixed strong brown and dark brown (7.5YR 5/6 and 4/4) moist; massive; very hard, firm, slightly sticky and slightly plastic; few very fine and fine roots; few coarse tubular, few very fine interstitial pores; few thin distinct clay films line pores; few medium faint weakly cemented coarse shot are not magnetic, but effervescent in solution of H2O2; slightly acid (pH 6.5)." diff --git a/inst/extdata/OSD/E/ELMVILLE.json b/inst/extdata/OSD/E/ELMVILLE.json index 6ca74a72b9..d24bec8c8e 100644 --- a/inst/extdata/OSD/E/ELMVILLE.json +++ b/inst/extdata/OSD/E/ELMVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 11 inches; black (10YR 2/1) fine sandy loam, very dark gray (10YR 3/1) dry; weak very fine subangular blocky structure; very friable; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak--11 to 14 inches; very dark gray (10YR 3/1) very fine sandy loam, dark gray (10YR 4/1) dry; weak very fine granular structure; very friable; strong effervescence; moderately alkaline; clear smooth boundary. (Combined A horizons 7 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--14 to 21 inches; dark grayish brown (10YR 4/2) very fine sandy loam; weak very fine granular structure; very friable; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--21 to 26 inches; grayish brown (10YR 5/2) very fine sandy loam; few fine distinct light olive brown (2.5Y 5/6), olive yellow (2.5Y 6/6) and light yellowish brown (2.5Y 6/4) redoximorphic concentrations; weak medium platy structure; very friable; violent effervescence; strongly alkaline; clear smooth boundary. (Combined Bk horizons 6 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--26 to 30 inches; light yellowish brown (2.5Y 6/4) loamy fine sand; common fine and medium distinct light olive brown (2.5Y 5/6), olive yellow (2.5Y 6/6), and yellowish brown (10YR 5/6) redoximorphic concentrations; few fine prominent very dusky red (2.5YR 2/2) iron oxide concretions; single grain; loose; slight effervescence; strongly alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--30 to 60 inches; stratified very dark gray (5Y 3/1) and dark olive gray (5Y 3/2) clay; few fine prominent light olive brown (2.5Y 5/6) and olive yellow (2.5Y 6/6) redoximorphic concentrations; strong very fine angular blocky structure; sticky; few light gray (2.5Y 7/2) sandy coatings on vertical fractures; few limy masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/ELON.json b/inst/extdata/OSD/E/ELON.json index f1093f7441..013d48458b 100644 --- a/inst/extdata/OSD/E/ELON.json +++ b/inst/extdata/OSD/E/ELON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 9 inches; very dark grayish brown (10YR 3/2) silt loam, grayish brown (10YR 5/2) dry; weak fine and very fine subangular blocky structure; friable; few very fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (6 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--9 to 16 inches; very dark gray (10YR 3/1), dark grayish brown (10YR 4/2) and very dark grayish brown (10YR 3/2) silt loam; common medium distinct dark brown (7.5YR 3/4) mottles; massive with horizontal cleavage due to the stratification; friable; common very fine roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--16 to 38 inches; very dark grayish brown (10YR 3/2), very dark gray (10YR 3/1), dark grayish brown (10YR 4/2) and grayish brown (10YR 5/2) silt loam; few fine distinct dark brown (7.5YR 3/4) mottles; massive with horizontal cleavage due to the stratification; friable; few very fine roots in the upper part; strong effervescence; moderately alkaline; clear smooth boundary." diff --git a/inst/extdata/OSD/E/ELPAM.json b/inst/extdata/OSD/E/ELPAM.json index 916416547a..f77fb7f362 100644 --- a/inst/extdata/OSD/E/ELPAM.json +++ b/inst/extdata/OSD/E/ELPAM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 4 inches; black (10YR 2/1) silt loam, gray (10YR 5/1) dry; weak medium granular structure; soft, very friable; strong effervescence; moderately alkaline; clear wavy boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--4 to 15 inches; dark gray (2.5Y 4/1) and very dark gray (5Y 3/1) silty clay loam, gray (N 6/) and 2.5Y 5/1) dry; weak medium prismatic structure parting to weak fine granular; soft, friable; slightly sticky; violent effervescence; moderately alkaline; clear wavy boundary. (3 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg1--15 to 36 inches; gray (5Y 5/1) silty clay loam, light gray (N 7/1) dry; very weak coarse blocky structure; slightly hard, friable; slightly sticky; violent effervescence; moderately alkaline; gradual wavy boundary. (10 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg2--36 to 52 inches; gray (5Y 6/1) silty clay loam, white (5Y 8/1) dry; massive; hard, firm, slightly sticky; violent effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--52 to 60 inches; olive brown (2.5Y 4/4) and gray (5Y 5/1) clay loam, light olive brown (2.5Y 5/4) and light gray (5Y 7/1) dry; massive; hard, firm, slightly sticky; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/ELSALADO.json b/inst/extdata/OSD/E/ELSALADO.json index e5a4a5322e..3d59c44cb7 100644 --- a/inst/extdata/OSD/E/ELSALADO.json +++ b/inst/extdata/OSD/E/ELSALADO.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw1--6 to 18 inches; brown (10YR 5/3) and grayish brown (10YR 5/2) loam, brown (10YR 4/3) and dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and common fine roots; many very fine and fine tubular pores; areas of worm castings and krotovinas that are slightly dark in color are slightly effervescent and light color are strongly effervescent with dissemintated carbonate; moderately alkaline (pH 8.2); 5 percent gravel; gradual smooth boundary." diff --git a/inst/extdata/OSD/E/ELTREE.json b/inst/extdata/OSD/E/ELTREE.json index 78c5952dfe..6dde066874 100644 --- a/inst/extdata/OSD/E/ELTREE.json +++ b/inst/extdata/OSD/E/ELTREE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 25 centimeters (0 to 10 inches); grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable; slightly sticky and slightly plastic; few fine and medium roots; many fine pores; many clusters of worm casts; slight effervescence; slightly alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A1--25 to 48 centimeters (10 to 19 inches); dark grayish brown (10YR 4/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; slightly hard, friable; slightly sticky and slightly plastic; common fine and medium roots; common fine and medium pores; common clusters of worm casts; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--48 to 66 centimeters (19 to 26 inches); grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable; slightly sticky and slightly plastic; few fine and medium roots; common fine and medium open pores; common clusters of worm casts; several spots and threads of segregated lime; strong effervescence; moderately alkaline; clear smooth boundary. Combined thickness of the A horizon ranges from 25 to 76 centimeters (10 to 30 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--66 to 89 centimeters (26 to 35 inches); grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; hard, friable; slightly sticky and slightly plastic; few fine roots; common fine and large pores; common clusters of worm casts; common soft small accumulations and threads of calcium carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--89 to 124 centimeters (35 to 49 inches); light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate medium subangular blocky structure; hard, firm; sticky and plastic; few fine roots; common fine and medium pores; many soft accumulations and threads of calcium carbonate, a few small calcium carbonate concretions; strong effervescence; moderately alkaline; gradual smooth boundary. The combined thickness of the Bk horizons range from 38 to 97 centimeters (15 to 38 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--124 to 200 centimeters (49 to 80 inches); pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; massive; hard, firm; sticky and plastic; common soft masses and threads of calcium carbonate, a few small calcium carbonate concretions; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EMBARCADERO.json b/inst/extdata/OSD/E/EMBARCADERO.json index 2bc151f4c5..a3b20bffbe 100644 --- a/inst/extdata/OSD/E/EMBARCADERO.json +++ b/inst/extdata/OSD/E/EMBARCADERO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkn4--37 to 47 inches, (95 to 120 cm); light yellowish brown (2.5Y 6/3) broken face silty clay, light olive brown (2.5Y 5/3) broken face moist; 11 percent sand; 40 percent silt; 49 percent clay; massive; very hard, friable, moderately sticky, moderately plastic; few fine roots and few coarse roots; few very fine tubular pores; 30 percent carbonate masses; strong effervescence; very strongly alkaline, pH 9.6 by pH meter 1:1 water; clear smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BkCg--65 to 98 inches, (164 to 250 cm); 60 percent light yellowish brown (2.5Y 6/4) broken face silty clay, 60 percent light olive brown (2.5Y 5/4) broken face moist; 4 percent sand; 40 percent silt; 56 percent clay; massive; very hard, firm, moderately sticky, very plastic; common very fine tubular pores; 40 percent gray (N 5/), moist, and light gray (N6/), dry, iron depletions; 10 percent carbonate masses; strong effervescence; very strongly alkaline, pH 9.2 by pH meter 1:1 water." diff --git a/inst/extdata/OSD/E/EMBDEN.json b/inst/extdata/OSD/E/EMBDEN.json index 35a875416e..b049c3b7f6 100644 --- a/inst/extdata/OSD/E/EMBDEN.json +++ b/inst/extdata/OSD/E/EMBDEN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw3--24 to 30 inches; light brownish gray (2.5Y 6/2) fine sandy loam, very dark grayish brown (2.5Y 3/2) moist; many medium faint grayish brown (2.5Y 5/2) redox concentrations; very weak medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; few fine roots; common fine pores; slight effervescence; slightly alkaline; clear wavy boundary. (Combined Bw horizons 6 to 32 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--30 to 44 inches; light gray (2.5Y 7/2) fine sandy loam, olive brown (2.5Y 4/4) moist; few fine prominent light red (2.5YR 6/6) redoximorphic concentrations; weak coarse subangular blocky structure; slightly hard, very friable, slightly sticky and nonplastic; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 35 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--44 to 60 inches; pale yellow (2.5Y 7/3) fine sandy loam, olive brown (2.5Y 4/4) moist; common fine prominent reddish brown (5YR 4/4) redoximorphic concentrations massive; slightly hard, very friable, slightly sticky and nonplastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EMIGHA.json b/inst/extdata/OSD/E/EMIGHA.json index 3d13d98457..fdf221a0dd 100644 --- a/inst/extdata/OSD/E/EMIGHA.json +++ b/inst/extdata/OSD/E/EMIGHA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--8 to 19 inches; pale brown (10YR 6/3) silty clay loam, brown (10YR 4/3) moist; moderate medium and fine prismatic structure parting to weak fine subangular blocky; slightly hard, friable, sticky and plastic; common fine and very fine roots; slight effervescence, few faint seams and masses of calcium carbonate; strongly alkaline (pH 8.6); clear smooth boundary. (Combined Bw horizons 9 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--19 to 30 inches; brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; massive; slightly hard, friable, sticky and plastic; few fine and very fine roots; strong effervescence, common seams and masses of calcium carbonate; strongly alkaline (pH 8.6); gradual wavy boundary. (0 to 25 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--30 to 60 inches; pale brown (10YR 6/3) clay loam, stratified with thin layers of silty clay loam, silt loam, and loam, brown (10YR 4/3) moist; massive; slightly hard, friable, sticky and plastic; few very fine roots; strong effervescence, many seams and masses of calcium carbonate; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/E/EMIGRATION.json b/inst/extdata/OSD/E/EMIGRATION.json index a7cd695c9b..9e36f9151f 100644 --- a/inst/extdata/OSD/E/EMIGRATION.json +++ b/inst/extdata/OSD/E/EMIGRATION.json @@ -135,7 +135,7 @@ "cf_class": "very cobbly", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "soil effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "C2--14 to 18 inches; pale brown (10YR 6/3) very cobbly clay loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure that parts to moderate medium and fine granular structure; hard, friable, sticky and slightly plastic; 80 percent cobbles and gravel; mildly alkaline (pH 7.8); limestone fragments in the soil effervescence but soil matrix is noncalcareous; abrupt irregular boundary. (2 to 5 inches thick)" diff --git a/inst/extdata/OSD/E/EMRICK.json b/inst/extdata/OSD/E/EMRICK.json index c8245c6fa9..f97b7149b6 100644 --- a/inst/extdata/OSD/E/EMRICK.json +++ b/inst/extdata/OSD/E/EMRICK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--20 to 40 inches; light olive brown (2.5Y 5/3) loam, olive brown (2.5Y 4/3) moist; very weak medium and coarse subangular blocky structure; very friable; few pebbles and cobbles to 5 inches in diameter at depths of 26 inches; common threads of carbonates; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Bk2--40 to 46 inches; light yellowish brown (2.5Y 6/3) loam, light olive brown (2.5Y 5/4) moist; weak coarse subangular blocky structure with some evidence of weak medium platy structure; friable; strong effervescence; moderately alkaline; gradual irregular boundary. (Combined Bk horizons 5 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--46 to 60 inches; olive gray (5Y 5/2) loam, olive brown (2.5Y 4/3) moist; weak medium platy and subangular blocky structure; friable; strong effervescence; some soft carbonate accumulations; moderately alkaline." diff --git a/inst/extdata/OSD/E/ENERGY.json b/inst/extdata/OSD/E/ENERGY.json index 87a10839d8..a92cc88daa 100644 --- a/inst/extdata/OSD/E/ENERGY.json +++ b/inst/extdata/OSD/E/ENERGY.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--8 to 28 inches; stratified brown (10YR 5/3) clay loam and fine sandy loam, brown (10YR 4/3) moist; massive; hard, firm; few fine roots and very fine pores; violent effervescence, moderately alkaline; abrupt smooth boundary. (10 to 24 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--28 to 38 inches; stratified brown (10YR 5/3) sandy clay loam, fine sandy loam, and clay loam; brown (10YR 4/3) moist; massive; hard, firm; few fine roots and very fine pores; violent effervescence, moderately alkaline; abrupt smooth boundary. (10" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--38 to 44 inches; very pale brown (10YR 7/3) loamy sand, brown (10YR 5/3) moist; massive; slightly hard, friable; violent effervescence, moderately alkaline; abrupt smooth boundary. (0 to" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--44 to 62 inches; brown (10YR 5/3) sandy clay loam, brown (10YR 4/3) moist; massive; hard firm; stratified; violent effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/E/ENET.json b/inst/extdata/OSD/E/ENET.json index e42d3ec2fb..0020f2f63b 100644 --- a/inst/extdata/OSD/E/ENET.json +++ b/inst/extdata/OSD/E/ENET.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C1--24 to 32 inches; light brownish gray (10YR 6/2) and pale brown (10YR 6/3) gravelly loamy sand, brown (10YR 5/3) moist; single grain; loose; common coarse accumulations of carbonate and thick crusts on undersides of gravel; strong effervescence; moderately alkaline; gradual boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--32 to 60 inches; multicolored gravelly sand; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/ENLOE.json b/inst/extdata/OSD/E/ENLOE.json index a8fc98ce52..f804e7d652 100644 --- a/inst/extdata/OSD/E/ENLOE.json +++ b/inst/extdata/OSD/E/ENLOE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btg3--29 to 40 inches; dark gray (5Y 4/1) clay, gray (5Y 6/1) dry; moderate very coarse prismatic structure parting to strong fine and very fine angular blocky; extremely hard, very firm, very sticky and very plastic; few fine roots; few medium and fine pores; faces of peds have shiny pressure coatings, slickensides cross horizon at an angle of 10 degrees to 15 degrees from vertical; slight effervescence; slightly alkaline; gradual wavy boundary. (Combined Btg horizons 12 to 36 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg--40 to 60 inches; olive gray (5Y 4/2) clay, light olive gray (5Y 6/2) dry; few fine faint olive brown (2.5Y 4/4) redoximorphic concentrations, common fine faint light yellowish brown (2.5Y 6/4) dry redoximorphic concentrations, and few fine faint gray (5Y 6/1) dry redoximorphic depletions; moderate medium and fine angular blocky structure; extremely hard, firm, very sticky, and very plastic; few fine roots; few fine pores; few fine masses of carbonates; slight effervescence; slightly alkaline. (0 to 25 inches thick.)" diff --git a/inst/extdata/OSD/E/ENNING.json b/inst/extdata/OSD/E/ENNING.json index 0ad491d29b..aed0e2d035 100644 --- a/inst/extdata/OSD/E/ENNING.json +++ b/inst/extdata/OSD/E/ENNING.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 5 inches; light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; weak fine granular structure; slightly hard, very friable; many fine and medium roots; strong effervescence (32 percent calcium carbonate); neutral; clear wavy boundary. (3 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--5 to 14 inches; white (2.5Y 8/2) and pale yellow (2.5Y 8/4) silty clay loam; light brownish gray (2.5Y 6/2) and light yellowish brown (2.5Y 6/4) moist; weak fine and medium granular structure; slightly hard, friable; common fine roots; 20 percent by volume of shale fragments; violent effervescence (72 percent CaCO3); slightly alkaline; clear wavy boundary. (7 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--14 to 40 inches; pale yellow (2.5Y 8/4) chalky shale, light yellowish brown (2.5Y 6/4) moist; bedding planes evident; common yellow (10YR 7/6) stains along cracks and bedding planes; few fine roots in upper 10 inches; violent effervescence (80 percent calcium carbonate), slightly alkaline." diff --git a/inst/extdata/OSD/E/ENSENADA.json b/inst/extdata/OSD/E/ENSENADA.json index 3c83fe65e8..d4027e0f1b 100644 --- a/inst/extdata/OSD/E/ENSENADA.json +++ b/inst/extdata/OSD/E/ENSENADA.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 5 inches; dark reddish brown (5YR 3/3) gravelly clay; moderate fine granular structure; firm, sticky, plastic; many fine roots; few cobbles and rocks in the surface; 40 percent limestone gravel; slight effervescence, mildly alkaline; clear smooth boundary. (4 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt1--5 to 11 inches; dark reddish brown (5YR 3/4) gravelly clay; moderate fine subangular blocky structure; firm, sticky, plastic; common fine roots; common thin patchy clay films; 40 percent limestone gravel; slight effervescence, mildly alkaline; clear smooth boundary. (5 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bt2--11 to 60 inches; yellowish red (5YR 5/8) very gravelly clay; massive; friable, sticky, plastic; 60 percent by volume of horizon is rounded and subrounded limestone gravel coated with clay and calcium carbonate; violent effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/E/ENSTROM.json b/inst/extdata/OSD/E/ENSTROM.json index c204f295a4..57cb1093ae 100644 --- a/inst/extdata/OSD/E/ENSTROM.json +++ b/inst/extdata/OSD/E/ENSTROM.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--23 to 33 inches; yellowish brown (10YR 5/4) fine sand; few fine faint brown (7.5YR 5/4), strong brown (7.5YR 5/6), and yellowish brown (10YR 5/6) mottles; single grain; loose; lag line of gravelly fine sand in lower part; slight effervescence; slighlty alkaline; abrupt wavy boundary. (0 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--33 to 60 inches; grayish brown (2.5Y 5/2) loam; many medium prominent yellowish brown (10YR 5/6), brownish yellow (10YR 6/6), and yellowish red (5YR 5/6) mottles; massive; very friable; about 10 percent gravel; strong effervescence. moderately alkaline." diff --git a/inst/extdata/OSD/E/ENTENTE.json b/inst/extdata/OSD/E/ENTENTE.json index 75b3298391..ef4d87e743 100644 --- a/inst/extdata/OSD/E/ENTENTE.json +++ b/inst/extdata/OSD/E/ENTENTE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C2--46 to 60 inches; very pale brown (10YR 7/3) silt loam, yellowish brown (10YR 5/4) moist; massive; soft, very friable; few fine and medium roots; common very fine, fine and few medium tubular pores; weakly effervescent; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/E/EOLA.json b/inst/extdata/OSD/E/EOLA.json index e641f0cc3a..6c1fb2949b 100644 --- a/inst/extdata/OSD/E/EOLA.json +++ b/inst/extdata/OSD/E/EOLA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Crk--18 to 22 inches; pink (7/5YR 8/4) interbedded weakly cemented marly earth and thin discontinuous layers of brittle limestone bedrock; massive; few nodular concretions and coatings of calcium carbonate; violent effervescent; moderately alkaline; abrupt smooth boundary. (0 to 15 inches thick)" diff --git a/inst/extdata/OSD/E/EPOUFETTE.json b/inst/extdata/OSD/E/EPOUFETTE.json index 719a2f3b11..789d27e5cd 100644 --- a/inst/extdata/OSD/E/EPOUFETTE.json +++ b/inst/extdata/OSD/E/EPOUFETTE.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--46 to 152 centimeters (18 to 60 inches); light brownish gray (2.5Y 6/2) gravelly coarse sand; single grain; loose; few fine prominent light yellowish brown (10YR 6/4) iron concentrations; about 20 percent gravel; slight effervescence; ph 7.6 (slightly alkaline)." diff --git a/inst/extdata/OSD/E/EPPING.json b/inst/extdata/OSD/E/EPPING.json index 095a2d7d9d..d04d9832f8 100644 --- a/inst/extdata/OSD/E/EPPING.json +++ b/inst/extdata/OSD/E/EPPING.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; light gray (10YR 7/2) silt loam, dark grayish brown (10YR 4/2) moist; weak fine granular structure; slightly hard, friable; many hard chips of siltstone on surface and throughout horizon; strong effervescence; moderately alkaline; abrupt smooth boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--5 to 10 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; weak medium blocky structure; slightly hard, friable; many siltstone chips; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--10 to 15 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; weak medium subangular blocky structure; hard, friable; many siltstone chips; strong effervescence; moderately alkaline; abrupt smooth boundary. (3 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--15 to 80 inches; very pale brown (10YR 8/3) soft siltstone bedrock, pale brown (10YR 6/3) moist; strong effervescence." diff --git a/inst/extdata/OSD/E/ERAMOSH.json b/inst/extdata/OSD/E/ERAMOSH.json index 425f22def7..6990a75230 100644 --- a/inst/extdata/OSD/E/ERAMOSH.json +++ b/inst/extdata/OSD/E/ERAMOSH.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--8 to 16 inches; very dark grayish brown (10YR 3/2) silt loam, grayish brown (10YR 5/2) dry; weak medium subangular blocky structure; soft, friable, nonsticky and nonplastic; common fine and few medium roots; common dark reddish brown (5YR 3/4) stains on vertical faces of peds; slight effervescence; slightly alkaline; clear wavy boundary. (7 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--16 to 25 inches; grayish brown (2.5Y 5/2) silt loam, light gray (5Y 7/1) dry; weak coarse prismatic structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; common dark reddish brown (5YR 3/3) stains on vertical faces of peds; slight effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--25 to 53 inches; very dark grayish brown (2.5Y 3/2) silt loam, gray (5Y 6/1) dry; weak coarse prismatic structure parting to weak coarse subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; common dark reddish brown (2.5YR 3/4) stains on faces of peds; 10 percent snail shells; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--53 to 60 inches; gray (5Y 5/1) silt loam, gray (5Y 6/1) dry; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; 10 percent snail shells; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/E/ERD.json b/inst/extdata/OSD/E/ERD.json index 92180f4de4..c558ee224a 100644 --- a/inst/extdata/OSD/E/ERD.json +++ b/inst/extdata/OSD/E/ERD.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg1--3 to 10 inches; very dark gray (5Y 3/1) clay, gray (5Y 5/1) dry; moderate coarse blocky structure parting to moderate medium and fine blocky; extremely hard, extremely firm, very sticky, very plastic; slight effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bg2--10 to 20 inches; very dark gray (5Y 3/1) clay, gray (5Y 5/1) dry; weak very coarse blocky structure parting to strong medium and fine blocky; extremely hard, extremely firm, very sticky, very plastic; slight effervescence; slightly alkaline; diffuse smooth boundary. (Combined Bg horizons 10 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bzg--20 to 28 inches; dark gray (5Y 4/1) clay, gray (5Y 5/1) dry; weak coarse blocky structure; extremely hard, extremely firm, very sticky, very plastic; common medium accumulations of salts; slight effervescence; slightly alkaline; diffuse smooth boundary. (6 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Czg--28 to 37 inches; olive gray (5Y 4/2) clay, olive gray (5Y 5/2) dry; massive; extremely hard, extremely firm, very sticky, very plastic; common medium accumulations of salts; strong effervescence; slightly alkaline; diffuse smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--37 to 60 inches; grayish brown (2.5Y 5/2) clay, light brownish gray (2.5Y 6/2) dry; few fine faint gray (N 5/)) and brown (10YR 5/3) mottles; massive; extremely hard, extremely firm, very sticky, very plastic; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/E/ERDA.json b/inst/extdata/OSD/E/ERDA.json index 444d1426e3..78a120063b 100644 --- a/inst/extdata/OSD/E/ERDA.json +++ b/inst/extdata/OSD/E/ERDA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 8 inches; grayish brown (10YR 5/2) silt 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; many very fine vesicular pores; strong effervescence (9 percent calcium carbonate equivalent); carbonates are disseminated; mildly alkaline (pH 7/6); clear smooth boundary. (5 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--8 to 14 inches; brown (10YR 5/3) silt loam, dark brown (10YR 4/3) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; many very fine tubular pores; strong effervescence (12 percent calcium carbonate equivalent); carbonates are disseminated; mildly alkaline (pH 7.8); clear smooth boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--14 to 23 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; many very fine tubular pores; violent effervescence (23 percent calcium carbonate equivalent); carbonates are disseminated and in soft masses; moderately alkaline (pH 8.2); clear wavy boundary. (6 to 13 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--23 to 39 inches; very pale brown (10YR 7/3) silt loam, pale brown (10YR 6/3) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine roots; many very fine tabular pores; violent effervescence (37 percent calcium carbonate equivalent); carbonates are disseminated and in soft masses; strongly alkaline (pH 8.8); clear wavy boundary. (8 to 22 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--39 to 60 inches; very pale brown (10YR 7/3) silt loam, pale brown (10YR 6/3) moist; common fine distinct strong brown (7.5YR 5/6) relict mottles; massive; hard, friable, slightly sticky and slightly plastic; few very fine roots; many very fine tubular pores; violent effervescence (24 percent calcium carbonate equivalent); carbonates are disseminated; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/E/ERIE.json b/inst/extdata/OSD/E/ERIE.json index 2992e9b92c..cf20465555 100644 --- a/inst/extdata/OSD/E/ERIE.json +++ b/inst/extdata/OSD/E/ERIE.json @@ -181,7 +181,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1 --94 to 114 cm (37 to 45 in); olive (5Y 4/3) channery silty clay loam; massive structure; firm; few fine prominent yellowish brown (10YR 5/6) masses of oxidized iron; 30 percent channers; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2 -- 114 to 152 cm (45 to 60 in); olive (5Y 4/3) very gravelly loam; massive structure; firm; 30 percent gravel and 10 percent cobbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/ESCANABA.json b/inst/extdata/OSD/E/ESCANABA.json index ed078e0f69..273271f041 100644 --- a/inst/extdata/OSD/E/ESCANABA.json +++ b/inst/extdata/OSD/E/ESCANABA.json @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "Slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--42 to 80 inches; reddish brown (5YR 5/4) gravelly fine sandy loam; massive with weakly expressed thin platiness inherrent from deposition; friable; few fine and medium roots; about 14 percent gravel and 6 percent cobbles; Slightly effervescent; slightly alkaline." diff --git a/inst/extdata/OSD/E/ESMOND.json b/inst/extdata/OSD/E/ESMOND.json index 19de6242df..935920d044 100644 --- a/inst/extdata/OSD/E/ESMOND.json +++ b/inst/extdata/OSD/E/ESMOND.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "ABk--5 to 9 inches; dark gray (10YR 4/1) loam, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; common roots; common fine pores; few pebbles; common fine masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--9 to 20 inches; light brownish gray (2.5Y 6/2) and light gray (2.5Y 7/2) loam, olive (2.5Y 4/4) and light olive brown (2.5Y 5/4) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable; slightly sticky and slightly plastic; few roots; common fine pores; few pebbles; common masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (4 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--20 to 60 inches; light yellowish brown (2.5Y 6/4) loam, olive brown (2.5Y 4/4) moist; few fine prominent dark reddish brown and yellowish brown (2.5YR 3/4 and 10YR 5/6) moist redoximorphic concentrations; massive; hard, friable, slightly sticky and slightly plastic; few stones; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/ESPELIE.json b/inst/extdata/OSD/E/ESPELIE.json index c36d9a7b37..4da441eb6d 100644 --- a/inst/extdata/OSD/E/ESPELIE.json +++ b/inst/extdata/OSD/E/ESPELIE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bg--24 to 37 inches; dark gray (5Y 4/1) clay; common fine prominent light olive brown (2.5Y 5/4) and light olive brown (2.5Y 5/6) redoximorphic concentrations; moderate medium prismatic structure parting to moderate medium angular blocky; firm; about 5 percent gravel; slight effervescence; slightly alkaline; abrupt wavy boundary. (0 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Cg1--37 to 68 inches; gray (5Y 5/1) clay; common fine distinct olive (5Y 5/4) and pale olive (5Y 6/4) redoximorphic concentrations; massive; firm; about 5 percent gravel; strong effervescence: moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--68 to 80 inches; olive gray (5Y 5/2) clay; common medium distinct light olive brown (2.5Y 5/4) and common fine prominent light olive brown (5Y 5/6) redoximorphic concentrations; massive; firm; about 3 percent gravel; few masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/ESPINAL.json b/inst/extdata/OSD/E/ESPINAL.json index 282d470f8b..35b720b188 100644 --- a/inst/extdata/OSD/E/ESPINAL.json +++ b/inst/extdata/OSD/E/ESPINAL.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--19 to 48 inches; very pale brown (10YR 7/4) sand; single grain; loose, nonsticky, nonplastic; many sand-size volcanic fragments; strong effervescence." diff --git a/inst/extdata/OSD/E/ETHAN.json b/inst/extdata/OSD/E/ETHAN.json index 069c602f67..4734f04312 100644 --- a/inst/extdata/OSD/E/ETHAN.json +++ b/inst/extdata/OSD/E/ETHAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; dark grayish brown (10YR 4/2) loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable; strong effervescence (11 percent calcium carbonate); slightly alkaline; abrupt smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--8 to 21 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; common fine masses of calcium carbonate; violent effervescence (28 percent calcium carbonate); slightly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--21 to 32 inches; light gray (2.5Y 7/2) clay loam, light brownish gray (2.5Y 6/2) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine masses of calcium carbonate; violent effervescence (22 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (Combined Bk horizons is 10 to 45 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--32 to 60 inches; pale yellow (2.5Y 7/4) clay loam, light yellowish brown (2.5Y 6/4) moist; common fine prominent mottles of strong brown (7.5YR 5/6) and gray (5Y 6/1) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few fine masses of calcium carbonate; violent effervescence (18 percent calcium carbonate); slightly alkaline." diff --git a/inst/extdata/OSD/E/ETOILE.json b/inst/extdata/OSD/E/ETOILE.json index 0ce640630c..adff2e95d8 100644 --- a/inst/extdata/OSD/E/ETOILE.json +++ b/inst/extdata/OSD/E/ETOILE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btkss--41 to 53 inches; olive (5Y 4/4 and 5Y 5/6) clay; weak medium subangular blocky structure; extremely hard, very firm; few flattened roots; common slickensides; common rounded masses and concretions of calcium carbonate; slight effervescence; moderately alkaline; clear smooth boundary. (5 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck--53 to 60 inches; varigated and mottled with olive brown (2.5Y 4/4), light olive brown (2.5Y 5/6), and gray (5Y 6/1) shale with clay texture; extremely hard, very firm; common rounded masses and seams of calcium carbonate accumulation; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EUDORA.json b/inst/extdata/OSD/E/EUDORA.json index 6728c9fdf8..c3d5746d4e 100644 --- a/inst/extdata/OSD/E/EUDORA.json +++ b/inst/extdata/OSD/E/EUDORA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--48 to 80 inches; grayish brown (10YR 5/2) silt loam, light brownish gray (10YR 6/2) dry; massive; soft, very friable, nonsticky and nonplastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/E/EVRIDGE.json b/inst/extdata/OSD/E/EVRIDGE.json index 3fced1089a..34d0602eed 100644 --- a/inst/extdata/OSD/E/EVRIDGE.json +++ b/inst/extdata/OSD/E/EVRIDGE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--28 to 38 inches; light olive gray (5Y 6/2) fine sandy loam, grayish brown (2.5Y 5/2) moist; weak fine subangular blocky structure; slightly hard, friable; 70 percent weathered fragments of sandstone, easily crushed; common fine and medium accumulations of carbonates; strong effervescence; strongly alkaline; gradual wavy boundary. (0 to 20 inches)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--38 to 60 inches; light olive gray (5Y 6/2) sandstone, olive gray (5Y 5/2) moist; easily crushed; slight effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/E/EWA.json b/inst/extdata/OSD/E/EWA.json index 6de2396ee4..bc1d7ca151 100644 --- a/inst/extdata/OSD/E/EWA.json +++ b/inst/extdata/OSD/E/EWA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 33 centimeters (0 to 13 inches); dark reddish brown (5YR 3/2) silty clay loam, dark reddish brown (5YR 3/3) dry; weak, fine and very fine granular structure; hard, friable, moderately sticky and moderately plastic; many fine roots; many fine and very fine pores; common worm holes and casts; many fine black (10YR 2/1) concretions; strong effervescence with hydrogen peroxide; neutral (pH 7.0); clear wavy boundary. (11 to 13 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--33 to 46 centimeters (13 to 18 inches); dark reddish brown (2.5YR 3/3) silty clay loam, dark reddish brown (2.5YR 3/4) dry; weak fine and very fine granular structure; hard, friable, moderately sticky and moderately plastic; many fine roots; common very fine tubular and interstitial pores; many very fine black concretions; strong effervescence with hydrogen peroxide; neutral (pH 7.0); clear wavy boundary. (3 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bw1--46 to 114 centimeters (18 to 45 inches); dark reddish brown (2.5YR 3/4) silty clay loam, dark red (2.5YR 3/6) dry; weak fine and very fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; many fine roots; many fine , very fine, andcommon medium and few coarse tubular pores; weak patchy pressure faces on peds; few reddish yellow (7.5YR 6/6) and yellow (10YR 7/6) sand grains; common very fine black (10YR 2/1) concretions; strong effervescence with hydrogen peroxide; neutral (pH 7.0); diffuse wavy boundary. (25 to 28 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw2--114 to 152 centimeters (45 to 60 inches); dark red (2.5YR 2.5/5) silty clay loam, dark red (2.5YR 3/6) dry; moderate medium and fine subangular blocky structure; hard, friable, slightly sticky and moderately plastic; many fine roots; many fine , very fine pores, and medium and few medium tubular pores; many thin coatings that are patchy in upper part, nearly continuous in lower part; many sand grains like those in Bw1 horizon;; strong effervescence with hydrogen peroxide; neutral (pH 7.2)." diff --git a/inst/extdata/OSD/E/EXLINE.json b/inst/extdata/OSD/E/EXLINE.json index d9f655e275..c5df3765a8 100644 --- a/inst/extdata/OSD/E/EXLINE.json +++ b/inst/extdata/OSD/E/EXLINE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btknz--11 to 19 inches; gray (10YR 5/1) clay, very dark gray (10YR 3/1) moist; weak very coarse prismatic structure parting to moderate very fine and fine blocky; very hard, very firm, very sticky and very plastic; continuous shiny films on vertical faces of peds; many fine and medium accumulations of salts; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--19 to 23 inches; light brownish gray (2.5Y 6/2) clay, grayish brown (2.5Y 5/2) moist; weak very fine blocky structure; very hard, very firm, very sticky and very plastic; common fine tongues of very dark brown (10YR 2/2) moist; common fine accumulations of salts; common fine and medium accumulations of carbonate; strong effervescence; strongly alkaline; gradual wavy boundary. (0 to 32 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--23 to 34 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; common fine prominent yellowish brown (10YR 5/6) redox concentrations and gray (5Y 5/1) redox depletions; weak fine and very fine blocky structure; very hard, firm, sticky and plastic; many coarse tongues of very dark grayish brown (2.5Y 3/2) moist; few fine accumulations of salts; few fine accumulations of carbonate; strong effervescence; strongly alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--34 to 60 inches; light gray (2.5Y 7/2) silty clay loam, light olive brown (2.5Y 5/4) moist; many fine and medium prominent yellowish brown (10YR 5/6) redox concentrations and gray (5Y 5/1) redox depletions; varved; very hard, firm, sticky and plastic; common fine and medium accumulations of carbonate in the upper part; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FAA.json b/inst/extdata/OSD/F/FAA.json index d05ca20bcc..56a586ff49 100644 --- a/inst/extdata/OSD/F/FAA.json +++ b/inst/extdata/OSD/F/FAA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C1--39 to 59 inches, (100 to 150 cm); reddish brown (2.5YR 5/3); loamy sand; massive; very friable, nonsticky, nonplastic; slight effervescence; common fine faint yellowish brown (10YR 5/6) redoximorphic concentrations and common fine distinct light brownish gray (2.5Y6/2) redoximorphic depletions; slightly alkaline (pH 7.6); clear smooth boundary. (0 to 32 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--59 to 72inches, (150 to 183 cm); dark gray (10YR4/1); fine sand; single grain; loose, nonsticky, nonplastic; strong effervescence; slightly alkaline (pH 7.6). (80 to 127 inches thick)" diff --git a/inst/extdata/OSD/F/FABENS.json b/inst/extdata/OSD/F/FABENS.json index 9eb7ebda6c..7f7565c7b1 100644 --- a/inst/extdata/OSD/F/FABENS.json +++ b/inst/extdata/OSD/F/FABENS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 48 centimeters (0.0 to 18.9 inches); brown (7.5YR 5/3) crushed clay, brown (7.5YR 4/3)crushed, moist; 29 percent sand; 29 percent silt; 42 percent clay; strong coarse cloddy structure; noncemented, moderately sticky, moderately plastic; high excavation difficulty; electrical conductivity of 1.3 mmhos/cm by ECe meter, 1:1 water; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; gradual smooth boundary. Lab sample # D7372. (15 to 20 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 203 centimeters (18.9 to 79.9 inches); light brown (7.5YR 6/3) crushed stratified very fine sandy loam, brown (7.5YR 4/3) crushed, moist; 61 percent sand; 30 percent silt; 9 percent clay; massive; noncemented, nonsticky, nonplastic; moderate excavation difficulty; electrical conductivity of 1.0 mmhos/cm by ECe meter, 1:1 water; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; common thin (.5 to 2 inch thick) pink (7.5YR 7/3) crushed strata of fine sandy loam and loamy very fine sand, brown (7.5YR 5/3) crushed, moist. Lab sample # D7373." diff --git a/inst/extdata/OSD/F/FADDIN.json b/inst/extdata/OSD/F/FADDIN.json index b0e9157474..9521496069 100644 --- a/inst/extdata/OSD/F/FADDIN.json +++ b/inst/extdata/OSD/F/FADDIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt3--89 to 117 cm (35 to 46 in); grayish brown (10YR 5/2) sandy clay, light brownish gray (10YR 6/2) dry; moderate medium prismatic structure parting to moderate medium and coarse angular blocky; extremely hard, very firm; few fine roots; common distinct clay films along faces of prisms and patchy clay films on faces of some peds; few pitted concretions of calcium carbonate 2 to 5 mm in diameter; few fine black (10YR 2/1) iron-manganese nodules; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bt horizon is 58 to 145 cm [23 to 57 in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk--117 to 203 cm (46 to 80 in); light yellowish brown (2.5Y 6/4) clay loam, pale yellow (2.5Y 7/4) dry; weak medium and coarse angular blocky structure parting to weak fine and very fine subangular blocky; extremely hard, firm; few fine roots; common faint clay films on faces of some peds; about 30 percent by volume soft powdery masses of calcium carbonate 0.4 to 1 cm across; few pitted concretions of calcium carbonate 0.5 to 8 cm in diameter; few fine black (10YR 2/1) iron-manganese nodules; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FAIRBURN.json b/inst/extdata/OSD/F/FAIRBURN.json index 0cfddd0caa..398f0e53c8 100644 --- a/inst/extdata/OSD/F/FAIRBURN.json +++ b/inst/extdata/OSD/F/FAIRBURN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; brown (10YR 5/3) clay loam, dark grayish brown (10YR 4/2) moist; weak very fine granular structure; soft, very friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline; clear smooth boundary. (3 to 5 inches)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--4 to 10 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 8 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--10 to 15 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; 10 percent very fine grain sandstone fragments by volume; strong effervescence; strongly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--15 to 60 inches; light gray (2.5Y 7/2) weathered very fine-grained sandstone, light brownish gray (2.5Y 6/2) moist; strong effervescence." diff --git a/inst/extdata/OSD/F/FAIRDALE.json b/inst/extdata/OSD/F/FAIRDALE.json index 8394ede1c5..0417500a9d 100644 --- a/inst/extdata/OSD/F/FAIRDALE.json +++ b/inst/extdata/OSD/F/FAIRDALE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; very dark brown (10YR 2/2) silt loam, grayish brown (10YR 5/2) dry; moderate fine and medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine roots; many fine pores; slight effervescence; slightly alkaline; abrupt smooth boundary. (Combined A horizons 6 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--7 to 10 inches; fine strata of dark grayish brown (10YR 4/2) and very dark grayish brown (10YR 3/2) silt loam, light brownish gray (2.5Y 6/2) dry; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine roots; common fine pores; few large root channels; few worm casts; few fragments of snail shells; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--10 to 16 inches; very dark grayish brown (10YR 3/2) silt loam, grayish brown (10YR 5/2) dry; moderate very fine, fine, and medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine roots; few large root channels; many fine pores; few worm casts; few snail shells; slight effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--16 to 48 inches; dark grayish brown (2.5Y 4/2) and brown (10YR 5/3) stratified loam, silt loam and very fine sandy loam, light brownish gray (2.5Y 6/2) and very pale brown (10YR 7/3) dry; few fine prominent brown (7.5YR 5/4) redoximorphic concentrations in the lower part; weak medium and coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots, common fine pores; few fine white (10YR 8/1) irregularly shaped masses of carbonates; slight effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ab1--48 to 60 inches; very dark brown (10YR 2/2) and very dark gray (10YR 3/1) silty clay loam, dark grayish brown (10YR 4/2) dry; few fine prominent brown (7.5YR 5/4) redoximorphic concentrations; moderate fine and medium subangular blocky structure; hard, friable, sticky and plastic; few roots and fine pores; slight effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ab2--60 to 67 inches; black (10YR 2/1) and olive brown (2.5Y 4/3) silty clay loam, dark gray (10YR 4/1) dry; massive; hard, friable, sticky and plastic; many fine white (10YR 8/1) irregularly shaped masses of carbonates; slight effervescence; moderately alkaline; clear smooth boundary. (Combined Ab horizons 0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C'1--67 to 80 inches; dark brown (10YR 4/3) and grayish brown (2.5Y 5/2) silty clay loam, light yellowish brown (2.5Y 6/3) dry; massive; hard, firm, sticky and plastic; many fine white (10YR 8/1) irregularly shaped masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FAIRLIE.json b/inst/extdata/OSD/F/FAIRLIE.json index abbf4fe752..15aadc5435 100644 --- a/inst/extdata/OSD/F/FAIRLIE.json +++ b/inst/extdata/OSD/F/FAIRLIE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; very dark gray (10YR 3/1) silty clay loam, dark gray (10YR 4/1) dry; weak medium platy structure parting to weak fine and medium blocky structure; extremely hard, firm, sticky and plastic; few fine roots; few fine black concretions; slight effervescence in spots; mildly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--5 to 12 inches; black (5Y 2/1) silty clay, very dark gray (5Y 3/1) dry; moderate fine and medium angular blocky structure; very hard, firm, sticky and plastic; few fine roots; few pressure faces; strong effervescence; moderately alkaline; gradual wavy boundary. (combined A subhorizons are 6 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss1--12 to 24 inches; black (5Y 2/1) silty clay, very dark gray (5Y 3/1) dry; moderate medium angular blocky structure; very hard, firm, sticky and plastic; few fine roots; common pressure faces; few grooved slickensides; few fine and medium concretions of calcium carbonate; few fine iron-manganese concretions; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss2--24 to 35 inches; very dark gray (5Y 3/1) silty clay, dark gray (5Y 4/1) dry; moderate fine and medium angular blocky structure; very hard, firm, sticky and plastic; few fine roots; few medium distinct olive (5Y 5/3) redox concentrations or masses with sharp boundaries; common grooved slickensides; few fine iron-manganese concretions; few medium and coarse concretions and soft masses of calcium carbonate; few fine and medium pebbles of chert; strong effervescence; moderately alkaline; gradual wavy boundary. (combined Bss subhorizons are 12 to 40 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkss--35 to 54 inches; dark gray (10YR 4/1) clay, gray (10YR 5/1) dry; moderate fine and medium angular blocky structure; very hard, firm, sticky and plastic; few fine roots; common grooved slickensides; few fine and medium distinct yellowish brown (10YR 5/8) and olive (5Y 5/6) redox concentrations or masses with sharp boundaries; few vertical streaks of black (5Y 2/1) associated with cracks; few fine iron-manganese concretions; common medium and coarse concretions and soft masses of calcium carbonate; few medium pebbles of chert; strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 30 inches thick)" diff --git a/inst/extdata/OSD/F/FAIRLO.json b/inst/extdata/OSD/F/FAIRLO.json index 4bbd91bb03..a77e1fbce7 100644 --- a/inst/extdata/OSD/F/FAIRLO.json +++ b/inst/extdata/OSD/F/FAIRLO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--18 to 24 inches; pale brown (10YR 6/3) silty clay loam, dark brown (10YR 4/3) moist; moderate medium prismatic structure parting to weak moderate subangular blocky; hard, friable, slightly sticky and slightly plastic; few fine and very fine roots; common fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--24 to 29 inches; pale brown (10YR 6/3) silty clay loam, dark brown (10YR 4/3) moist weak coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common very fine roots; common fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bk horizons ranges from 10 to 14 inches.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk3--29 to 55 inches; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; very hard, firm, sticky and plastic; many medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk4--55 to 60 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; very hard, friable, slightly sticky and plastic; common medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FAIRPORT.json b/inst/extdata/OSD/F/FAIRPORT.json index 9444c3a98b..7636432aa9 100644 --- a/inst/extdata/OSD/F/FAIRPORT.json +++ b/inst/extdata/OSD/F/FAIRPORT.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--25 to 28 inches; reddish brown (2.5YR 4/4) silty clay loam; massive; firm; strong effervescence; abrupt smooth boundary. (0 to 4 inches thick)" diff --git a/inst/extdata/OSD/F/FAIRY.json b/inst/extdata/OSD/F/FAIRY.json index 8ac34a41be..d0d351447a 100644 --- a/inst/extdata/OSD/F/FAIRY.json +++ b/inst/extdata/OSD/F/FAIRY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--98 to 115 cm (39 to 45 in); yellow (10YR 7/6) sandy clay loam, brownish yellow (10YR 6/6) moist; weak medium prismatic parts to moderate medium subangular blocky structure; very hard, friable; common very fine, very few fine, and very few medium roots; common fine and few very fine pores; 20 percent distinct clay films on faces of peds; 1 percent fine calcium carbonate nodules; very slight effervescence; moderately alkaline; clear smooth boundary. (Thickness is 20 to 76 cm [8 to 30 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk--115 to 149 cm (45 to 59 in); pale yellow (2.5Y 8/4) loam, pale yellow (2.5Y 7/4) moist; weak Coarse prismatic parts to moderate medium subangular blocky structure; very hard, friable; common very fine, few fine, and very few medium roots; common few very fine pores; 5 percent medium distinct yellow (10YR 8/6) masses of oxidized iron; 2 percent fine calcium carbonate masses and 2 percent fine calcium carbonate nodules; 2 percent very weakly cemented 20 -75 mm sandstone parafragments; violent effervescence; moderately alkaline; clear smooth boundary. (Thickness is 20 to 76 cm [8 to 30 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2CBk--149 to 173 cm (59 to 68 in); yellow (2.5Y 8/6) silt loam, yellow (2.5Y 7/6) moist; structureless, massive; hard, friable; few very fine, few fine, and few medium roots; common few very fine pores; 5 percent medium distinct yellow (10YR 8/8) masses of oxidized iron; 5 percent coarse calcium carbonate masses and 3 percent coarse calcium carbonate nodules; 2 percent very weakly cemented 20 -75 mm calcareous sandstone parafragments; violent effervescence; moderately alkaline; abrupt smooth boundary. (Thickness is 20 to 76 cm [8 to 30 in])" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cd--173 to 210 cm (68 to 83 in); greenish gray (5GY 6/1) noncemented mudstone with clay texture, greenish gray (5GY 6/1) moist; 20 percent dusky red (10R 3/2) mottles; structureless, massive; extremely hard, very firm; few very fine, few fine, and very few medium roots in cracks; 5 percent medium prominent reddish yellow (5YR 6/8) masses of oxidized iron in cracks; 10 percent fine calcium carbonate masses in lamina and 3 percent fine calcium carbonate nodules at the top of horizon; slight effervescence; moderately alkaline.. (Thickness is 0 to 51 cm [0 to 20 in])" diff --git a/inst/extdata/OSD/F/FALKIRK.json b/inst/extdata/OSD/F/FALKIRK.json index cd97ce3c4e..7a7b68939b 100644 --- a/inst/extdata/OSD/F/FALKIRK.json +++ b/inst/extdata/OSD/F/FALKIRK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC--23 to 28 inches; grayish brown (2.5Y 5/2) loam, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to weak medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common fine roots; common fine pores; slight effervescence in spots; slightly alkaline; clear wavy boundary. (0 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--28 to 34 inches; grayish brown (2.5Y 5/2) gravelly loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure; slightly hard, friable, slightly sticky, slightly plastic; few fine roots; few fine pores; approximately 30 percent gravel by volume; strong effervescence; slightly alkaline; clear wavy boundary. (1 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C2--34 to 42 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure; hard, friable, sticky, and slightly plastic; few fine roots; few fine pores; about 3 percent pebbles; common masses of segregated carbonates; strong effervescence; moderately alkaline; diffuse boundary. (3 to 36 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C3--42 to 60 inches; light yellowish brown (2.5Y 6/3) clay loam, light olive brown (2.5Y 5/3) moist; massive; hard, firm, sticky, slightly plastic; few fine pores; about 3 percent pebbles; few masses of segregated carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FALLON.json b/inst/extdata/OSD/F/FALLON.json index bfac7a3f35..25e1e44669 100644 --- a/inst/extdata/OSD/F/FALLON.json +++ b/inst/extdata/OSD/F/FALLON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck2--46 to 61 cm; light brownish gray (10YR 6/2) sandy loam, dark grayish brown (10YR 4/2) moist; massive; hard, friable, slightly sticky and slightly plastic; common very fine roots; common very fine, and few fine tubular, and many very fine interstitial pores; secondary carbonates segregated as common fine light gray (10YR 7/2) filaments; slightly effervescent matrix and strongly effervescent threads; many fine distinct dark reddish brown (5YR 3/2) and few fine prominent strong brown (7.5YR 5/6) moist masses of iron accumulation; slightly alkaline (pH 7.6); abrupt wavy boundary. (15 to 41 cm thick)" diff --git a/inst/extdata/OSD/F/FANNO.json b/inst/extdata/OSD/F/FANNO.json index c9172138a9..78e5f99630 100644 --- a/inst/extdata/OSD/F/FANNO.json +++ b/inst/extdata/OSD/F/FANNO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--25 to 40 inches; weak red (2.5YR 4/2) weathered clayey shale, fractured in places, weak red (2.5YR 4/2) moist; massive; very hard, firm, slightly sticky, plastic; few fine roots in fractures; few pores; slightly effervescent; strongly effervescent on faces of fractures; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/F/FARGO.json b/inst/extdata/OSD/F/FARGO.json index 93c5f44d7b..a9a1dd7042 100644 --- a/inst/extdata/OSD/F/FARGO.json +++ b/inst/extdata/OSD/F/FARGO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg--53 to 81 centimeters; olive gray (5Y 5/2) silty clay, light gray (5Y 7/2) dry; common fine prominent dark yellowish brown (10YR 4/6) redoximorphic concentrations; weak medium subangular blocky structure parting to moderate fine angular blocky and granular; hard, friable, sticky and plastic; few roots; common fine pores; cracks filled with A material extend into this horizon; common fine masses of carbonates; strong effervescence; moderately alkaline (pH 8.0); clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--81 to 122 centimeters; grayish brown (2.5Y 5/2) silty clay, light gray (2.5Y 7/2) dry; common medium distinct brown (10YR 4/3) redoximorphic concentrations and gray (5Y 5/1) redoximorphic depletions; weak medium subangular blocky structure parting to moderate very fine angular blocky and granular; very hard, firm, very sticky and very plastic; few fine roots; common pores; strong effervescence; moderately alkaline (pH 8.0); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg2--122 to 173 centimeters; olive (5Y 4/3) and pale olive (5Y 6/3) silty clay, pale olive (5Y 6/3) and pale yellow (5Y 8/3) dry; many medium prominent dark yellowish brown (10YR 4/4) redoximorphic concentrations; laminated, fractures to moderate very fine blocky structure; very hard, firm, very sticky and very plastic; few medium masses of carbonates; slight effervescence; moderately alkaline (pH 8.0); gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--173 to 200 centimeters; pale olive (5Y 6/3) silty clay; pale yellow (5Y 8/3) dry; common medium prominent dark yellowish brown (10YR 4/4) redoximorphic concentrations; laminated, fractures to moderate very fine subangular blocky structure; very hard, firm, very sticky and very plastic; common medium masses of carbonates; few fine masses of iron-manganese; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FARLAND.json b/inst/extdata/OSD/F/FARLAND.json index 6594e59452..456a77e9a8 100644 --- a/inst/extdata/OSD/F/FARLAND.json +++ b/inst/extdata/OSD/F/FARLAND.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--18 to 25 inches; light yellowish brown (2.5Y 6/4) silt loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic and moderate coarse subangular blocky structure; hard, friable; few roots; common fine pores; strong effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--25 to 34 inches; light yellowish brown (2.5Y 6/4) loam, light olive brown (2.5Y 5/4) moist; weak coarse prismatic and moderate coarse and medium subangular blocky structure; friable; few roots; few fine pores; violent effervescence; common coarse masses of carbonates; moderately alkaline; gradual boundary. (Combined Bk horizons 7 to 35 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--34 to 60 inches; light brownish gray (2.5Y 6/2) stratified silt loam, loam and silty clay loam, olive brown (2.5Y 4/4) moist; weak coarse to fine subangular blocky structure parting to weak thin platy; friable; few roots; few fine pores; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FARMSWORTH.json b/inst/extdata/OSD/F/FARMSWORTH.json index abfa351792..86c09ff2df 100644 --- a/inst/extdata/OSD/F/FARMSWORTH.json +++ b/inst/extdata/OSD/F/FARMSWORTH.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn3--13 to 22 inches; dark gray (10YR 4/1) clay, black (10YR 2/1) moist; moderate coarse prismatic structure parting to strong medium and fine blocky and subangular blocky; very hard, very firm, sticky and plastic; few fine clay films on vertical faces of peds; few fine roots; slight effervescence; slightly alkaline; clear wavy boundary. (Combined Btn horizons is 10 to 20 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz1--22 to 28 inches; gray (10YR 5/1) clay, very dark gray (10YR 3/1) moist; few fine prominent olive brown (2.5Y 4/4) redox concentrations; weak coarse prismatic structure parting to moderate medium subangular blocky; hard, very firm, sticky and plastic; common fine and medium nests of gypsum; common fine and medium accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz2--28 to 53 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; common fine distinct very dark gray (10YR 3/1) redox depletions; common fine distinct olive brown (2.5Y 4/4) redox concentrations; weak coarse subangular blocky structure parting to weak medium subangular blocky; hard, very firm, sticky and plastic; common fine and medium nests of gypsum; common fine and medium accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined Bkz horizons is 17 to 40 inches thick.)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--53 to 60 inches; gray (5Y 6/1) and light brownish gray (2.5Y 6/2) sandy clay loam, grayish brown (2.5Y 5/2) and olive gray (5Y 4/2) moist; common medium distinct pale olive (5Y 6/4) redox concentrations; massive; very hard, firm, sticky and plastic; thin lens of fine sand at depths of about 58 inches; few fine dark concretions (iron and manganese oxides); common medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FARRAR.json b/inst/extdata/OSD/F/FARRAR.json index 3ae589c4b1..46d0fc9cb6 100644 --- a/inst/extdata/OSD/F/FARRAR.json +++ b/inst/extdata/OSD/F/FARRAR.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--29 to 60 inches; yellowish brown (10YR 5/4) and light olive brown (2.5Y 5/4) loam; massive; friable; few pebbles; few soft calcium carbonate concretions in the upper part; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/F/FATTIG.json b/inst/extdata/OSD/F/FATTIG.json index 0306f86414..d6fe8d7e74 100644 --- a/inst/extdata/OSD/F/FATTIG.json +++ b/inst/extdata/OSD/F/FATTIG.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk--23 to 33 inches; light brownish gray (2.5Y 6/2) light clay loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable, slightly sticky and slightly plastic; few fine roots; few fine pores; strong effervescence; strongly alkaline (pH 8.4); clear wavy boundary. (6 to 10 inches thick)" diff --git a/inst/extdata/OSD/F/FAUNCE.json b/inst/extdata/OSD/F/FAUNCE.json index f03782f455..b97e47a007 100644 --- a/inst/extdata/OSD/F/FAUNCE.json +++ b/inst/extdata/OSD/F/FAUNCE.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--20 to 28 inches; light yellowish brown (10YR 6/4) gravelly sand; single grain; loose; about 30 percent gravel; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--28 to 35 inches; very pale brown (10YR 7/3) sand; single grain; loose; about 2 percent gravel; slight effervescence; slightly alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--35 to 60 inches; pale brown (10YR 6/3) gravelly sand; single grain; loose; about 30 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/F/FAX.json b/inst/extdata/OSD/F/FAX.json index 868b1471bb..9b5e4cef6a 100644 --- a/inst/extdata/OSD/F/FAX.json +++ b/inst/extdata/OSD/F/FAX.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "is effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--18 to 30 cm; brown (10YR 5/3) very gravelly sandy clay loam, dark brown (10YR 3/3) moist; moderate fine and medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine through coarse roots; common very fine and fine tubular pores; 35 percent gravel and 10 percent cobbles; few faint clay films lining pores; lower 5 cm is effervescent in spots; moderately alkaline (pH 8.0); clear wavy boundary. (8 to 25 cm thick)" diff --git a/inst/extdata/OSD/F/FEDORA.json b/inst/extdata/OSD/F/FEDORA.json index 3524dbadb7..0cc70e52d0 100644 --- a/inst/extdata/OSD/F/FEDORA.json +++ b/inst/extdata/OSD/F/FEDORA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 8 inches; black (10YR 2/1) sandy loam, dark gray (10YR 4/1) dry; few fine faint very dark grayish brown (10YR 3/2) mottles; weak fine granular structure; soft, very friable; strong effervescence; moderately alkaline; clear wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--8 to 12 inches; very dark gray (10YR 3/1) loamy sand, gray (10YR 5/1) dry; few fine faint dark grayish brown (10YR 4/2) mottles; single grain; loose, very friable; strong effervescence; moderately alkaline; clear wavy boundary. (Combined A horizons are 6 to 16 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bkg1--12 to 21 inches; gray (2.5Y 5/1) sandy loam, light gray (2.5Y 7/1) dry; many fine distinct dark grayish brown (10YR 3/2) and dark brown (10YR 3/3) mottles; massive; soft, very friable; few fine soft dark accumulations (Fe & Mn oxides); disseminated carbonate and common fine and medium accumulations of carbonate; violent effervescence; moderately alkaline; diffuse wavy boundary. (8 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--21 to 40 inches; gray (5Y 5/1) sandy loam, gray (5Y 6/1) dry; many fine prominent olive brown (2.5Y 4/4) and dark gray (2.5Y 4/1) mottles; massive; soft, very friable; many soft dark accumulations (Fe & Mn oxides); strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--40 to 60 inches; dominantly dark brown (10YR 4/3) gravelly sand; dark grayish brown (10YR 4/2) dry; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FELOR.json b/inst/extdata/OSD/F/FELOR.json index de4befb933..e4980f9cda 100644 --- a/inst/extdata/OSD/F/FELOR.json +++ b/inst/extdata/OSD/F/FELOR.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bk--34 to 39 inches; light brown (7.5YR 6/4) and pale yellow (5Y 7/3) silty clay, brown (7.5YR 5/4) and pale olive (5Y 6/3) moist; moderate fine and medium prismatic structure parting to weak medium subangular blocky; hard, firm, sticky, and plastic; common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 7 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--39 to 60 inches; white (2.5Y 8/2) and light reddish brown (5YR 6/3) silty clay, reddish brown (5Y 5/3) and light brownish gray (2.5Y 6/2) moist; few fine distinct mottles of yellowish brown (10YR 5/6) moist; massive; laminated; hard, firm, sticky, and plastic; few fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FERGUS.json b/inst/extdata/OSD/F/FERGUS.json index 9de4867397..1da3caa5d0 100644 --- a/inst/extdata/OSD/F/FERGUS.json +++ b/inst/extdata/OSD/F/FERGUS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk--40 to 60 inches; reddish brown (5YR 4/3) clay loam, dark reddish brown (5YR 3/3) moist; massive; hard, friable, sticky and plastic; common fine and medium masses of lime; moderately effervescent; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/F/FERNEY.json b/inst/extdata/OSD/F/FERNEY.json index 94d1af9a86..01f6efa82c 100644 --- a/inst/extdata/OSD/F/FERNEY.json +++ b/inst/extdata/OSD/F/FERNEY.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btnkz--10 to 25 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse and medium prismatic structure parting to strong medium and fine angular blocky; hard, firm, sticky and plastic; common very fine roots; common medium and fine very dark grayish brown (10YR 3/2) tongues, very dark brown (10YR 2/2) moist; few pebbles; few fine accumulations of carbonate; many medium and fine nests of salts; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz1--25 to 39 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; few fine prominent strong brown (7.5YR 4/6) redox concentrations and few fine distinct gray (10YR 5/1) redox depletions; weak coarse and medium prismatic structure parting to moderate medium and fine angular blocky; hard, firm, sticky and plastic; few very fine roots; common medium and fine very dark grayish brown (10YR 3/2) tongues, very dark brown (10YR 2/2) moist; few fine dark stains (iron and manganese oxides); common fine accumulations of carbonate; common fine nests of salts; few pebbles; few fragments of shale; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz2--39 to 50 inches; light yellowish brown (2.5Y 6/4) clay loam, olive brown (2.5Y 4/4) moist; common fine prominent strong brown (7.5YR 4/6) redox concentrations and many coarse and medium prominent gray (10YR 5/1) redox depletions; weak coarse prismatic structure parting to moderate medium and fine subangular blocky; hard, firm, sticky and plastic; few very fine roots; common medium and fine very dark grayish brown (10YR 3/2) tongues, very dark brown (10YR 2/2) moist; common fine dark stains (iron and manganese oxides); common fine accumulations of carbonate; many coarse nests of salts; few pebbles; few fragments of shale; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bkz horizons 6 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--50 to 60 inches; light yellowish brown (2.5Y 6/4) clay loam, olive brown (2.5Y 4/4) moist; common fine prominent strong brown (7.5YR 4/6) redox concentrations and common medium and fine prominent gray (10YR 5/1) redox depletions; massive; hard, firm, sticky and plastic; common fine dark stains (iron and manganese oxides); common fine accumulations of carbonate; few nests of salt; few pebbles; few fragments of shale; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FERRIS.json b/inst/extdata/OSD/F/FERRIS.json index 5e7726399e..dc26034c64 100644 --- a/inst/extdata/OSD/F/FERRIS.json +++ b/inst/extdata/OSD/F/FERRIS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 20 cm (0 to 8 in); olive (5Y 5/3) clay, olive (5Y 4/3) moist; weak medium angular blocky parts to weak fine angular blocky structure; extremely hard, very firm, very sticky, very plastic; many fine roots; few fine carbonate concretions; surface has a mulch about 1 cm (0.5 in) thick of fine extremely hard discrete aggregates; strong effervescence; moderately alkaline; gradual smooth boundary. (Thickness is 8 to 30 cm [3 to 12 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--20 to 61 cm (8 to 24 in); pale olive (5Y 6/3) clay; olive (5Y 5/3) moist; moderate fine angular blocky structure; extremely hard, very firm, very sticky, very plastic; few fine roots; common distinct pressure faces; few fine carbonate concretions and few fine carbonate masses; strong effervescence; moderately alkaline; gradual smooth boundary. (Thickness is 15 to 51 cm [6 to 20 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bkss--61 to 102 cm (24 to 40 in); pale olive (5Y 6/3) clay; olive (5Y 5/3) moist; common fine faint brownish yellow (10YR 6/6) mottles; moderate medium wedge parts to moderate fine angular blocky structure; extremely hard, very firm, very sticky, very plastic; few fine roots; few fine pores; 3 cm (1 to 5 cm) wide and 46 cm (18 in) spacing, vertical, transient (commonly seasonal, close when rewetted), cracks that extend to the adjoining horizon or to the surface; distinct pressure faces and common prominent slickensides (pedogenic); few fine calcium carbonate concretions and few fine carbonate masses; violent effervescence; moderately alkaline; diffuse wavy boundary. (Thickness is 46 to 76 cm [18 to 30 in])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cdk--102 to 203 cm (40 to 80 in); pale olive (5Y 6/3) and yellow (2.5Y 7/8), noncemented calcareous mudstone bedrock; structureless massive; extremely hard, very firm; few fine roots in cracks; few distinct slickensides (geogenic); common fine carbonate masses and common fine carbonate concretions; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FIANDER.json b/inst/extdata/OSD/F/FIANDER.json index c4e9d7d0c1..379e27076e 100644 --- a/inst/extdata/OSD/F/FIANDER.json +++ b/inst/extdata/OSD/F/FIANDER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A11--0 to 3 inches; grayish brown (10YR 5/2) silt loam, very dark brown (10YR 2/2) moist; weak thin platy structure; soft, friable, nonsticky and slightly plastic; many roots; slight effervescence; mildly alkaline (pH 7.8); abrupt smooth boundary. (1 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "broken", "narrative": "A12--3 to 4 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate medium platy structure; slightly hard, firm, slightly sticky and slightly plastic; common roots; many fine pores; slight effervescence; moderately alkaline (pH 8.0); abrupt broken boundary. (0 to 2 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B21t--4 to 12 inches; grayish brown (10YR 5/2) silty clay loam, very dark grayish brown (10YR 3/2) moist; the ped interfaces are very dark brown (10YR 2/2) moist; strong medium prismatic structure; very hard, very firm, sticky and plastic; common roots mostly matted on the interfaces of peds; few fine pores; thin continuous clay films on surfaces of peds; strong effervescence; very strongly alkaline (pH 9.4); gradual wavy boundary. (4 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B22tca--12 to 24 inches; brown (10YR 5/3) heavy silt loam, dark brown (10YR 3/3) moist; common medium faint mottles; moderate medium subangular blocky structure; hard, firm, sticky and plastic; common roots; common fine pores; thin continuous clay films on surfaces of peds; disseminated and segregated lime; violent effervescence; very strongly alkaline (pH 9.4); gradual wavy boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B3ca--24 to 35 inches; brown (10YR 5/3) heavy silt loam, dark brown (10YR 3/3) moist; common medium faint mottles; moderate medium subangular blocky structure; hard, firm, sticky and plastic; few roots; common fine pores; disseminated and segregated mycelial lime; strong effervescence; strongly alkaline (pH 8.8); gradual wavy boundary. (3 to 20 inches thick)" diff --git a/inst/extdata/OSD/F/FIBRE.json b/inst/extdata/OSD/F/FIBRE.json index 5e44eed121..b0b11b7ae9 100644 --- a/inst/extdata/OSD/F/FIBRE.json +++ b/inst/extdata/OSD/F/FIBRE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--27 to 60 inches; stratified reddish brown (5YR 4/4 and 5/3) clay; with thin pinkish gray (7.5YR 6/2) silt bands; common medium distinct light reddish brown (5YR 6/3) mottles; moderate medium platy structure parting to moderate very fine subangular blocky; firm; few fine roots; common fine and very fine vesicular pores; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FIFTEENMILE.json b/inst/extdata/OSD/F/FIFTEENMILE.json index 7060835728..02ffcf161f 100644 --- a/inst/extdata/OSD/F/FIFTEENMILE.json +++ b/inst/extdata/OSD/F/FIFTEENMILE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 5 cm; pale brown (10YR 6/3) silt loam, brown (10YR 4/3), moist; moderate very thick platy structure; soft, very friable, nonsticky, slightly plastic; few very fine roots; common very fine and fine tubular pores; 5 percent pebbles; violently effervescencent; moderately alkaline (pH 8.4); clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--5 to 20 cm; pale brown (10YR 6/3) silt loam, dark yellowish brown (10YR 3/4), moist; moderate very thick platy structure; slightly hard, very friable, slightly sticky, slightly plastic; common very fine and fine roots and few medium roots; common very fine and fine tubular pores; 5 percent pebbles; violently effervescencent; strongly alkaline (pH 8.5); clear smooth boundary. (Combined A horizon thickness is 8 to 40 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--20 to 35 cm; pale brown (10YR 6/3) silt loam, dark yellowish brown (10YR 4/4), moist; strong medium and coarse subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; common very fine to coarse roots; common fine to coarse tubular and many very fine tubular pores; 5 percent pebbles; violently effervescencent; strongly alkaline (pH 8.6); clear smooth boundary. (10 to 28 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bqk1--35 to 79 cm; pale brown (10YR 6/3) silt loam, dark yellowish brown (10YR 4/4), moist; strong medium and coarse subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; few very fine roots; few fine to coarse tubular pores; 5 percent fine and medium cylindrical moderately cemented durinodes and 5 percent fine cylindrical moderately cemented carbonate concretions; 3 percent pebbles; violently effervescencent; strongly alkaline (pH 8.6); clear smooth boundary. (28 to 45 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bqk2--79 to 119 cm; pale brown (10YR 6/3) paragravely silt loam, dark yellowish brown (10YR 4/4), moist; moderate medium and coarse subangular blocky structure; hard, very friable, moderately sticky, moderately plastic; few very fine roots; few very fine tubular pores; 10 percent fine and medium cylindrical moderately cemented durinodes and 5 percent fine cylindrical moderately cemented carbonate concretions; 3 percent pebbles; violently effervescencent; strongly alkaline (pH 8.6); clear smooth boundary. (0 to 40 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--119 to 152 cm; pale brown (10YR 6/3) silt loam, yellowish brown (10YR 5/4), moist; massive; soft, very friable, slightly sticky, moderately plastic; few very fine roots; few very fine tubular pores; violently effervescencent; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/F/FILLMORE.json b/inst/extdata/OSD/F/FILLMORE.json index d1b883532c..96d86e3362 100644 --- a/inst/extdata/OSD/F/FILLMORE.json +++ b/inst/extdata/OSD/F/FILLMORE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--112 to 200 centimeters (44 to 80 inches); grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FIRESTEEL.json b/inst/extdata/OSD/F/FIRESTEEL.json index 09c0670bfb..06bc21ea2e 100644 --- a/inst/extdata/OSD/F/FIRESTEEL.json +++ b/inst/extdata/OSD/F/FIRESTEEL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; very dark gray (10YR 3/1) silt loam, gray (10YR 5/1) dry; weak fine granular structure; soft, very friable; strong effervescence (45 percent calcium carbonate); moderately alkaline; abrupt smooth boundary. (6 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--7 to 15 inches; dark grayish brown (2.5Y 4/2) and grayish brown (2.5Y 5/2) silt loam, gray (2.5Y 6/1) and light gray (2.5Y 7/1) dry; weak medium and coarse prismatic structure parting to weak medium subangular blocky; soft, very friable; few gypsum crystals; violent effervescence (65 percent CaCO3); strongly alkaline; clear wavy boundary. (8 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky--15 to 30 inches; light yellowish brown (2.5Y 6/3) silt loam, white (2.5Y 8/2) dry; weak fine and medium subangular blocky structure; slightly hard, friable; common gypsum crystals; common medium accumulations of carbonate; violent effervescence (65 percent CaCO3); strongly alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--30 to 60 inches; pale yellow (5Y 7/3) siltstone, white (5Y 8/2) dry; thick platy bedrock structure; many gypsum crystals; violent effervescence (90 percent calcium carbonate); strongly alkaline." diff --git a/inst/extdata/OSD/F/FISHBERRY.json b/inst/extdata/OSD/F/FISHBERRY.json index cf03182a9a..2d41bd58f4 100644 --- a/inst/extdata/OSD/F/FISHBERRY.json +++ b/inst/extdata/OSD/F/FISHBERRY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 5 inches; grayish brown (l0YR 5/2) loamy fine sand, dark grayish brown (10YR 4/2) moist; weak fine granular structure; soft, very friable; 8 percent by volume sandstone gravel; many very fine and fine and few medium roots throughout; strong effervescence; slightly alkaline; clear smooth boundary. (3 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--5 to 15 inches; light brownish gray (2.5Y 6/2) gravelly loamy fine sand, grayish brown (2.5Y 5/2) moist; single grain; loose; 20 percent by volume sandstone gravel; many fine and very fine and few medium roots throughout; violent effervescence; moderately alkaline; clear wavy boundary. (5 to 13 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--15 to 80 inches; light gray (5Y 7/2) calcareous sandstone; cracks with roots spaced more than 4 inches apart; violent effervescence." diff --git a/inst/extdata/OSD/F/FLAMEN.json b/inst/extdata/OSD/F/FLAMEN.json index 6d1172a480..55f8408c7e 100644 --- a/inst/extdata/OSD/F/FLAMEN.json +++ b/inst/extdata/OSD/F/FLAMEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkq--28 to 43 inches; mixed matrix 50 percent light brown (7.5YR 6/4) loam between furrows from ripper and 50 percent pinkish gray (7.5YR 6/2) loam within furrows from ripper, brown 7.5YR 4/4 and brown 7.5YR 4/2) moist respectively; moderate medium and coarse subangular blocky structure; very hard, friable, sticky and plastic; few very fine and fine roots; common very fine tubular pores; few thin clay films lining pores and on ped faces; 10 percent coarse subangular strongly cemented fragments of a duripan displaced by mechanical ripping from the underlying horizon; slightly effervescent, carbonates disseminated and strongly effervescent, carbonates segregated as common fine filaments; slightly alkaline (pH 7.4); clear wavy boundary. (6 to 20 inches thick)" diff --git a/inst/extdata/OSD/F/FLASHER.json b/inst/extdata/OSD/F/FLASHER.json index 0cec26998c..2beef4f383 100644 --- a/inst/extdata/OSD/F/FLASHER.json +++ b/inst/extdata/OSD/F/FLASHER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 6 inches; dark grayish brown (10YR 4/2) loamy fine sand, very dark grayish brown (10YR 3/2) moist; weak fine subangular blocky structure; very friable, nonsticky and nonplastic; many roots; quartz grains stained; slight effervescence; slightly alkaline; gradual wavy boundary. (3 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--6 to 10 inches; light olive brown (2.5Y 5/4) loamy fine sand, olive brown (2.5Y 4/4) moist; weak fine subangular blocky structure; loose, nonsticky and nonplastic; common roots; few small hard sandstone fragments; slight effervescence; slightly alkaline; gradual smooth boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--10 to 60 inches; light yellowish brown (2.5Y 6/4) soft sandstone that crushes to sand, olive brown (2.5Y 4/4) and light olive brown (2.5Y 5/4) moist; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FLAXTON.json b/inst/extdata/OSD/F/FLAXTON.json index b8010e8b50..7c7d62860c 100644 --- a/inst/extdata/OSD/F/FLAXTON.json +++ b/inst/extdata/OSD/F/FLAXTON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bt2--25 to 30 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse and medium prismatic structure; firm; few roots; many thin very dark grayish brown (2.5Y 3/2) moist clay films on faces of prisms; few tongues of fine sandy loam extend through the Bt2 horizons; strong effervescence; interior of prisms have a few masses of carbonates; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bw--30 to 35 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse and medium prismatic structure; firm; strong effervescence; few masses of carbonates; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--35 to 42 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; moderate medium prismatic structure; firm; strong effervescence; many large masses of carbonates; moderately alkaline; gradual wavy boundary. (0 to 16 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2BCk--42 to 60 inches; pale olive (5Y 6/3) clay loam, olive (5Y 4/3) moist; massive; firm; violent effervescence; many masses of carbonates; moderately alkaline." diff --git a/inst/extdata/OSD/F/FLEAK.json b/inst/extdata/OSD/F/FLEAK.json index 20ee09e0d2..cad1151411 100644 --- a/inst/extdata/OSD/F/FLEAK.json +++ b/inst/extdata/OSD/F/FLEAK.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--3 to 8 inches; grayish brown (2.5Y 5/2) loamy fine sand, dark grayish brown (2.5Y 4/2) moist; single grain; loose; many roots; slight effervescence; slightly alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--8 to 17 inches; light brownish gray (2.5Y 6/2) loamy fine sand, grayish brown (2.5Y 5/2) moist; single grain; common to few roots; slight effervescence; slightly alkaline; clear wavy boundary. (Combined C1 and C2 horizons 5 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--17 to 40 inches; pale yellow (2.5Y 7/3) soft layered sandstone, light olive brown (2.5Y 5/3) moist; hard, brittle, dry, very friable moist; a few roots in upper 8 inches; slight effervescence." diff --git a/inst/extdata/OSD/F/FLOM.json b/inst/extdata/OSD/F/FLOM.json index 56fcf7f985..423612d23b 100644 --- a/inst/extdata/OSD/F/FLOM.json +++ b/inst/extdata/OSD/F/FLOM.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg2--20 to 28 inches; light olive gray (5Y 6/2) clay loam; many medium distinct olive brown (2.5Y 4/4) mottles; weak fine and medium subangular blocky structure; friable; about 3 percent gravel; slight effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of Bg horizons is 3 to 30 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cg1--28 to 36 inches; light olive gray (5Y 6/2) clay loam; few fine distinct light olive brown (2.5Y 5/4) mottles; massive; friable; about 3 percent gravel; strong effervescence; moderately alkaline; strong effervescence; gradual smooth boundary. (0 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--36 to 60 inches; olive gray (5Y 5/2) clay loam; many coarse distinct light olive brown (2.5Y 5/4) and yellowish brown (10YR 5/8) and many fine faint light olive gray (5Y 6/2) mottles; massive; friable; about 3 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FORBING.json b/inst/extdata/OSD/F/FORBING.json index ce08e12ad7..763d183cea 100644 --- a/inst/extdata/OSD/F/FORBING.json +++ b/inst/extdata/OSD/F/FORBING.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B25t--36 to 61 inches; dark red (2.5YR 3/6) clay; weak medium subangular blocky structure; very firm, few fine roots; common slickensides that do not intersect; common fine and coarse calcium carbonate accumulations; few black stains; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 30 inches" diff --git a/inst/extdata/OSD/F/FORESMAN.json b/inst/extdata/OSD/F/FORESMAN.json index 9278680efb..e6230f4b21 100644 --- a/inst/extdata/OSD/F/FORESMAN.json +++ b/inst/extdata/OSD/F/FORESMAN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--39 to 60 inches; light yellowish brown (2.5Y 6/4) silt loam containing thin strata of yellowish brown (10YR 5/8) and light brownish gray (10YR 6/2) sand; common fine distinct gray (10YR 6/1), common medium distinct strong brown (7.5YR 4/6) and many medium distinct yellowish brown (10YR 5/6) mottles; massive; friable; few very dark grayish brown (10YR 3/2) krotovinas; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/F/FORESTBURG.json b/inst/extdata/OSD/F/FORESTBURG.json index b6bd58bc79..5b40aa8daa 100644 --- a/inst/extdata/OSD/F/FORESTBURG.json +++ b/inst/extdata/OSD/F/FORESTBURG.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk--29 to 50 inches; light gray (2.5Y 7/2) loam, light olive brown (2.5Y 5/4) moist; common fine prominent reddish brown (5YR 5/4) redox concentrations; massive; slightly hard, friable; common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 25 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--50 to 60 inches; light gray (2.5Y 6/2 and 5Y 7/2) stratified silt loam and very fine sand, light olive brown (2.5Y 5/4) and olive gray (5Y 5/2) moist; common medium prominent reddish brown (5YR 5/4 and 4/4) and common medium prominent very pale brown (10YR 7/4) and brownish yellow (10YR 6/6) redox concentrations; massive; hard, friable; few medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FORESTER.json b/inst/extdata/OSD/F/FORESTER.json index e2743a68ac..aa500226d7 100644 --- a/inst/extdata/OSD/F/FORESTER.json +++ b/inst/extdata/OSD/F/FORESTER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 7 inches; light brownish gray (10YR 6/2) loamy sand, dark grayish brown (10YR 4/2) moist; weak thin platy structure parting to single grained; soft, very friable, nonsticky and nonplastic; many very fine roots; many very fine irregular pores; strong effervescence; very strongly alkaline (pH 9.2); clear smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--7 to 12 inches; light brownish gray (10YR 6/2) loamy sand, dark grayish brown (10YR 4/2) moist; weak fine subangular blocky structure parting to single grained; soft, very friable, nonsticky and nonplastic; many very fine roots; many very fine tubular pores; violent effervescence; very strongly alkaline (pH 9.4); gradual smooth boundary. (4 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "C1--12 to 22 inches; pale brown (10YR 6/3) loamy sand, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; many very fine roots; many very fine tubular pores; few hard nodules 1/2 to 3/4 inch in diameter; violent effervescent; very strongly alkaline (pH 9.2); clear wavy boundary. (4 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--22 to 27 inches; pale brown (10YR 6/3) loamy sand, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; many very fine tubular pores; violent effervescence; strongly alkaline (pH 9.0); clear smooth boundary. (4 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C3--27 to 48 inches; pale brown (10YR 6/3) very fine sandy loam, dark brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; few very fine tubular pores; strong effervescence; strongly alkaline (pH 8.6); clear wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C4--48 to 60 inches; pale brown (10YR 6/3) stratified silt loam and fine sandy loam, dark brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; strong effervescence; strongly alkaline (pH 8.6); clear wavy boundary." diff --git a/inst/extdata/OSD/F/FORMAN.json b/inst/extdata/OSD/F/FORMAN.json index 6d15acdd5d..2cfe999ef3 100644 --- a/inst/extdata/OSD/F/FORMAN.json +++ b/inst/extdata/OSD/F/FORMAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--14 to 17 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic and moderate medium subangular blocky structure; very hard, friable; few fine roots; many distinct clay films on faces of peds; strong effervescence in the interior of prisms and blocks; slightly alkaline; clear wavy boundary. (Combined Bt horizons 5 to 19 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk--17 to 44 inches; light yellowish brown (2.5Y 6/4) clay loam, light olive brown (2.5Y 5/4) moist; weak coarse prismatic structure; very hard, friable; many fine masses of carbonates; violent effervescence; moderately alkaline; diffuse wavy boundary. (7 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bky--44 to 60 inches; light yellowish brown (2.5Y 6/4) clay loam, grayish brown and light olive brown (2.5Y 5/2 and 5/4) moist; few fine distinct light olive brown (2.5Y 5/6) moist mottles; weak coarse and fine subangular blocky structure; friable; common fine masses of carbonates; many small nests of gypsum crystals; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FORVIC.json b/inst/extdata/OSD/F/FORVIC.json index 7a6d0aa3e1..99c3a8c45a 100644 --- a/inst/extdata/OSD/F/FORVIC.json +++ b/inst/extdata/OSD/F/FORVIC.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkqm--76 to 89 cm; very pale brown (10YR 8/2) duripan, very pale brown (10YR 7/3) moist; massive; extremely hard, extremely firm; few very fine and fine roots in fractures of the duripan; many continuous silica laminations running between cemented gravel; fractures are 0.6 cm wide and are 25 cm apart; violent effervescent; abrupt smooth boundary. (8 to 28 cm thick)" diff --git a/inst/extdata/OSD/F/FOSSUM.json b/inst/extdata/OSD/F/FOSSUM.json index 3dd6575608..2492e05fda 100644 --- a/inst/extdata/OSD/F/FOSSUM.json +++ b/inst/extdata/OSD/F/FOSSUM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) sandy loam, very dark gray (10YR 3/1) dry; weak fine subangular blocky structure; friable; slight effervescence; moderately alkaline; abrupt smooth boundary. (6 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--8 to 13 inches; very dark gray (N 3/) loamy sand; dark gray (N 4/) dry; massive; very friable; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--13 to 21 inches; very dark grayish brown (2.5Y 3/2) sand, dark grayish brown (2.5Y 4/2) dry; common fine faint gray (5Y 5/1) redoximorphic depletions and common fine distinct brown (10YR 5/3) redoximorphic concentrations; single grain; loose; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 9 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--21 to 26 inches; olive gray (5Y 5/2) fine sand; common medium distinct light olive brown (2.5Y 5/6) redoximorphic concentrations; single grain; loose strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg2--26 to 60 inches; light olive gray (5Y 6/2) fine sand; common coarse prominent brownish yellow (10YR 6/8) redoximorphic concentrations; single grain; loose strong effervescence in upper part and slight effervescence in lower part; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--60 to 80 inches; light olive gray (5Y 6/2) fine sand; single grain; loose; common coarse prominent yellowish brown (10YR 5/6) redoximorphic concentrations; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/F/FOSTERBURG.json b/inst/extdata/OSD/F/FOSTERBURG.json index 526070b4e3..2f4dad0da1 100644 --- a/inst/extdata/OSD/F/FOSTERBURG.json +++ b/inst/extdata/OSD/F/FOSTERBURG.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkng1--20 to 29 inches; dark gray (2.5Y 4/1) silty clay loam; moderate fine prismatic structure parting to moderate fine and medium angular blocky; firm; common very fine roots; many distinct very dark gray (10YR 3/1) organo-clay films on faces of peds; few fine prominent yellowish brown (10YR 5/4) masses of iron accumulation in the matrix; few fine rounded strong brown (7.5YR 4/6) masses of iron-manganese accumulation; common fine irregular white (10YR 8/1, dry) masses of carbonate accumulation and common medium irregular light brownish gray (10YR 6/2) carbonate concretions with clear white (10YR 8/1, dry) boundaries; about 38 percent clay; slightly effervescent in the matrix and strongly effervescent on carbonate concentrations; slightly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkng2--29 to 41 inches; dark gray (2.5Y 4/1) silty clay loam; moderate fine prismatic structure parting to moderate medium angular blocky; firm; few very fine roots; many distinct dark grayish brown (10YR 4/2) clay films on faces of peds; common fine and medium prominent yellowish brown (10YR 5/6) masses of iron accumulation in the matrix; few fine rounded strong brown (7.5YR 4/6) masses of iron-manganese accumulation and few medium rounded black (N 2.5/0) iron-manganese nodules with sharp boundaries; few fine irregular white (10YR 8/1, dry) masses of carbonate accumulation and few medium irregular light brownish gray (10YR 6/2) carbonate concretions with clear white (10YR 8/1, dry) boundaries; about 37 percent clay; slightly effervescent in the matrix and strongly effervescent on carbonate concentrations; slightly alkaline; gradual smooth boundary." diff --git a/inst/extdata/OSD/F/FRAILTON.json b/inst/extdata/OSD/F/FRAILTON.json index d0cd070dbf..ae508cb976 100644 --- a/inst/extdata/OSD/F/FRAILTON.json +++ b/inst/extdata/OSD/F/FRAILTON.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": 7.4, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 2 inches; light olive brown (2.5Y 5/4) gravelly loam, dark brown (7.5YR 4/3) moist; weak fine granular structure; slightly hard, very friable, nonsticky and nonplastic; few very fine roots; many very fine and fine interstitial pores; 30 percent pebbles; slight effervescence in less than 5 percent of the soil material; mildly alkaline (pH 7.4); clear wavy boundary. (1 to 3 inches thick)" diff --git a/inst/extdata/OSD/F/FRAM.json b/inst/extdata/OSD/F/FRAM.json index 8db7870660..362bbccf3e 100644 --- a/inst/extdata/OSD/F/FRAM.json +++ b/inst/extdata/OSD/F/FRAM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) loam, dark gray (10YR 4/1) dry; weak fine granular structure; very friable; slightly sticky and slightly plastic; common fine roots; about 1 percent pebbles; slight effervescence; slightly alkaline; abrupt smooth boundary. (6 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Bk--7 to 18 inches; dark grayish brown (2.5Y 4/2) and light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) and light gray (2.5Y 7/2) dry; weak coarse subangular blocky structure; slightly hard, very friable; slightly sticky and slightly plastic; common fine roots; many fine pores; few thin tongues of A material; about 1 percent pebbles; violent effervescence; moderately alkaline; gradual irregular boundary. (6 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCk--18 to 38 inches; light olive brown (2.5Y 5/4) loam, light yellowish brown (2.5Y 6/4) dry; weak coarse subangular blocky structure; very friable; slightly sticky and slightly plastic; few fine roots; common fine pores; few masses of carbonates; about 1 percent pebbles; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 60 inches; olive brown (2.5Y 4/4) loam, light olive brown (2.5Y 5/4) dry; few fine reddish brown redoximorphic concentrations below 40 inches; weak medium subangular blocky structure; hard, friable; slightly sticky and slightly plastic; few small nests of gypsum crystals in upper part, more in lower part; about 5 percent pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FREEBOARD.json b/inst/extdata/OSD/F/FREEBOARD.json index 1b00760a76..80b15c6eee 100644 --- a/inst/extdata/OSD/F/FREEBOARD.json +++ b/inst/extdata/OSD/F/FREEBOARD.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--24 to 35 inches, (60 to 90 cm); 40 percent very dark grayish brown (10YR 3/2) and 60 percent yellowish brown (10YR 5/4) gravelly sandy clay loam, dark brown (10YR 3/3) rubbed moist; 22 percent clay; moderate coarse prismatic and strong coarse angular blocky structure; very hard, firm, moderately sticky, very plastic; common very fine low continuity interstitial and common very fine low continuity tubular pores; 85 percent continuous prominent very dark grayish brown (10YR 3/2), moist, clay films on rock fragments and 85 percent continuous prominent very dark grayish brown (10YR 3/2), moist, clay films on all faces of peds; 3 percent fine faint irregular light gray (10YR 7/2), dry, carbonate masses with clear boundaries in matrix; 15 percent rounded 2 to 75 millimeter gravel; slight effervescence, by HCl, 1 normal; moderately alkaline, pH 7.9 by pH meter 1:2 calcium chloride; gradual wavy boundary. (0 to 30 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk2--35 to 51 inches, (90 to 130 cm); 40 percent very dark grayish brown (10YR 3/2) and 60 percent yellowish brown (10YR 5/4) very gravelly sandy loam, dark brown (10YR 3/3) rubbed moist; 16 percent clay; moderate medium subangular blocky structure; moderately hard, friable, moderately sticky, moderately plastic; common very fine low continuity interstitial pores; 85 percent continuous prominent very dark grayish brown (10YR 3/2), moist, clay films on rock fragments and 85 percent continuous prominent very dark grayish brown (10YR 3/2), moist, clay films on all faces of peds; 5 percent fine distinct irregular light gray (10YR 7/2), dry, carbonate masses with clear boundaries in matrix and 3 percent fine faint irregular light gray (10YR 7/2), dry, carbonate masses with clear boundaries around rock fragments; 30 percent rounded 2 to 5 millimeter and 50 percent rounded 2 to 75 millimeter gravel; slight effervescence, by HCl, 1 normal; moderately alkaline, pH 8.1 by pH meter 1:2 calcium chloride; clear wavy boundary. (0 to 40 centimeters thick)" diff --git a/inst/extdata/OSD/F/FRENCHJOHN.json b/inst/extdata/OSD/F/FRENCHJOHN.json index 5805fd7085..f0a1d5be60 100644 --- a/inst/extdata/OSD/F/FRENCHJOHN.json +++ b/inst/extdata/OSD/F/FRENCHJOHN.json @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bkq--29 to 36 inches; very pale brown (10YR 8/3) extremely gravelly sandy loam, very pale brown (10YR 7/4) moist; with discontinuous distinct siliceous laminar cap 1 mm thick; massive; very hard, very firm; 80 percent gravel; strong effervescence; strongly alkaline (pH 8.8); abrupt irregular boundary. (7 to 12 inches thick)" diff --git a/inst/extdata/OSD/F/FRIO.json b/inst/extdata/OSD/F/FRIO.json index 2215d81ff0..495d6d0700 100644 --- a/inst/extdata/OSD/F/FRIO.json +++ b/inst/extdata/OSD/F/FRIO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 20 cm (0 to 8 in); dark grayish brown (10YR 4/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate fine and medium granular structure; hard, firm; moderately sticky, moderately plastic; many fine, medium, few coarse roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--20 to 56 cm (8 to 22 in); dark grayish brown (10YR 4/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium and coarse subangular blocky structure parting to moderate fine subangular blocky; hard, firm; moderately sticky, moderately plastic; many fine, medium, and few coarse roots; few fine shell fragments; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--56 to 74 cm (22 to 29 in); dark grayish brown (10YR 4/2) silty clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium prismatic structure parting to moderate fine and medium subangular blocky; hard, firm; moderately sticky, moderately plastic; common fine, medium, and few coarse roots; common fine films and threads of calcium carbonate; few fine shell fragments; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--74 to 102 cm (29 to 40 in); dark grayish brown (10YR 4/2) silty clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium prismatic structure parting to moderate medium and coarse subangular blocky; hard, firm; moderately sticky, moderately plastic; common fine, medium, and few coarse roots; common fine films and threads of calcium carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the A horizons is 51 to 152 cm [20 to 60 in])." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--102 to 203 cm (40 to 80 in) thick; grayish brown (10YR 5/2) silty clay, dark grayish brown (10YR 4/2) moist; moderate medium and coarse prismatic structure parting to weak coarse blocky; hard, firm; moderately sticky, moderately plastic; few fine, medium, and coarse roots; many fine films and threads and a few soft masses of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/F/FROBERG.json b/inst/extdata/OSD/F/FROBERG.json index f8f0650400..89a693bfa8 100644 --- a/inst/extdata/OSD/F/FROBERG.json +++ b/inst/extdata/OSD/F/FROBERG.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC1--22 to 32 inches; reddish brown (5YR 4/4) clay; weak very coarse subangular blocky parting to moderate fine and medium subangular blocky structure; firm; many fine to coarse roots; many reddish brown (5YR 4/4) clay films; about 3 percent cobbles and 10 percent gravel; slight effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2BC2--32 to 45 inches; reddish brown (5YR 4/4) gravelly sandy clay loam; weak coarse subangular blocky structure; friable; few fine to coarse roots; common reddish brown (5YR 4/4) clay films; few strong brown (7.5YR 5/6) masses of oxidized iron; about 5 percent cobbles and 10 percent gravel; very slight effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2BC3--45 to 80 inches; reddish brown (5YR 4/4) sandy clay loam and pockets of gravelly loamy fine sand, loam and clay loam; weak coarse subangular blocky structure; friable; few fine and medium roots; few reddish brown (5YR 4/4) clay films; few dark red (2.5YR 3/6) masses of oxidized iron; about 5 percent gravel; very slight effervescence; moderately alkaline; clear wavy boundary." diff --git a/inst/extdata/OSD/F/FRONTENAC.json b/inst/extdata/OSD/F/FRONTENAC.json index cd84c9c718..665270bc1f 100644 --- a/inst/extdata/OSD/F/FRONTENAC.json +++ b/inst/extdata/OSD/F/FRONTENAC.json @@ -204,7 +204,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--102 to 304 centimeters; very pale brown (10YR 8/3) very cobbly loam; massive; friable; about 60 percent rock fragments, mostly cobblestones with about 25 percent stones; strongly effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/G/GADONA.json b/inst/extdata/OSD/G/GADONA.json index ec5f273bef..ff818abd31 100644 --- a/inst/extdata/OSD/G/GADONA.json +++ b/inst/extdata/OSD/G/GADONA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C3--43 to 60 inches; dark grayish brown (2.5Y 4/2) silty clay; strong fine subangular blocky structure; friable, very sticky and very plastic; weakly effervescent and increasing with depth; slightly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/G/GALCHUTT.json b/inst/extdata/OSD/G/GALCHUTT.json index 090418d01d..75f5596a2e 100644 --- a/inst/extdata/OSD/G/GALCHUTT.json +++ b/inst/extdata/OSD/G/GALCHUTT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bt2--32 to 37 inches; dark grayish brown (2.5Y 4/2) clay, light brownish gray (2.5Y 6/2) dry; common medium distinct dark gray (5Y 4/1) redoximorphic depletions and common fine distinct olive brown (2.5Y 4/4) redoximorphic concentrations; weak coarse prismatic structure parting to strong medium and fine angular blocky; very hard, firm, sticky and plastic; few fine roots; common fine pores; few irregular masses of carbonates; slight effervescence; slightly alkaline; gradual wavy boundary. (Combined 2Bt horizons 6 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--37 to 60 inches; mixed gray (5Y 5/1) and olive brown (2.5Y 4/3) clay, gray (5Y 6/1) dry; common fine and medium distinct light yellowish brown (2.5Y 6/4) dry, redoximorphic concentrations; weak fine subangular blocky structure in the upper part and massive in lower part; very hard, firm, sticky and plastic; few medium irregular masses of carbonates; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/G/GALINDO.json b/inst/extdata/OSD/G/GALINDO.json index 56446ebc9d..99dc7b5070 100644 --- a/inst/extdata/OSD/G/GALINDO.json +++ b/inst/extdata/OSD/G/GALINDO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 12 inches; brown (10YR 4/3) clay, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; moderately hard, firm, very sticky and very plastic; very slightly saline; strong effervescence; moderately alkaline; abrupt smooth boundary. (6 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--12 to 29 inches; brown (10YR 4/3) clay, dark brown (10YR 3/3) moist; massive; hard, firm, very sticky and very plastic; few fine and medium tubular roots; few fine tubular pores; non-saline; strong effervescence; moderately alkaline; abrupt wavy boundary. (10 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--29 to 48 inches; pale brown (10YR 6/3) very fine sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, non-sticky and non-plastic; few fine roots; few fine tubular pores; non-saline; strong effervescence; moderately alkaline. (10 to 40 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--48 to 80 inches; pale brown (10YR 6/3) fine sand, brown (10YR 4/3) moist; single grain; loose, loose, non-sticky and non-plastic, few fine tubular pores; strongly effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GALLINAS.json b/inst/extdata/OSD/G/GALLINAS.json index f9080beb2b..c3ac28f56e 100644 --- a/inst/extdata/OSD/G/GALLINAS.json +++ b/inst/extdata/OSD/G/GALLINAS.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt1--8 to 28 cm (3 to 11 in.); very dark grayish brown (10YR 3/2) loam, grayish brown (10YR 5/2), dry; 35 percent sand; 22 percent clay; moderate medium subangular blocky structure; friable, slightly hard, slightly sticky, slightly plastic; common fine roots and many medium roots and common very fine roots; common medium tubular and many very fine interstitial pores; 20 percent faint clay films on all faces of peds; 1 percent subrounded weakly cemented 2- to 75-mm coal fragments; slight effervescence; neutral, pH 6.7; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk--90 to 190 cm (36 to 76 in.); dark brown (10YR 3/3) clay loam, brown (10YR 5/3), dry; 40 percent and; 27 percent clay; 20 percent medium distinct spherical yellowish brown (10YR 5/4) and 20 percent medium distinct spherical dark yellowish brown (10YR 3/4) mottles; moderate medium subangular blocky structure; friable, hard, moderately sticky, moderately plastic; few fine roots and common very fine roots; common fine tubular and common very fine tubular and common very fine interstitial pores; 10 percent faint clay films on all faces of peds; 3 percent fine dendritic carbonate masses on surfaces along pores; 4 percent subrounded weakly cemented 2- to 75-mm coal fragments; slight effervescence; slightly alkaline, pH 7.4." diff --git a/inst/extdata/OSD/G/GALWAY.json b/inst/extdata/OSD/G/GALWAY.json index e811f83b5c..514bcfc872 100644 --- a/inst/extdata/OSD/G/GALWAY.json +++ b/inst/extdata/OSD/G/GALWAY.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C -- 18 to 35 inches, grayish brown (2.5Y 5/2) gravelly fine sandy loam; common medium prominent white (10YR 8/1) soft masses of secondary calcium carbonate accumulation; massive with moderate thin and medium plate-like divisions; firm; few fine tubular pores; 25 percent rock fragments; moderately alkaline, violent effervescence; abrupt smooth boundary. (0 to 17 inches thick.)" diff --git a/inst/extdata/OSD/G/GARBORG.json b/inst/extdata/OSD/G/GARBORG.json index bca5271960..04da6338b3 100644 --- a/inst/extdata/OSD/G/GARBORG.json +++ b/inst/extdata/OSD/G/GARBORG.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCk--41 to 59 inches; grayish brown (2.5Y 5/2) fine sand, light brownish gray (2.5Y 6/2) dry; single grain; loose; many fine prominent strong brown (7.5YR 5/8) and common fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; few fine black (10YR 2/1) masses of iron-manganese; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 25 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--59 to 70 inches; grayish brown (2.5Y 5/2) fine sand, light brownish gray (2.5Y 6/2) dry; single grain; loose; few fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; few fine black (10YR 2/1) masses of iron-manganese; slight effervescence; moderately alkaline; clear smooth boundary." diff --git a/inst/extdata/OSD/G/GARDENA.json b/inst/extdata/OSD/G/GARDENA.json index 81f34dce3e..0e09303138 100644 --- a/inst/extdata/OSD/G/GARDENA.json +++ b/inst/extdata/OSD/G/GARDENA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk--22 to 33 inches; pale brown (10YR 6/3) silt loam, brown (10YR 4/3) moist; weak coarse subangular blocky structure parting to weak fine granular; hard, friable, slightly sticky and slightly plastic; common fine roots; common pores; few krotovinas; a few small masses of segregated carbonates; violent effervescence; slightly alkaline; diffuse wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--33 to 56 inches; pale brown (10YR 6/3) silt loam, brown (10YR 4/3) moist; few fine distinct grayish brown (2.5Y 5/2) redox depletions and dark brown (10YR 3/3) redox concentrations in lower part; weak fine and very fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few roots; common fine pores; few krotovinas to 44 inches; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--56 to 60 inches; light yellowish brown (2.5Y 6/3) silt loam grayish brown (2.5Y 5/2) moist; many medium prominent dark yellowish brown (10YR 4/4) redox concentrations; laminated; hard, friable, slightly sticky and nonplastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GARIPER.json b/inst/extdata/OSD/G/GARIPER.json index 336744a6cb..1748d53ff0 100644 --- a/inst/extdata/OSD/G/GARIPER.json +++ b/inst/extdata/OSD/G/GARIPER.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bkq--56 to 119 cm; very pale brown (10YR 7/3) gravelly sandy loam, yellowish brown (10YR 5/4) moist; massive; hard, firm, nonsticky and nonplastic; few fine and very fine roots; 25 percent gravel; many silica and calcium carbonate pendants on bottom of rock fragments; violent effervescence; moderately alkaline (pH 8.4); clear smooth boundary. (23 to 64 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bkqm--119 to 152 cm; very pale brown (10YR 7/3) continuous, strongly cemented duripan, yellowish brown (10YR 5/3) moist; massive; extremely hard, extremely firm, brittle; 15 percent gravel; strong effervescence; common, medium sized soft masses and seams of calcium carbonates." diff --git a/inst/extdata/OSD/G/GARSOX.json b/inst/extdata/OSD/G/GARSOX.json index 26d523d574..29511d4a9d 100644 --- a/inst/extdata/OSD/G/GARSOX.json +++ b/inst/extdata/OSD/G/GARSOX.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk4--36 to 44 inches; very pale brown (10YR 8/2) fine sandy loam, light brownish gray (10YR 6/2) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; very few fine roots; moderately effervescent; strongly alkaline (pH 8.6); abrupt smooth boundary. (6 to 14 inches thick)" diff --git a/inst/extdata/OSD/G/GATES.json b/inst/extdata/OSD/G/GATES.json index dd932f491b..515d06b5f3 100644 --- a/inst/extdata/OSD/G/GATES.json +++ b/inst/extdata/OSD/G/GATES.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--18 to 60 inches; pale red (2.5YR 7/2) very fine sandy loam, weak red (2.5YR 5/2) moist; weak coarse prismatic structure; slightly hard, friable; few films and threads of calcium carbonate; moderately alkaline; slight effervescence." diff --git a/inst/extdata/OSD/G/GAVINS.json b/inst/extdata/OSD/G/GAVINS.json index e05c0819fa..e83fa6dc19 100644 --- a/inst/extdata/OSD/G/GAVINS.json +++ b/inst/extdata/OSD/G/GAVINS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; dark gray (10YR 4/1) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft; very friable; abundant coarse and fine roots; common siltstone fragments; very dark brown (10YR 2/2) coatings on the faces of some peds; strong effervescence (45 percent calcium carbonate); neutral; clear smooth boundary. (3 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--4 to 10 inches; pale brown (10YR 6/3) silt loam, dark brown (10YR 4/3) moist; very weak medium prismatic structure parting to weak fine subangular blocky; soft, very friable; many fine roots; common siltstone fragments; violent effervescence (60 percent calcium carbonate); neutral; gradual wavy boundary. (5 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "irregular", "narrative": "C--10 to 18 inches; very pale brown (10YR 7/3) silt loam, yellowish brown (10YR 5/4) moist; massive; soft, very friable; many fine roots; many siltstone fragments; violent effervescence (80 percent calcium carbonate); neutral; diffuse irregular boundary. (4 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--18 to 40 inches; very pale brown (10YR 7/4) siltstone, very pale brown (10YR 7/4) moist; thin layers of gypsum between bedding planes; violent effervescence (90 percent calcium carbonate); slightly alkaline." diff --git a/inst/extdata/OSD/G/GAYLORD.json b/inst/extdata/OSD/G/GAYLORD.json index c48d229846..9cb8b1d96f 100644 --- a/inst/extdata/OSD/G/GAYLORD.json +++ b/inst/extdata/OSD/G/GAYLORD.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--24 to 55 inches; pale brown (10YR 6/3) silty clay, brown (10YR 5/3) moist; strong medium angular blocky structure grading to moderate coarse angular blocky in the lower part; very hard, firm, very sticky, very plastic; few very fine roots and tubular pores; continuous clay film on faces of peds; few clear sand grains; few lime nodules and lime coating the few fine pebbles; strong effervescence; strongly alkaline (pH 8.6); gradual boundary. (10 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck--55 to 60 inches; light brownish gray (10YR 6/2) silty clay, brown (10YR 4/3) moist; massive; hard, firm, very sticky, very plastic; few lime nodules; strong effervescence; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/G/GAYVILLE.json b/inst/extdata/OSD/G/GAYVILLE.json index 16d3d65349..2a2fd4af67 100644 --- a/inst/extdata/OSD/G/GAYVILLE.json +++ b/inst/extdata/OSD/G/GAYVILLE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btny1--1 to 7 inches; very dark gray (10YR 3/1) silty clay, black (10YR 2/1) moist; weak coarse columnar structure parting to weak medium subangular blocky; very hard, firm, sticky and plastic; common fine and many very fine roots throughout; common fine and many very fine tubular pores; some tonguing of E horizon on column tops; few fine masses of gypsum; common fine patchy clay films; strong effervescence; strongly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btny2--7 to 12 inches; dark gray (10YR 4/1) silty clay, very dark gray (10YR 3/1) moist; common black (10YR 2/1) stains along root channels and cracks; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm, sticky and plastic; few fine and common very fine roots throughout; common fine and many very fine tubular pores; few fine masses of gypsum; common fine patchy clay films; strong effervescence; strongly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btny3--12 to 18 inches; grayish brown (2.5Y 5/2) silty clay loam, very dark grayish brown (2.5Y 3/2) moist; common fine distinct olive brown (2.5Y 4/4) moist redox concentrations, moist; common black (10YR 2/1) stains along root channels and cracks; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm, sticky and plastic; few fine and common very fine roots throughout; few fine and common very fine tubular pores; common fine masses of gypsum; few fine soft iron-manganese concretions; common fine patchy clay films; strong effervescence; strongly alkaline; clear wavy boundary. (Combined Btny horizons is 8 to 28 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bky--18 to 31 inches; pale yellow (2.5Y 7/3) loam, light olive brown (2.5Y 5/3) moist; few fine distinct light olive brown (2.5Y 5/6) and common fine and medium distinct grayish brown (2.5Y 5/2) moist redox concentrations; few very dark gray (10YR 3/1) stains along root channels and cracks; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common very fine roots throughout; few fine and common very fine tubular pores; common fine soft masses of calcium carbonate; few fine masses of gypsum; few fine soft iron-manganese concretions; violent effervescence; strongly alkaline; clear smooth boundary. (6 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--31 to 80 inches; pale yellow (2.5Y 7/3) stratified very fine sandy loam, light olive brown (2.5Y 5/3) moist; few fine prominent strong brown (7.5YR 5/6) moist redox concentrations and few fine distinct gray (2.5Y 5/1) redox depletions; massive; hard, friable; slightly sticky and slightly plastic; few very fine roots throughout upper part; few fine and common very fine vesicular and tubular pores; few fine soft iron-manganese concretions; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/G/GEEBURG.json b/inst/extdata/OSD/G/GEEBURG.json index 3364d5ed65..b054d94e91 100644 --- a/inst/extdata/OSD/G/GEEBURG.json +++ b/inst/extdata/OSD/G/GEEBURG.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "C1--30 to 38 inches; dark yellowish brown (10YR 4/4) clay; coarse distinct gray (N 5/0) mottles; weak coarse prismatic structure parting to weak medium and coarse angular blocky; very firm; very few roots along faces of prisms; many distinct grayish brown (10YR 5/2) coatings on faces of prisms; common large pale yellow (2.5Y 7/4) or white (2.5Y 8/2) calcium carbonate accumulations in prisms; about 1 percent pebbles; strong effervescence; moderately alkaline; diffuse wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--38 to 60 inches; brown (10YR 5/3) silty clay; weak very coarse prismatic structure; very firm; common distinct olive gray (5Y 5/2 and 6/2) coatings on faces of prisms; common white (2.5Y 8/2) or pale yellow (2.5Y 8/4) calcium carbonate accumulations in prisms; few fine black stains (oxides) on faces of prisms; about 1 percent pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GEEFOUR.json b/inst/extdata/OSD/G/GEEFOUR.json index dfa6233eef..84d5c448fc 100644 --- a/inst/extdata/OSD/G/GEEFOUR.json +++ b/inst/extdata/OSD/G/GEEFOUR.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "sllightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 2 inches; light brownish gray (2.5Y 6/2) very gravelly silty clay, grayish brown (2.5Y 5/2) moist; moderate medium subangular blocky structure; very hard, very firm; few very fine and fine roots; 45 percent igneous gravel; sllightly effervescent; moderately alkaline; abrupt smooth boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/G/GERING.json b/inst/extdata/OSD/G/GERING.json index 44cfd06386..60ccd9dd6d 100644 --- a/inst/extdata/OSD/G/GERING.json +++ b/inst/extdata/OSD/G/GERING.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; gray (10YR 5/1) loam, dark grayish brown (10YR 4/2) moist; weak medium granular structure; slightly hard, friable; strong effervescence; moderately alkaline; abrupt smooth boundary. (7 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--8 to 13 inches; gray (10YR 5/1) loam, dark grayish brown (10YR 4/2) moist; weak medium prismatic structure; slightly hard, friable; strong effervescence; moderately alkaline; clear smooth boundary. (3 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--13 to 29 inches; light gray (10YR 7/2) stratified loam and fine sandy loam, grayish brown (10YR 5/2) moist; many medium distinct yellowish brown (10YR 5/6) moist iron masses in the soil matrix; weak medium subangular blocky structure; slightly hard, friable; violent effervescence; moderately alkaline; clear smooth boundary. (10 to 24 inches thick)" diff --git a/inst/extdata/OSD/G/GERLANE.json b/inst/extdata/OSD/G/GERLANE.json index cf2629c7b6..cabd4c6621 100644 --- a/inst/extdata/OSD/G/GERLANE.json +++ b/inst/extdata/OSD/G/GERLANE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--40 to 48 inches; reddish brown (5YR 5/3) loamy sand, reddish brown (5YR 4/3) moist; single grain; loose; slight effervescence; mildly alkaline; abrupt smooth boundary. (3 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--48 to 60 inches; reddish brown (5YR 4/3) clay loam, dark reddish brown (5YR 3/3) moist; massive; very hard; many small carbonate concretions; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/G/GETTYS.json b/inst/extdata/OSD/G/GETTYS.json index 4083dfdc0d..d13bc3cf71 100644 --- a/inst/extdata/OSD/G/GETTYS.json +++ b/inst/extdata/OSD/G/GETTYS.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--3 to 10 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to weak medium and fine subangular blocky; hard, friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline; clear wavy boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--10 to 22 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; common fine faint mottles of light yellowish brown (2.5Y 6/3) moist; weak medium subangular blocky structure; hard, firm, sticky and plastic; few fine dark gray (5Y 4/1) fragments of shale; common medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cy--22 to 38 inches; light brownish gray (2.5Y 6/2) and light olive brown (2.5Y 5/3) clay loam, dark grayish brown (2.5Y 4/2) and olive brown (2.5Y 4/3) moist; common fine distinct mottles of yellowish brown (10YR 5/6) moist; massive; hard, firm, sticky and plastic; common fine dark gray (5Y 4/1) fragments of shale; common fine striations and nests of gypsum; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 60 inches; light brownish gray (2.5Y 6/2) and gray (5Y 5/1) clay, dark grayish brown (2.5Y 4/2) and dark gray (5Y 4/1) moist; common medium distinct mottles and stains of yellowish red (5YR 5/6) moist; massive; very hard, firm, sticky and plastic; common very fine and fine gray (5Y 5/1) fragments of shale; few fine striations and nests of gypsum; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GEYSEN.json b/inst/extdata/OSD/G/GEYSEN.json index 2335c5d301..90fbdb8a10 100644 --- a/inst/extdata/OSD/G/GEYSEN.json +++ b/inst/extdata/OSD/G/GEYSEN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bqk2--69 to 94 cm; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; very few very fine roots; very few very fine tubular, and many very fine interstitial pores; 30 percent hard, firm, brittle 0.6 to 1 mm durinodes; slightly effervescent matrix, strongly effervescent in few medium distinct white (10YR 8/1) carbonate masses; strongly alkaline (pH 8.6); clear smooth boundary. (20 to 30 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--94 to 152 cm; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; massive; soft, very friable, slightly sticky and slightly plastic; very few very fine roots; many very fine interstitial, and common very fine tubular pores; 5 percent hard, firm, brittle 0.6 to 1 mm durinodes; slightly effervescent matrix, strongly effervescent in common medium distinct white (10YR 8/1) carbonate masses; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/G/GIBBON.json b/inst/extdata/OSD/G/GIBBON.json index c7cd14e3a3..09747b8ac5 100644 --- a/inst/extdata/OSD/G/GIBBON.json +++ b/inst/extdata/OSD/G/GIBBON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 centimeters (0 to 5 inches); dark gray (10YR 4/1) silty clay loam, very dark gray (10YR 3/1) moist; moderate very fine granular structure; slightly hard, friable; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--13 to 28 centimeters (5 to 11 inches); very dark gray (10YR 3/1) silty clay loam, black (10YR 2/1) moist; moderate very fine granular structure; slightly hard, friable; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the A horizon ranges from 25 to 51 centimeters (10 to 20 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--28 to 46 centimeters (11 to 18 inches); gray (10YR 6/1) silty clay loam, dark gray (10YR 4/1) moist; moderate very fine granular structure; slightly hard, friable; few fine faint brownish and yellowish oxidized iron masses in the matrix; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 25 centimeters (0 to 10 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--46 to 66 centimeters (18 to 26 inches); light brownish gray (10YR 6/2) silt loam, dark gray (10YR 4/1) moist; massive; soft, very friable; common medium distinct grayish, brownish and yellowish oxidized iron masses in the matrix, violent effervescence; moderately alkaline; clear smooth boundary. (15 to 30 centimeters (6 to 12 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg2--66 to 91 centimeters (26 to 36 inches); light gray (10YR 7/2) very fine sandy loam, light brownish gray (10YR 6/2) moist; massive; soft, very friable; common coarse prominent brownish oxidized iron masses in the matrix; strong effervescence; strongly alkaline; clear smooth boundary. (13 to 38 centimeters (5 to 15 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--91 to 200 centimeters (36 to 79 inches); light gray (10YR 7/2) fine sandy loam; grayish brown (10YR 5/2) moist; massive; soft, very friable; common coarse prominent brownish oxidized iron masses in the matrix; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/G/GILBY.json b/inst/extdata/OSD/G/GILBY.json index b8b38a5bc5..26561cedf5 100644 --- a/inst/extdata/OSD/G/GILBY.json +++ b/inst/extdata/OSD/G/GILBY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; black (10YR 2/1) loam, very dark gray (10YR 3/1) dry; weak fine subangular blocky structure; friable; many roots; many fine pores; strong effervescence; mildly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--6 to 10 inches; black (10YR 2/1) loam, dark gray (10YR 4/1) dry; few fine faint very dark gray (10YR 3/1) mottles; moderate medium subangular blocky structure; friable; strong effervescence; moderately alkaline; clear smooth boundary. (Combined A horizons 8 to 15 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--10 to 18 inches; gray (10YR 5/1) loam, light gray (10YR 7/1) dry; weak medium prismatic and medium and fine subangular blocky structure; friable; violent effervescence; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--18 to 24 inches; olive (5Y 5/3) very fine sandy loam, light gray (2.5Y 7/2) dry; few medium distinct yellowish brown (10YR 5/4) mottles; weak coarse subangular blocky structure; friable; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 10 to 22 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--24 to 33 inches; light olive brown (2.5Y 5/4) very fine sandy loam, pale yellow (2.5Y 7/4) dry; few fine faint light brownish gray (2.5Y 6/2) and distinct yellowish brown (10YR 5/4) mottles; massive; friable; few pebbles; violent effervescence; moderately alkaline; abrupt wavy boundary. (0 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--33 to 60 inches; variegated light olive brown (2.5Y 5/4) olive gray (5Y 4/2) and light brownish gray (2.5Y 6/2) clay loam; many medium prominent brown (2YR 5/3) mottles; massive; firm; few pebbles and stones; few small shale fragments; some gypsum crystals; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GILCHRIST.json b/inst/extdata/OSD/G/GILCHRIST.json index 2c7c0e752b..c36a26327a 100644 --- a/inst/extdata/OSD/G/GILCHRIST.json +++ b/inst/extdata/OSD/G/GILCHRIST.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cd--66 to 203 centimeters; light yellowish brown (10YR 6/4) extremely gravelly sandy loam; strong coarse platy structure; very firm; about 65 percent gravel; about 1 percent cobbles; moderately alkaline; strong effervescence." diff --git a/inst/extdata/OSD/G/GILLETT.json b/inst/extdata/OSD/G/GILLETT.json index 9bdd06e350..d9c3c9482d 100644 --- a/inst/extdata/OSD/G/GILLETT.json +++ b/inst/extdata/OSD/G/GILLETT.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2BCtk--27 to 34 inches; light yellowish brown (10YR 6/4), gravelly sandy clay loam, yellowish brown (10YR 5/4) moist; weak fine subangular blocky structure; hard, firm, slightly sticky, slightly plastic; few fine roots; few thin discontinuous dark brown clay films; few fine and medium masses and concretions of calcium carbonate; 20 percent moderately cemented sandstone fragments coated with calcium carbonate; sandstone has common yellow streaks and spots; weakly effervescent; moderately alkaline; clear wavy boundary. (0 to 18 inches thick)" diff --git a/inst/extdata/OSD/G/GILLETT_GROVE.json b/inst/extdata/OSD/G/GILLETT_GROVE.json index 53ad25deff..7f0f95f3b0 100644 --- a/inst/extdata/OSD/G/GILLETT_GROVE.json +++ b/inst/extdata/OSD/G/GILLETT_GROVE.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "stronglyly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--57 to 62 inches; olive gray (5Y 5/2) to light olive gray (5Y 6/2) loam; massive, friable; common, fine and medium, distinct strong brown (7.5YR 5/6) and yellowish brown (10YR 5/6 and 10YR 5/8) Fe depletions; few fine tubular pores; common fine segregations and concretions of iron and manganese oxides; few fine segregations and concretions of calcium carbonate; stronglyly effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/G/GILLIAM.json b/inst/extdata/OSD/G/GILLIAM.json index 2f02d4e0c7..9246763f18 100644 --- a/inst/extdata/OSD/G/GILLIAM.json +++ b/inst/extdata/OSD/G/GILLIAM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; very dark grayish brown (10YR 3/2) silty clay loam, dark grayish brown (10YR 4/2) dry; weak fine granular structure; friable; common fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--7 to 11 inches; very dark grayish brown (10YR 3/2) silty clay loam, grayish brown (10YR 5/2) dry; weak fine granular structure; friable; common fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A2--11 to 15 inches; very dark gray (10YR 3/1) silty clay loam, grayish brown (10YR 5/2) dry; weak fine subangular blocky structure; firm; few fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary. (Combined thickness of the A horizon is 10 to 24 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--15 to 22 inches; dark grayish brown (10YR 4/2) silty clay loam; appears massive but has distinct bedding planes; friable; few fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary. (Combined thickness of the C horizon is 6 inches to many feet.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ab--22 to 26 inches; very dark gray (10YR 3/1) silty clay loam; weak fine subangular blocky structure; firm; slight effervescence; slightly alkaline; abrupt smooth boundary. (0 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--26 to 60 inches; stratified dark grayish brown (10YR 4/2) and very dark grayish brown (10YR 3/2) silt loam and silty clay loam; thin lenses of very dark gray (10YR 3/1) silty clay; appears massive, but has distinct bedding planes; friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GILT_EDGE.json b/inst/extdata/OSD/G/GILT_EDGE.json index 62eb6bddc8..dad759705f 100644 --- a/inst/extdata/OSD/G/GILT_EDGE.json +++ b/inst/extdata/OSD/G/GILT_EDGE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B3ca--13 to 19 inches; light olive brown (2.5Y 5/3) crushing to light yellowish brown (2.5Y 6/3) clay, olive brown (2.5Y 4/3) crushing to light olive brown (2.5Y 5/3) moist; moderate medium prismatic structure separating easily to strong medium angular blocky structure; extremely hard, firm, sticky, plastic; continuous dark stained light shiny faces on vertical faces and patchy on horizontal faces; slight effervescence, few soft bodies of lime; strongly alkaline (pH 8.6); diffuse boundary. (4 to 8 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1ca--19 to 24 inches; olive (5Y 5/3) clay, olive (5Y 4/3) moist; weak coarse prismatic structure; extremely hard, firm, sticky, plastic; slight effervescence, few nodules of lime; strongly alkaline (pH 8.8); gradual boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2cacs--24 to 32 inches; light olive gray (5Y 6/2) clay, olive gray (5Y 4/2) moist; massive; extremely hard, friable, sticky, plastic; slight effervescence, few nodules of lime and streaks and bodies of gypsum; strongly alkaline (pH 8.8); diffuse boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3ca--32 to 40 inches; light brownish gray (2.5Y 6/2) light clay, olive brown (2.5Y 4/3) moist; massive; extremely hard, friable, sticky, plastic; few pebbles in lower part; slight effervescence; few bodies of gypsum; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/G/GLADEK.json b/inst/extdata/OSD/G/GLADEK.json index c8f4e3010c..d0a87f2020 100644 --- a/inst/extdata/OSD/G/GLADEK.json +++ b/inst/extdata/OSD/G/GLADEK.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--46 to 68 inches; light olive brown (2.5Y 5/4) very fine sandy loam; moderate fine platy parting to moderate very fine angular blocky structure; few medium distinct strong brown (7.5YR 4/6) relic mottles; strong effervescence; slightly alkaline; clear smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--68 to 80 inches; light olive brown (2.5Y 5/4) silt loam; massive parting to laminar plates; common medium distinct brown (7.5YR 4/4) relic mottles; few fine reddish brown (5YR 4/4) iron concretions in channels; friable; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/G/GLADEVILLE.json b/inst/extdata/OSD/G/GLADEVILLE.json index ebe4ce6809..bb20c411c2 100644 --- a/inst/extdata/OSD/G/GLADEVILLE.json +++ b/inst/extdata/OSD/G/GLADEVILLE.json @@ -112,7 +112,7 @@ "cf_class": "very flaggy", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "soil effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A2--4 to 8 inches; dark brown (10YR 3/3) very flaggy silty clay loam; moderate medium and fine subangular blocky structure; firm; common roots; about 50 percent by volume of thin flat fragments of limestone mostly 1 to 10 inches long, though a few are larger; moderately alkaline; soil effervescence; abrupt wavy boundary. (0 to 4 inches thick)" diff --git a/inst/extdata/OSD/G/GLENHAM.json b/inst/extdata/OSD/G/GLENHAM.json index 7a3ed1cc4c..3f42f5dd1c 100644 --- a/inst/extdata/OSD/G/GLENHAM.json +++ b/inst/extdata/OSD/G/GLENHAM.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--13 to 18 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; hard, friable, slightly sticky, slightly plastic; few pebbles; few fine accumulations of carbonates; slight effervescence; moderately alkaline; clear wavy boundary. (0 to 11 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--18 to 38 inches; light brownish gray (2.5Y 6/2) clay loam, light olive brown (2.5Y 5/3) moist; weak coarse subangular blocky structure; hard, friable, slightly sticky, slightly plastic; few pebbles; common fine accumulations of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bk horizons is 8 to 33 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, light olive brown (2.5Y 5/3) moist; few fine faint relic mottles of gray (5Y 5/1) moist; massive; slightly hard, friable, slightly sticky, slightly plastic; few fine iron stains (5Y 5/6) moist; few pebbles; few fine nests of gypsum crystals; few fine accumulations of carbonates; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GLENROSS.json b/inst/extdata/OSD/G/GLENROSS.json index 4c4e75eea2..3afd71d602 100644 --- a/inst/extdata/OSD/G/GLENROSS.json +++ b/inst/extdata/OSD/G/GLENROSS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "E--0 to 1 inches; dark gray (10YR 4/1) fine sandy loam, light gray (10YR 7/2) dry; massive; soft, very friable; common roots; slight effervescence; moderately alkaline; abrupt wavy boundary. (1/2 to 2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btn--1 to 6 inches; grayish brown (2.5Y 5/2) sandy clay loam, light brownish gray (2.5Y 6/2) dry; many medium faint mottles of light olive brown (2.5Y 5/6); moderate coarse and very coarse columnar structure; very hard, firm, sticky; common roots; strong effervescence; strongly alkaline; gradual boundary. (3 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bz--6 to 16 inches; light olive brown (2.5Y 5/3) sandy clay loam, light yellowish brown (2.5Y 6/3) dry; weak very coarse prismatic structure parting to weak coarse subangular blocky; hard, firm, very sticky; few roots; common fine nests of salts; violent effervescence; very strongly alkaline; gradual boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bzg--16 to 42 inches; olive gray (5Y 5/2); sandy clay loam, light olive gray (5Y 6/2) dry; many coarse prominent mottles of strong brown (7.5YR 5/6); weak coarse subangular blocky structure; very hard, firm, sticky; few roots to 21 inches; common medium nests and striations of salt; violent effervescence; very strongly alkaline; clear wavy boundary. (Combined Bz horizons is 7 to 43 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--42 to 60 inches; light olive brown (2.5Y 5.6) and olive gray (5Y 5/2) loamy fine sand, olive yellow (2.5Y 6/6) and light olive gray (5Y 6/2) dry; massive; hard, very friable; strong effervescence; very strongly alkaline." diff --git a/inst/extdata/OSD/G/GLOBE.json b/inst/extdata/OSD/G/GLOBE.json index 847b611965..7bf3c66222 100644 --- a/inst/extdata/OSD/G/GLOBE.json +++ b/inst/extdata/OSD/G/GLOBE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; reddish brown (5YR 4/3) crushed, clay, reddish brown (5YR 5/3) crushed, dry; strong very fine granular structure; hard, firm, very sticky and very plastic; few fine roots throughout; cracks up to 10 inches wide; violent effervescence, by HCl, 3 normal; moderately alkaline, pH 7.9, Phenol red; clear smooth boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--2 to 8 inches; reddish brown (5YR 4/3) crushed, clay, reddish brown (5YR 5/3) crushed, dry; strong coarse prismatic and strong coarse subangular blocky structure; hard, firm, very sticky and very plastic; few fine roots throughout; cracks up to 6 inches wide; violent effervescence, by HCl, 3 normal; moderately alkaline, pH 8.0, Phenol red; clear smooth boundary. (4 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bss1--8 to 16 inches; reddish brown (5YR 4/3) exterior, clay, reddish brown (5YR 5/3) exterior, dry; 40 percent reddish gray (5YR 5/2) and 40 percent dark reddish gray (5YR 4/2) mottles; strong medium wedge structure; hard, firm, very sticky and very plastic; few fine roots throughout; cracks up to 3 inches wide; slickensides and pressure faces; striated uncoated sand grains; violent effervescence, by HCl, 3 normal; moderately alkaline, pH 8.1, Phenol red; gradual smooth boundary. (6 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--50 to 80 inches; brown (7.5YR 5/3) exterior, clay, brown (7.5YR 5/2) exterior, dry; 20 percent strong brown (7.5YR 4/6) and 20 percent brown (7.5YR 5/3) and 30 percent greenish gray (5GY 6/1) and 30 percent greenish gray (5GY 5/1) mottles; hard, firm, massive; very sticky and very plastic; cracks up to 1 inch wide; violent effervescence, by HCl, 3 normal; slightly alkaline, pH 7.6, Phenol red;." diff --git a/inst/extdata/OSD/G/GLYNDON.json b/inst/extdata/OSD/G/GLYNDON.json index 1cc17f8bdc..60fbd8435c 100644 --- a/inst/extdata/OSD/G/GLYNDON.json +++ b/inst/extdata/OSD/G/GLYNDON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) loam, few masses of very dark gray (10YR 3/1); dark gray (10YR 4/1) dry; weak very fine subangular blocky structure; very friable; many roots; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--8 to 11 inches; black (10YR 2/1) loam, common inclusions of very dark gray (10YR 3/1); dark gray (10YR 4/1) dry; weak very fine subangular blocky structure; very friable; many roots; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined A horizon 7 to 16 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--11 to 16 inches; dark gray (10YR 4/1) loam; weak very fine subangular blocky structure; very friable; many roots; disseminated carbonates throughout; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--16 to 28 inches; light yellowish brown (2.5Y 6/3) loam; few fine faint light yellowish brown (2.5Y 6/4) redoximorphic concentrations; weak very fine subangular blocky structure; very friable; disseminated carbonates throughout; violent effervescence; moderately alkaline; clear smooth boundary. (Combined Bk horizons 10 to 52 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--28 to 36 inches; light yellowish brown (2.5Y 6/4) loamy very fine sand; common fine distinct light olive brown (2.5Y 5/6) redoximorphic concentrations; massive; very friable; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--36 to 60 inches; light brownish gray (2.5Y 6/2) loamy very fine sand; many medium prominent brownish yellow (10YR 6/8) redoximorphic concentrations; massive with some weak bedding planes; very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GODECKE.json b/inst/extdata/OSD/G/GODECKE.json index 3372a9be04..634d45db2f 100644 --- a/inst/extdata/OSD/G/GODECKE.json +++ b/inst/extdata/OSD/G/GODECKE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btnk--20 to 46 cm; pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; weak medium prismatic structure; hard, friable, moderately sticky and moderately plastic; common very fine and few medium roots between peds; many very fine tubular pores; common distinct clay films on faces of peds and as bridges between sand grains; secondary carbonates segregated as common filaments; slightly effervescent in matrix and strongly effervescent filaments; strongly alkaline (pH 9.0); abrupt smooth boundary. (20 to 30 cm thick)" diff --git a/inst/extdata/OSD/G/GOLDEAGLE.json b/inst/extdata/OSD/G/GOLDEAGLE.json index e70c6f8d1a..0621eeee8a 100644 --- a/inst/extdata/OSD/G/GOLDEAGLE.json +++ b/inst/extdata/OSD/G/GOLDEAGLE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "violently effervescent", + "eff_class": "not effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--59 to 80 inches; light gray (2.5Y 7/2) siltstone; compact, massive, hard and brittle; few very fine roots along fracture planes; violently effervescent (5 percent calcium carbonate; HCl 1 normal), common carbonates occur as large seams along fracture planes; weathered bedrock matrix is not effervescent." diff --git a/inst/extdata/OSD/G/GOLSUM.json b/inst/extdata/OSD/G/GOLSUM.json index 3b22dd4434..2376b192af 100644 --- a/inst/extdata/OSD/G/GOLSUM.json +++ b/inst/extdata/OSD/G/GOLSUM.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "irregular", "narrative": "Btk--61 to 79 cm; pale brown (10YR 6/3) very gravelly loam, brown (10YR 4/3) moist; weak fine angular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots; common fine interstitial pores; common distinct clay films on faces of peds and lining pores; 50 percent gravel; secondary carbonates segregated as masses and seams; slightly effervescent matrix and strongly effervescent masses; strongly alkaline (pH 8.6); abrupt irregular boundary. (10 to 25 cm thick)" diff --git a/inst/extdata/OSD/G/GOLVA.json b/inst/extdata/OSD/G/GOLVA.json index a66bbe9fc8..a17b8ad022 100644 --- a/inst/extdata/OSD/G/GOLVA.json +++ b/inst/extdata/OSD/G/GOLVA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--15 to 21 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bw horizons 7 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--21 to 32 inches; pale yellow (2.5Y 7/4) silt loam, olive brown (2.5Y 4/4) moist; moderate coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; discontinuous thin pebble line at bottom of horizon; common masses of carbonates; violent effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--32 to 40 inches; pale yellow (5Y 8/3) silt loam, olive (5Y 5/3) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common masses of carbonates; violent effervescence; moderately alkaline; abrupt wavy boundary. (Combined Bk horizons 6 to 34 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--40 to 60 inches; pale yellow (5Y 8/3) silt loam, olive (5Y 5/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GONVICK.json b/inst/extdata/OSD/G/GONVICK.json index b3e4082ec1..9e7de42e87 100644 --- a/inst/extdata/OSD/G/GONVICK.json +++ b/inst/extdata/OSD/G/GONVICK.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw--29 to 60 inches; light olive brown (2.5Y 5/4) loam; common fine prominent yellowish brown (10YR 5/8) mottles; weak very fine and fine subangular blocky structure; friable; few grayish lime segregations; about 5 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GOODBYE.json b/inst/extdata/OSD/G/GOODBYE.json index d8ed82d4e9..81ebc64873 100644 --- a/inst/extdata/OSD/G/GOODBYE.json +++ b/inst/extdata/OSD/G/GOODBYE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 10 cm; brown (10YR 5/3) loam, dark brown (10YR 3/3) moist; weak fine subangular blocky structure; slightly hard, very friable, moderately sticky and moderately plastic; many very fine and fine roots; many very fine interstitial pores; strong effervescence; moderately alkaline, (pH 8.3); clear smooth boundary. (5 to 15 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--10 to 25 cm; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine subangular blocky structure; slightly hard, very friable, moderately sticky and moderately plastic; many very fine and fine roots; common very fine tubular and interstitial pores; slight effervescence; moderately alkaline, (pH 8.0); clear wavy boundary. (10 to 30 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A3--25 to 76 cm; gray (10YR 5/1) loam, very dark gray (10YR 3/1) moist; weak fine and medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine and fine roots; common very fine interstitial and common tubular pores; 25 percent fine and medium dark yellowish brown (10YR 4/4), moist, masses of oxidized iron in the matrix; 5 percent gravel; slight effervescence; moderately alkaline, (pH 8.0); clear wavy boundary. (25 to 60 cm thick)" diff --git a/inst/extdata/OSD/G/GOODING.json b/inst/extdata/OSD/G/GOODING.json index 2333f307ef..1bd6bac4c1 100644 --- a/inst/extdata/OSD/G/GOODING.json +++ b/inst/extdata/OSD/G/GOODING.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--34 to 44 inches; very pale brown (10YR 8/4) silty clay loam, light yellowish brown (10YR 6/4) moist; moderate medium and coarse angular blocky structure; hard, firm, very sticky and very plastic; few fine roots; many very fine and fine tubular pores; common moderately thick clay films lining pores and on faces of peds; strong effervescence (20 percent calcium carbonate); mildly alkaline (pH 7.6); clear wavy boundary. (7 to 14 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkq--44 to 49 inches; very pale brown (10YR 7/4) silty clay loam, strong brown (7.5YR 5/6) moist; moderate thin and medium platy structure; hard, firm, sticky and plastic; few fine and medium roots as mats on top of duripan; few very fine and fine tubular pores; violent effervescence (30 percent calcium carbonate); moderately alkaline (pH 8.0); abrupt smooth boundary. (3 to 30 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkqm--49 to 62 inches; very pale brown (10YR 7/4) weakly cemented duripan; massive; extremely hard, extremely firm; many very fine and fine discontinuous tubular pores filled with calcium carbonate and silica; plates are weakly cemented with calcium carbonate and silica; violent effervescence (30 percent calcium carbonate); moderately alkaline (pH 8.2). (1 to 18 inches thick)" diff --git a/inst/extdata/OSD/G/GOOSEFLATS.json b/inst/extdata/OSD/G/GOOSEFLATS.json index 6b866faebb..9190f3d123 100644 --- a/inst/extdata/OSD/G/GOOSEFLATS.json +++ b/inst/extdata/OSD/G/GOOSEFLATS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Akzn1--0 to 4 inches; grayish brown (10YR 5/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak fine subangular blocky structure; soft, very friable, nonsticky and nonplastic; many very fine roots; violent effervescent; very strongly alkaline (pH 9.4); gradual smooth boundary." diff --git a/inst/extdata/OSD/G/GOOSENAWT.json b/inst/extdata/OSD/G/GOOSENAWT.json index d56030222c..183c8d3ed0 100644 --- a/inst/extdata/OSD/G/GOOSENAWT.json +++ b/inst/extdata/OSD/G/GOOSENAWT.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk1-- 58 to 64 inches; light brownish gray (10YR 6/2) silt loam, olive brown (2.5Y 4/4) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; few very fine, fine, and medium roots; few fine tubular pores; 1 to 2 cm thick gravelly lens; 5 percent gravel; many soft lime mycelia and splotches; strong effervescence; slightly alkaline (pH 7.4); clear smooth boundary. ( 0 to 8 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk2--64 to 74 inches; pale brown (10YR 6/3) loam, dark grayish brown (2.5Y 4/2) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; few very fine and fine, and common medium roots; common fine tubular pores; 1 to 2 cm thick gravelly lens; 10 percent gravel; slight effervescence; slightly alkaline (pH 7.4)." diff --git a/inst/extdata/OSD/G/GOSPER.json b/inst/extdata/OSD/G/GOSPER.json index 25ca6b4970..39a18a70d6 100644 --- a/inst/extdata/OSD/G/GOSPER.json +++ b/inst/extdata/OSD/G/GOSPER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--19 to 31 inches; brown (10YR 5/3) sandy clay loam, dark brown (10YR 4/3) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable; shiny ped faces; strong effervescence; mildly alkaline; gradual wavy boundary. (Combined thickness of Bt horizon is 12 to 24 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--31 to 41 inches; pale brown (10YR 6/3) fine sandy loam, brown (10YR 5/3) moist; massive; soft, very friable; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--41 to 53 inches; very pale brown (10YR 7/3) loamy sand, pale brown (10YR 6/3) moist; few medium distinct dark yellowish brown (10YR 4/4) moist mottles; single grain; loose; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--53 to 60 inches; white (10YR 8/2) coarse sand, light gray (10YR 7/2) moist; single grain; loose; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GOSUMI.json b/inst/extdata/OSD/G/GOSUMI.json index fa38f27640..4fa1d8c25e 100644 --- a/inst/extdata/OSD/G/GOSUMI.json +++ b/inst/extdata/OSD/G/GOSUMI.json @@ -227,7 +227,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "irregular", "narrative": "Btk--107 to 127 cm; light yellowish brown (10YR 6/4) very gravelly sandy loam, yellowish brown (10YR 5/4) moist; massive; hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine interstitial and few very fine tubular pores; few faint clay films bridging and coating sand grains and gravel; 40 percent gravel; many fine soft masses of carbonate; violently effervescent in carbonate masses, slightly effervescent in matrix; moderately alkaline (pH 8.4); abrupt irregular boundary. (15 to 25 cm thick)" diff --git a/inst/extdata/OSD/G/GOURLEY.json b/inst/extdata/OSD/G/GOURLEY.json index cd280042df..8730b9a632 100644 --- a/inst/extdata/OSD/G/GOURLEY.json +++ b/inst/extdata/OSD/G/GOURLEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--28 to 36 inches; grayish brown (10YR 5/2) light clay, dark grayish brown (10YR 4/2) moist; weak very coarse prismatic structure parting to moderate and coarse angular and subangular blocky; few cracks 1/2 inch wide; hard, firm, sticky, and plastic; common faint clay films on ped faces; weakly effervescent; slightly alkaline; clear wavy boundary. (6 to 10 inches)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; grayish brown (10YR 5/2) clay loam, brown (10YR 4/3) moist; massive; hard, firm, sticky, and plastic; weakly effervescent; slightly alkaline." diff --git a/inst/extdata/OSD/G/GRACELAND.json b/inst/extdata/OSD/G/GRACELAND.json index 7f88448ff7..fec46ae6fc 100644 --- a/inst/extdata/OSD/G/GRACELAND.json +++ b/inst/extdata/OSD/G/GRACELAND.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--112 to 150 centimeters (44 to 59 inches); olive brown (2.5Y 4/4) silt loam, light yellowish brown (2.5Y 6/4) dry; common fine prominent gray (10YR6/1) redoximorphic depletions and many fine prominent yellowish brown (10YR 5/6) redoximophic concentrations; weak medium prismatic structure parting to moderate fine and medium subangular blocky; slightly hard, friable; few very fine roots; common very fine pores; 15 percent calcium carbonate equivalent; common fine and medium calcium carbonate masses; violent effervescence; moderately alkaline; clear wavy boundary. [Bk horizon thickness is 0 to 61 centimeters (0 to 24 inches)]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk2--150 to 193 centimeters (59 to 76 inches); olive brown (2.5Y 4/3) clay loam, light yellowish brown (2.5Y 6/3) dry; many fine and medium prominent gray (10YR 6/1) redoximorphic depletions and many fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations; weak coarse subangular blocky structure; very hard, firm, slightly sticky, slightly plastic; few very fine roots; few very fine pores; 19 percent calcium carbonate equivalent; 5 percent gravel; common fine and medium calcium carbonate masses; violent effervescence; moderately alkaline; gradual wavy boundary. [2Bk horizon thickness is 15 to 76 centimeters (6 to 30 inches)]" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--193 to 203 centimeters (76 to 80 inches); olive brown (2.5Y 4/3) clay loam, light yellowish brown (2.5Y 6/3) dry; many fine and medium prominent gray (10YR 6/1) redoximorphic depletions and many fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; very hard, firm; slightly sticky, slightly plastic; 14 percent calcium carbonate equivalent; 5 percent gravel; few fine calcium carbonate masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GRAIL.json b/inst/extdata/OSD/G/GRAIL.json index 2bdb0fcab6..0c2f02df85 100644 --- a/inst/extdata/OSD/G/GRAIL.json +++ b/inst/extdata/OSD/G/GRAIL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--24 to 52 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; very weak medium prismatic structure parting to moderate coarse and medium subangular blocky; hard, firm; few pores; strong effervescence; few small masses of carbonates; moderately alkaline; clear wavy boundary. (0 to 36 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--52 to 60 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure; hard, firm; strong effervescence; few small masses of carbonates; moderately alkaline." diff --git a/inst/extdata/OSD/G/GRANBURY.json b/inst/extdata/OSD/G/GRANBURY.json index e262dd7e1d..62a20736a8 100644 --- a/inst/extdata/OSD/G/GRANBURY.json +++ b/inst/extdata/OSD/G/GRANBURY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2R--59 to 84 cm, (23.2 to 33.1 inches); white (N 8/), Indurated limestone bedrock, white (N 8/), moist; structureless massive; indurated; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0 by pH indicator solutions." diff --git a/inst/extdata/OSD/G/GRANO.json b/inst/extdata/OSD/G/GRANO.json index e5674d44a5..6553735fe6 100644 --- a/inst/extdata/OSD/G/GRANO.json +++ b/inst/extdata/OSD/G/GRANO.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Ag--3 to 19 inches; black (5Y 2/1) silty clay, dark gray (5Y 4/1) dry; very weak coarse prismatic structure parting to strong fine angular blocky; extremely hard, firm, very sticky and very plastic; many fine roots in upper part, common in lower part; a few fine threads of carbonates; strong effervescence; moderately alkaline; clear irregular boundary. (8 to 24 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--19 to 39 inches; olive gray (5Y 4/2) silty clay, light olive gray (5Y 6/2) dry; strong fine angular blocky structure; extremely hard, firm, very sticky and plastic; few fine roots; few pores; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg2--39 to 51 inches; olive gray (5Y 5/2) silty clay, light olive gray (5Y 6/2) dry; many medium prominent light olive brown (2.5Y 5/6) redoximorphic concentrations; massive; extremely hard, firm, very sticky and very plastic; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg3--51 to 63 inches; dark gray (5Y 4/1) clay loam, gray (5Y 5/1) dry; few fine prominent light olive brown (2.5Y 5/4) redoximorphic concentrations; dry; massive; extremely hard, firm, sticky and plastic; a few pebbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GRASSNA.json b/inst/extdata/OSD/G/GRASSNA.json index a2282d6a0d..e974a941a7 100644 --- a/inst/extdata/OSD/G/GRASSNA.json +++ b/inst/extdata/OSD/G/GRASSNA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--40 to 50 inches; pale yellow (2.5Y 7/3) silt loam, light olive brown (2.5Y 5/4) moist; weak subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine roots; common fine pores; common fine white carbonate masses; violent effervescence; moderately alkaline; gradual wavy boundary. (7 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--50 to 60 inches; pale yellow (2.5Y 7/3) silt loam, light olive brown (2.5Y 5/4) moist; common medium distinct gray (5Y 5/1) moist redoximorphic depletions and common fine prominent dark yellowish brown (10YR 4/4) moist redoximorphic concentrations; massive; hard; friable, slightly sticky and slightly plastic; few fine pores; few small carbonate masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GRAT.json b/inst/extdata/OSD/G/GRAT.json index c6b941266b..e9aab32c1f 100644 --- a/inst/extdata/OSD/G/GRAT.json +++ b/inst/extdata/OSD/G/GRAT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt--5 to 8 inches; very dark gray (10YR 3/1) clay loam, dark gray (10YR 4/1) dry; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, firm, sticky and plastic; few fine accumulations of carbonate; slight effervescence; neutral; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--8 to 14 inches; dark gray (10YR 4/1) clay loam, gray (10YR 5/1) dry; few fine prominent dark yellowish brown (10YR 4/6)redox concentrations; moderate medium prismatic structure parting to moderate and strong medium subangular blocky; hard, firm, sticky and plastic; few fine dark concretions (oxides); disseminated and common fine accumulations of carbonate; strong effervescence (8 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (Combined Bt horizons 5 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg1--14 to 20 inches; dark gray (5Y 4/1) clay loam, gray (5Y 5/1) dry; common fine prominent strong brown (7.5YR 5/6) and light olive brown (2.5Y 5/4) redox concentrations; moderate medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine dark concretions (oxides); disseminated and common medium accumulations of carbonate; strong effervescence (12 percent calcium carbonate); moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkg2--20 to 31 inches; light brownish gray (2.5Y 6/2) clay loam, white (2.5Y 8/2) dry; massive; hard, friable, slightly sticky and slightly plastic; few medium dark concretions (oxides); violent effervescence (40 percent calcium carbonate); moderately alkaline; abrupt wavy boundary. (Combined Bk horizons 0 to 25 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Cg--31 to 55 inches; grayish brown (2.5Y 5/2) stratified sand and gravel, light brownish gray (2.5Y 6/2) dry; many fine and medium distinct strong brown (7.5YR 5/6) redox concentrations; single grained; loose; common fine dark concretions (oxides); slight effervescence; slightly alkaline; abrupt wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Cg--55 to 60 inches; olive gray (5Y 5/2) clay loam, light gray (5Y 7/2) dry; many medium distinct strong brown (7.5YR 5/6) and yellowish brown (10YR 5/6) redox concentrations; massive; hard, friable, slightly sticky and slightly plastic; common fine dark concretions (oxides); strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/G/GRAVERAET.json b/inst/extdata/OSD/G/GRAVERAET.json index f0c91dcd72..e80fcc21b2 100644 --- a/inst/extdata/OSD/G/GRAVERAET.json +++ b/inst/extdata/OSD/G/GRAVERAET.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--99 to 152 centimeters; reddish brown (5YR 4/3) loam; weak fine subangular blocky structure; friable; about 3 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GRAYBERT.json b/inst/extdata/OSD/G/GRAYBERT.json index 9b2323beb8..1b932aed22 100644 --- a/inst/extdata/OSD/G/GRAYBERT.json +++ b/inst/extdata/OSD/G/GRAYBERT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bwb--38 to 52 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; slightly hard, friable; strong effervescence of lime accumulations within root pores; moderately alkaline; gradual smooth boundary. (10 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BCb--52 to 58 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; slightly hard, friable; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 8 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--58 to 60 inches; light gray (10YR 7/2) silt loam, light brownish gray (10YR 6/2) moist; massive; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GREAT_BEND.json b/inst/extdata/OSD/G/GREAT_BEND.json index daab1f48a0..5738c40b66 100644 --- a/inst/extdata/OSD/G/GREAT_BEND.json +++ b/inst/extdata/OSD/G/GREAT_BEND.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--13 to 17 inches; pale yellow (2.5Y 7/4) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, very friable; few roots; many fine pores; strong effervescence (17 percent calcium carbonate); slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--17 to 29 inches; pale yellow (2.5Y 7/4) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse and medium subangular blocky structure; slightly hard, very friable; few roots; many fine pores; few fine threads of gypsum; violent effervescence (24 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (Combined Bk horizons is 6 to 26 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--29 to 46 inches; light gray (2.5Y 7/2) and light olive brown (2.5Y 5/4) silt loam, light yellowish brown (2.5Y 6/4) and olive brown (2.5Y 4/4) moist; massive, varved; slightly hard, friable; strong effervescence (16 percent calcium carbonate); moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--46 to 60 inches; pale yellow (2.5Y 8/2) silt loam, varved with thin layers of silty clay and very fine sandy loam, light yellowish brown (2.5Y 6/4) moist; common fine distinct yellowish brown (10YR 5/6) and strong brown (7.5YR 5/6) redox concentrations; massive; slightly hard, friable; 1 to 3 mm thick varves; few fine dark concretions (iron and manganese oxides); few fine threads of gypsum crystals; strong effervescence (13 percent calcium carbonate); moderately alkaline." diff --git a/inst/extdata/OSD/G/GREENTON.json b/inst/extdata/OSD/G/GREENTON.json index d497c2b482..eaac47a4cd 100644 --- a/inst/extdata/OSD/G/GREENTON.json +++ b/inst/extdata/OSD/G/GREENTON.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2C1--30 to 39 inches; olive (5Y 5/3) clay; massive; very firm; few very fine roots; few fine prominent yellowish brown (10YR 5/6) masses of iron accumulation; 5 percent limestone rock fragments; slight effervescence; mildly alkaline; gradual smooth boundary. (6 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--39 to 60 inches; mixed pale olive (5Y 6/4) and yellowish brown (10YR 5/4) silty clay; massive; very firm; 10 percent limestone rock fragments; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/G/GREENVINE.json b/inst/extdata/OSD/G/GREENVINE.json index b444fda5a3..e11a83a337 100644 --- a/inst/extdata/OSD/G/GREENVINE.json +++ b/inst/extdata/OSD/G/GREENVINE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss2--30 to 38 inches; light gray (10YR 6/1) clay, dark gray (10YR 4/1) moist; many coarse distinct grayish brown (10YR 5/2) moist and common medium distinct light yellowish brown (2.5Y 6/4) moist redox concentrations; weak coarse platy structure parting to strong fine angular blocky; very hard, very firm, sticky and plastic; few fine roots along cleavages; common slickensides; few fine iron-manganese masses; slight effervescence; slightly alkaline; clear wavy boundary. (combined Bss subhorizons 10 to 20 inches thick)" diff --git a/inst/extdata/OSD/G/GREENWAY.json b/inst/extdata/OSD/G/GREENWAY.json index 50186e75cb..e4bf682dad 100644 --- a/inst/extdata/OSD/G/GREENWAY.json +++ b/inst/extdata/OSD/G/GREENWAY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk1--24 to 33 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; few fine distinct reddish brown (5YR 4/4) mottles; weak medium prismatic structure parting to weak coarse subangular blocky; hard, firm, sticky and plastic; thin continuous shiny film on faces of peds; many medium and coarse accumulations of carbonate; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk2--33 to 41 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; few fine distinct reddish brown (5YR 4/4) mottles; weak medium and fine subangular blocky structure; massive; hard, firm, sticky and plastic; many medium and coarse accumulations of carbonate; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined 2Bk horizon is 0 to 25 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--41 to 60 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct mottles of reddish brown (5YR 4/4) moist; massive; hard, firm, sticky, and plastic; few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GRIGSTON.json b/inst/extdata/OSD/G/GRIGSTON.json index 17c8bb072b..c06c7e9def 100644 --- a/inst/extdata/OSD/G/GRIGSTON.json +++ b/inst/extdata/OSD/G/GRIGSTON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Clca--24 to 48 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weakly stratified with darker colors; massive; hard, friable; many fine pores; few threads and films of segregated lime; strong effervescence; moderately alkaline; diffuse smooth boundary. (20 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--48 to 60 inches; pale brown (10YR 6/3) silty clay loam, brown (10YR 4/3) moist; massive; very hard, firm; stratified with few thin lenses of darker colored silty clay loam; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GRIMSTAD.json b/inst/extdata/OSD/G/GRIMSTAD.json index cdc1c2be90..5217358e1b 100644 --- a/inst/extdata/OSD/G/GRIMSTAD.json +++ b/inst/extdata/OSD/G/GRIMSTAD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 9 inches; black (10YR 2/1) sandy loam; dark gray (10YR 4/1) dry; weak very fine subangular blocky structure; very friable; common roots; few very dark brown (10YR 2/2) worm casts and root channel fillings; strong effervescence; slightly alkaline; abrupt smooth boundary. (6 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--9 to 14 inches; very dark grayish brown (10YR 4/2) loamy fine sand; weak fine granular structure; very friable; common roots; many very dark grayish brown (10YR 3/2) tongues and masses; strong effervescence; carbonates disseminated throughout; slightly alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--14 to 22 inches; grayish brown (2.5Y 5/2) loamy sand; weak fine granular structure; very friable; common roots; common very dark grayish brown (10YR 4/2) masses; few dark yellowish brown (10YR 4/4) coatings on mineral grains in lower part; violent effervescence; carbonates disseminated throughout; slightly alkaline; clear wavy boundary. (Combined Bk horizons 6 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--22 to 28 inches; light olive brown (2.5Y 5/4) loamy fine sand; common fine faint light yellowish brown (2.5Y 6/4) and few coarse distinct dark brown (10YR 4/3) redoximorphic concentrations; massive; loose; few roots; about 2 percent gravel in lower part; slight effervescence; slightly alkaline; clear smooth boundary. (4 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C2--28 to 32 inches; brownish yellow (10YR 6/6) fine sandy loam; common fine prominent light olive brown (2.5Y 5/4) redoximorphic concentrations and light brownish gray (2.5Y 6/2) redoximorphic depletions; massive; very friable; few roots; about 2 percent gravel; strong effervescence; slightly alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--32 to 60 inches; light brownish gray (2.5Y 6/2) fine sandy loam; common fine faint light gray (2.5Y 7/2) redoximorphic depletions and many fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; very friable; few fine dark reddish brown concretions; about 5 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GROTON.json b/inst/extdata/OSD/G/GROTON.json index f724f7641c..9b63545c80 100644 --- a/inst/extdata/OSD/G/GROTON.json +++ b/inst/extdata/OSD/G/GROTON.json @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--30 to 52 inches; light olive gray (5Y 6/2) extremely gravelly sand; single grain; loose; very few very fine roots; 65 percent gravel; slight effervescence; slightly alkaline; abrupt wavy boundary. (20 to 50 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--52 to 72 inches; pale olive (5Y 6/3) gravelly sand; single grain; loose; 30 percent gravel; slight effervescence; secondary lime deposits on pebbles below 60 inches; slightly alkaline." diff --git a/inst/extdata/OSD/G/GROVENA.json b/inst/extdata/OSD/G/GROVENA.json index 462ba6ed68..4e6f739081 100644 --- a/inst/extdata/OSD/G/GROVENA.json +++ b/inst/extdata/OSD/G/GROVENA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--35 to 42 inches; pale yellow (2.5Y 7/4) silt loam, light olive brown (2.5Y 5/4) moist; common fine prominent gray (10YR 6/1) and very dark brown (10YR 2/2) mottles; weak coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine accumulations of calcium carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--42 to 60 inches; light yellowish brown (2.5Y 6/4) loam with a few strata of sandy loam, light olive brown (2.5Y 5/4) moist; common fine prominent very dark brown (10YR 2/2) mottles; massive; slightly hard, very friable; few fine accumulations of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/G/GROWTON.json b/inst/extdata/OSD/G/GROWTON.json index be8a6bdbd9..3a9a1d723e 100644 --- a/inst/extdata/OSD/G/GROWTON.json +++ b/inst/extdata/OSD/G/GROWTON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--37 to 60 inches; yellowish brown (10YR 5/4) sandy loam; common medium faint grayish brown (10YR 5/2) and yellowish brown (10YR 5/6) mottles; massive; friable; few soft masses of lime; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/G/GUAYACAN.json b/inst/extdata/OSD/G/GUAYACAN.json index 1a796aa1fa..45a157b395 100644 --- a/inst/extdata/OSD/G/GUAYACAN.json +++ b/inst/extdata/OSD/G/GUAYACAN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--8 to 12 inches; very dark grayish brown (10YR 3/2) clay, dark brown (10YR 3/3) dry; strong medium angular blocky structure; firm; slightly sticky, moderately plastic; many very fine and fine roots, few medium roots; many very fine and few fine tubular and vesicular pores; about 3 percent, by volume, pebbles; moderately effervescent; moderately alkaline; clear wavy boundary. (4 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk1--12 to 25 inches; dark yellowish brown (10YR 4/4) clay, brown (10YR 4/3) dry; moderate medium subangular blocky structure; firm; slightly sticky, moderately plastic; many very fine roots, few fine roots; many very fine and few fine tubular and vesicular pores; common filaments of calcium carbonate; about 10 percent, by volume, pebbles; moderately effervescent; moderately alkaline; abrupt wavy boundary." diff --git a/inst/extdata/OSD/G/GULLIVER.json b/inst/extdata/OSD/G/GULLIVER.json index b4cbe703db..006fed72e5 100644 --- a/inst/extdata/OSD/G/GULLIVER.json +++ b/inst/extdata/OSD/G/GULLIVER.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--76 to 102 centimeters; brown (7.5YR 5/3) sandy loam; weak medium platy structure inherent from deposition; firm; few medium prominent yellowish red (5YR 5/8) masses of iron accumulations throughout; about 3 percent cobbles; about 5 percent medium and fine gravel; moderately alkaline; violent effervescence; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2C2--102 to 147 centimeters; brown (7.5YR 5/3) gravelly fine sandy loam; moderate medium platy structure inherent from deposition; firm; common medium distinct strong brown (7.5YR 4/6) masses of iron accumulations and common coarse faint light brown (7.5YR 6/3) masses of iron depletions throughout; about 3 percent cobbles; about 5 percent coarse gravel, 8 percent medium and fine gravel; moderately alkaline; violent effervescence; abrupt wavy boundary. (combined thickness of the C horizons is 51 to 102 centimeters)" diff --git a/inst/extdata/OSD/G/GULL_POINT.json b/inst/extdata/OSD/G/GULL_POINT.json index b9640b10db..7804c83d39 100644 --- a/inst/extdata/OSD/G/GULL_POINT.json +++ b/inst/extdata/OSD/G/GULL_POINT.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "2BCd1--102 to 155 centimeters; reddish brown (2.5YR 4/3) silt loam; weak very coarse prismatic structure; very firm; few medium roots between peds; few patchy faint reddish brown (2.5YR 4/3) clay films on vertical faces of peds; few discontinuous prominent brown (10YR 5/3) silt flows on vertical faces of peds; about 5 percent gravel and 3 percent cobbles; slight effervescence; moderately alkaline; diffuse smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2BCd2--155 to 203 centimeters; reddish brown (2.5YR 4/3) silt loam; weak coarse prismatic structure; very firm; few patchy faint reddish brown (2.5YR 4/3) clay films on vertical faces of peds; few discontinuous prominent brown (10YR 5/3) silt flows on vertical faces of peds; about 5 percent gravel and 3 percent cobbles; slight effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/G/GURNEY.json b/inst/extdata/OSD/G/GURNEY.json index a53fcd08c2..f2bc2523a1 100644 --- a/inst/extdata/OSD/G/GURNEY.json +++ b/inst/extdata/OSD/G/GURNEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--16 to 22 inches; light yellowish brown (10YR 6/4) clay loam, dark yellowish brown (10YR 4/4) moist; moderate medium subangular blocky structure; very hard, friable; few fine and medium accumulations of carbonates; strong effervescence; slightly alkaline; gradual wavy boundary. (4 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk2--22 to 28 inches; light yellowish brown (10YR 6/4) channery clay loam, dark yellowish brown (10YR 4/4) moist; weak medium subangular blocky structure; very hard, friable; 20 percent by volume of fragments of rock; common fine accumulations of carbonates; violent effervescence; moderately alkaline; abrupt smooth boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--28 to 60 inches; red (2.5YR 5/6) indurated sandstone; strong effervescence." diff --git a/inst/extdata/OSD/G/GUSTAVUS.json b/inst/extdata/OSD/G/GUSTAVUS.json index e0f3daa543..bc461ebed3 100644 --- a/inst/extdata/OSD/G/GUSTAVUS.json +++ b/inst/extdata/OSD/G/GUSTAVUS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C3--140 to 150 cm; variegated coarse sand; single grain; loose, nonsticky and nonplastic; few very fine and fine interstitial pores; slight effervescent (HCL, 1N); neutral (pH 7.2)" diff --git a/inst/extdata/OSD/G/GUTPORT.json b/inst/extdata/OSD/G/GUTPORT.json index bb84f0b197..2c165f8076 100644 --- a/inst/extdata/OSD/G/GUTPORT.json +++ b/inst/extdata/OSD/G/GUTPORT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--17 to 27 inches; varved reddish brown (5YR 5/4) and pinkish gray (5YR 6/2) silty clay; many medium and coarse prominent strong brown (7.5YR 4/6), distinct brown (7.5YR 5/4) and prominent greenish gray (5GY 6/1) mottles; massive; firm; few fine to coarse roots; slight effervescence; mildly alkaline; abrupt smooth boundary." diff --git a/inst/extdata/OSD/G/GWENA.json b/inst/extdata/OSD/G/GWENA.json index 9e586cce71..51c62fed20 100644 --- a/inst/extdata/OSD/G/GWENA.json +++ b/inst/extdata/OSD/G/GWENA.json @@ -273,7 +273,7 @@ "cf_class": "very gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--132 to 152 cm; very pale brown (10YR 7/4) very gravelly loamy coarse sand, yellowish brown (10YR 5/6) moist; single grained; loose, nonsticky and nonplastic; common very fine tubular pores; 55 percent gravel; strongly effervescent carbonate coatings on undersides of gravel; noneffervescent matrix; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/G/GWINNER.json b/inst/extdata/OSD/G/GWINNER.json index 576167b83b..b21409f098 100644 --- a/inst/extdata/OSD/G/GWINNER.json +++ b/inst/extdata/OSD/G/GWINNER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--27 to 31 inches; light olive brown (2.5Y 5/3) clay loam, pale yellow (2.5Y 7/3) dry; moderate medium subangular blocky structure; slightly hard, friable; slightly sticky and slightly plastic; about 6 percent gravel; many fine irregular shaped masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bky--31 to 38 inches; grayish brown (2.5Y 5/2) clay loam, light gray (2.5Y 7/2) dry; common fine distinct light yellowish brown (2.5Y 6/4) redoximorphic concentrations; weak medium subangular blocky structure; slightly hard, friable; slightly sticky and slightly plastic; about 6 percent gravel; common nests of gypsum; common fine irregular shaped masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 10 to 40 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--38 to 60 inches; light olive brown (2.5Y 5/3) loam, light yellowish brown (2.5Y 6/3) dry; common medium faint light yellowish brown (2.5Y 6/4) redoximorphic concentrations and common fine prominent gray (5Y 5/1) redoximorphic depletions; massive; slightly hard, friable; slightly sticky and slightly plastic; about 6 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HADAR.json b/inst/extdata/OSD/H/HADAR.json index 0e28c6e45e..9c164fdb39 100644 --- a/inst/extdata/OSD/H/HADAR.json +++ b/inst/extdata/OSD/H/HADAR.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--46 to 60 inches; light gray (2.5Y 7/2) clay loam, light brownish gray (2.5Y 6/2) moist; many medium distinct yellowish brown (10YR 5/8 moist) and strong brown (7.5YR 5/6 moist) mottles; moderate medium cleavage planes; hard, firm; common medium seams and pockets of soft carbonates; few reddish brown accumulations of iron-manganese; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HALEIWA.json b/inst/extdata/OSD/H/HALEIWA.json index 7a93c17a2e..e4be774e59 100644 --- a/inst/extdata/OSD/H/HALEIWA.json +++ b/inst/extdata/OSD/H/HALEIWA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap1--0 to 23 centimeters (0 to 9 inches); dark brown (10YR 3/3) silty clay, very dark grayish brown (10YR 3/2) moist; moderate fine and medium granular structure; hard, firm, moderately sticky and moderately plastic; many fine, medium and coarse roots; many very fine and fine interstitial pores; moderate effervescence with hydrogen peroxide; slightly acid (pH 6.4); gradual smooth boundary. (10 to 23 centimeters thick )" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--23 to 43 centimeters (9 to 17 inches); dark brown (10YR 3/3) silty clay, very dark grayish brown (10YR 3/2) moist; moderate fine subangular blocky structure; hard, firm, moderately sticky and moderately plastic; many very fine, fine, and few coarse roots; common fine and few medium tubular pores; slight effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear wavy boundary. (15 to 23 centimeters thick )" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--43 to 66 centimeters (17 to 26 inches); dark brown (10YR 3/3) moist and dry silty clay; weak fine subangular blocky structure; hard, firm, moderately sticky and moderately plastic; many very fine and fine roots; common fine and few medium tubular pores; patchy red clay films in pores and on some peds; slight effervescence with hydrogen peroxide; neutral (pH 6.7); clear wavy boundary. (20 to 25 centimeters thick )" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.9, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--66 to 91 centimeters (26 to 36 inches); same as above except common very fine and fine roots; many very fine, common medium and few coarse tubular pores; moderate effervescence with hydrogen peroxide; neutral (pH 6.9); clear smooth boundary. (20 to 31 centimeters thick )" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.9, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--91 to 122 centimeters (36 to 48 inches); dark yellowish brown (10YR 3/4) silty clay, dark brown (10YR 3/3) moist; weak fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few very fine and medium roots; many very fine, common fine and few medium tubular pores; slight effervescence on soil mass with hydrogen peroxide; neutral (pH 6.9); clear wavy boundary. (25 to 31 centimeters thick )" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--122 to 165 centimeters (48 to 65 inches); same as above except few very fine roots; many very fine and few tubular pores; slight effervescence on stains within pores with hydrogen peroxide." diff --git a/inst/extdata/OSD/H/HALIIMAILE.json b/inst/extdata/OSD/H/HALIIMAILE.json index b46e71f922..1b738cc08c 100644 --- a/inst/extdata/OSD/H/HALIIMAILE.json +++ b/inst/extdata/OSD/H/HALIIMAILE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 15 inches; dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/4) dry; moderate fine and very fine granular structure; hard, friable, sticky and plastic; many roots; many fine pores; common small black concretions; few weathered fragments of rock; strong effervescence with hydrogen peroxide; strongly acid (pH 5.5); clear smooth boundary. (12 to 18inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.3, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--15 to 27 inches; dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/4) dry; moderate medium and fine subangular blocky structure; hard, friable, sticky and plastic; few roots; many fine and very fine pores; patchy pressure faces; common small black concretions; strong effervescence with hydrogen peroxide; strongly acid (pH 5.3); clear wavy boundary. (12 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.1, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw2--27 to 41 inches; dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/4) dry; moderate medium and fine subangular blocky structure; hard, friable, sticky and plastic; few roots; many fine and very fine pores; patchy pressure faces; few very fine fragments of rock; common small black concretions; strong effervescence with hydrogen peroxide; strongly acid (pH 5.1); abrupt wavy boundary. (12 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 5.7, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2B3--41 to 65 inches; very dark grayish brown (10YR 3/2) clay, dark gray (10YR 4/1) dry; strong fine and very fine angular blocky structure; hard, firm, very sticky and very plastic; few roots; many fine and very fine pores; patchy pressure faces; many highly weathered fragments of rock; slight effervescence with hydrogen peroxide; moderately acid (pH 5.7)" diff --git a/inst/extdata/OSD/H/HALL.json b/inst/extdata/OSD/H/HALL.json index f5e814ba72..4c1b5402a0 100644 --- a/inst/extdata/OSD/H/HALL.json +++ b/inst/extdata/OSD/H/HALL.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--119 to 200 centimeters (47 to 79 inches); light brownish gray (10YR 6/2) stratified fine sandy loam, silt loam and silty clay loam, grayish brown (10YR 5/2) moist; massive; soft, friable; moderately alkaline; strong effervescence." diff --git a/inst/extdata/OSD/H/HAMAR.json b/inst/extdata/OSD/H/HAMAR.json index 6e4ca67439..9486957dc4 100644 --- a/inst/extdata/OSD/H/HAMAR.json +++ b/inst/extdata/OSD/H/HAMAR.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--23 to 40 inches; grayish brown (2.5Y 5/2) fine sand, light brownish gray (2.5Y 6/2) dry; single grain; common fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; common fine and medium roots in upper part and few fine and medium roots in lower part; slight effervescence in the lower part; slightly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ab--40 to 47 inches; very dark gray (10YR 3/1) loamy fine sand, gray (10YR 5/1) dry; single grain; few fine distinct dark yellowish brown (10YR 4/4) redoximorphic concentrations; few fine and medium roots; strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--47 to 60 inches; olive gray (5Y 5/2) fine sand, light gray (5Y 7/2) dry; single grain; common fine prominent dark yellowish brown (10YR 4/4) and yellowish brown (10YR 5/6) redoximorphic concentrations and few fine distinct greenish gray (5G 5/1) redoximorphic depletions; few fine and medium roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HAMERLY.json b/inst/extdata/OSD/H/HAMERLY.json index 9f7a00f46d..d8d0abae84 100644 --- a/inst/extdata/OSD/H/HAMERLY.json +++ b/inst/extdata/OSD/H/HAMERLY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; very dark gray (10YR 3/1) loam, gray (10YR 5/1) dry; weak medium subangular blocky structure parting to moderate medium granular; friable; slightly sticky; strong effervescence; abrupt smooth boundary. (Combined A horizons 5 to 18 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--8 to 18 inches; light brownish gray (2.5Y 6/2) loam; weak medium and fine subangular blocky structure; friable; violent effervescence; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--18 to 25 inches; light brownish gray (2.5Y 6/2) and light olive brown (2.5Y 5/4) loam; weak medium subangular blocky structure; friable; few masses of carbonates; violent effervescence; gradual wavy boundary. (Combined Bk horizons 10 to 40 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--25 to 60 inches; light olive brown (2.5Y 5/4) and olive brown (2.5Y 4/4) loam; common medium distinct gray (2.5Y 5/1) redoximorphic depletions and yellowish brown (10YR 5/6) redoximorphic concentrations; weak medium blocky structure; firm; strong effervescence." diff --git a/inst/extdata/OSD/H/HAMLET.json b/inst/extdata/OSD/H/HAMLET.json index 676d42dd4e..7161500779 100644 --- a/inst/extdata/OSD/H/HAMLET.json +++ b/inst/extdata/OSD/H/HAMLET.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--43 to 70 centimeters; light olive brown (2.5Y 5/3), light brownish gray (2.5Y 6/2) dry; loam; weak coarse prismatic structure parting to moderate coarse subangular blocky; hard, firm, slightly sticky and slightly plastic; few very fine roots throughout; common fine pores; common fine soft masses of carbonates; violent effervescence; common fine distinct gray (5Y 5/1) redoximorphic depletions; common fine prominent strong brown (7.5YR 4/6 and 7.5YR 4/8) and common fine faint light olive brown (2.5Y 5/4) redoximorphic concentrations; about 5 percent pebbles; pH 8.2 (moderately alkaline); clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--70 to 121 centimeters; olive brown (2.5Y 4/3), light olive brown (2.5Y 5/3) dry; clay loam; weak very coarse subangular blocky structure; hard, firm, moderately sticky and moderately plastic; very few, very fine roots throughout; few fine pores; common fine soft masses of carbonates; strong effervescence; common fine distinct gray (2.5Y 5/1) redoximorphic depletions; common fine prominent strong brown (7.5YR 4/6 and 7.5YR 4/8) and common fine faint light olive brown (2.5Y 5/4) redoximorphic concentrations; about 5 percent pebbles and 1 percent cobbles; pH 8.1 (moderately alkaline); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--121 to 158 centimeters; olive brown (2.5Y 4/3), light olive brown (2.5Y 5/3) dry; clay loam; massive; hard, firm, moderately sticky and moderately plastic; few fine pores; strong effervescence; few fine masses of gypsum; common fine faint olive gray (5Y 5/2) redoximorphic depletions; common fine prominent strong brown (7.5YR 4/6 and 7.5YR 4/8) and common fine faint light olive brown (2.5Y 5/4) redoximorphic concentrations; about 5 percent pebbles and 1 percent cobbles; pH 8.0 (moderately alkaline); gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--158 to 200 centimeters; olive brown (2.5Y 4/3), light olive brown (2.5Y 5/3) dry; clay loam; massive; hard, firm, moderately sticky and moderately plastic; strong effervescence; common fine and medium masses of gypsum; common fine prominent strong brown (7.5YR 4/6) and common fine faint light olive brown (2.5Y 5/4) redoximorphic concentrations; about 5 percent pebbles and 1 percent cobbles; pH 8.0 (moderately alkaline)." diff --git a/inst/extdata/OSD/H/HAMRUB.json b/inst/extdata/OSD/H/HAMRUB.json index bb8e0d3f77..382328389b 100644 --- a/inst/extdata/OSD/H/HAMRUB.json +++ b/inst/extdata/OSD/H/HAMRUB.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "broken", "narrative": "Btk--26 to 41 inches; yellowish brown (10YR 5/4) silty clay loam, dark yellowish brown (10YR 4/4) moist; weak fine subangular blocky structure; slightly hard, friable, sticky and plastic; common fine and medium roots; common very fine and fine tubular pores; few thin clay films on faces of peds and lining pores; about 5 percent pebbles; strong effervescence (20 percent calcium carbonate); mildly alkaline (pH 7.6); abrupt broken boundary. (9 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bkq--41 to 43 inches; very pale brown (10YR 7/4) silt loam, light yellowish brown (10YR 6/4) moist; weak fine subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few fine roots matted on dislodged duripan fragments; few fine tubular pores; about 10 percent gravel sized duripan fragments; strong effervescence (20 percent calcium carbonate); mildly alkaline (pH 7.8); abrupt smooth boundary. (0 to 13 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bkqm--43 to 48 inches; white (10YR 8/2) indurated duripan, massive, extremely hard, extremely firm; common fine roots matted on top of laminar capping of duripan; violent effervescence (35 percent calcium carbonate); strongly alkaline (pH 8.5); abrupt wavy boundary. (2 to 10 inches thick)" diff --git a/inst/extdata/OSD/H/HANAMAULU.json b/inst/extdata/OSD/H/HANAMAULU.json index 32e210ca80..eb1d866359 100644 --- a/inst/extdata/OSD/H/HANAMAULU.json +++ b/inst/extdata/OSD/H/HANAMAULU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.2, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1--0 to 5 inches; very dark grayish brown (10YR 3/2) silty clay, very dark grayish brown (2.5Y 3/2) dry; moderate medium and fine granular structure; hard, firm, sticky and plastic; many roots; slight effervescence with hydrogen peroxide; some material from Bto1 horizon mixed by plowing; extremely acid (pH 4.2); abrupt smooth boundary. (5 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--5 to 11 inches; dark brown (7.5YR 3/4) silty clay, brown (7.5YR 4/3) dry; weak fine and very fine subangular blocky structure; hard, firm, sticky and plastic; common fine and very fine roots; many fine and very fine pores; slight effervescence with hydrogen peroxide; some material from horizon below mixed by plowing; very strongly acid (pH 4.8); clear smooth boundary. (6 to 7 inches thick)" diff --git a/inst/extdata/OSD/H/HAND.json b/inst/extdata/OSD/H/HAND.json index a067a2cffe..0a3f2bca19 100644 --- a/inst/extdata/OSD/H/HAND.json +++ b/inst/extdata/OSD/H/HAND.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 24 inches; light gray (2.5Y 7/2) loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to weak coarse and medium subangular blocky; slightly hard, friable; common medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--24 to 31 inches; light gray (2.5Y 7/2) loam, light olive brown (2.5Y 5/3) moist; weak coarse and medium prismatic structure parting to weak coarse subangular blocky; hard, very friable; common medium accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bk horizons is 8 to 18 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--31 to 40 inches; light yellowish brown (2.5Y 6/4) silt loam, olive brown (2.5Y 4/4) moist; common fine and medium distinct olive yellow (2.5Y 6/6) redox concentrations and gray (2.5Y 6/1) redox depletions; massive; slightly hard, very friable; stratification evident; disseminated carbonates; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--40 to 52 inches; light yellowish brown (2.5Y 6/4) and light gray (2.5Y 7/1) silt loam, olive brown (2.5Y 4/4) and gray (2.5Y 5/1) moist; many medium distinct olive yellow (2.5Y 6/6) redox concentrations; massive; slightly hard, very friable; stratification evident; disseminated carbonates; strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--52 to 60 inches; light yellowish brown (2.5Y 6/4) and light gray (2.5Y 7/1) loam, olive brown (2.5Y 4/4) and gray (2.5Y 5/1) moist; many medium and fine distinct olive yellow (2.5Y 6/6) and yellowish brown (10YR 5/6) redox concentrations; massive; hard, friable; stratification evident; thin coatings of very dark grayish brown (10YR 3/2) between stratifications; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HANGERONE.json b/inst/extdata/OSD/H/HANGERONE.json index f02d13f2a1..ee77d7f847 100644 --- a/inst/extdata/OSD/H/HANGERONE.json +++ b/inst/extdata/OSD/H/HANGERONE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 9 inches, (0 to 24 cm); dark gray (10YR 4/1) broken face clay, very dark gray (10YR 3/1) broken face moist; 41 percent clay; moderate coarse subangular blocky structure; very hard, very firm, moderately sticky, moderately plastic; common medium roots and common very fine roots; common fine irregular pores; 2 percent subrounded strongly cemented 2 to 75 millimeter mixed rock fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.3 by pH meter 1:1 water; abrupt smooth boundary. Upper 1 centimeter of horizon is an Oi layer." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--9 to 17 inches, (24 to 42 cm); dark gray (10YR 4/1) broken face clay, very dark gray (10YR 3/1) broken face moist; 50 percent clay; moderate coarse subangular blocky and moderate medium subangular blocky structure; very hard, very firm, moderately sticky, moderately plastic; common medium roots and common very fine roots; common fine irregular pores; 1 percent subrounded strongly cemented 2 to 75 millimeter mixed rock fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.3 by pH meter 1:1 water; clear smooth boundary. (Combined thickness of the A horizon is 10 to 50 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw--17 to 27 inches, (42 to 68 cm); dark gray (10YR 4/1) broken face clay, very dark gray (10YR 3/1) broken face moist; 49 percent clay; moderate coarse angular blocky structure; extremely hard, extremely firm, very sticky, very plastic; common medium roots; few fine irregular pores; 65 percent distinct dark gray (10YR 4/1), dry, pressure faces on vertical faces of peds; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.4 by pH meter 1:1 water; abrupt wavy boundary. (0 to 85 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--27 to 35 inches, (68 to 88 cm); gray (2.5Y 6/1) broken face clay, grayish brown (2.5Y 5/2) broken face moist; 43 percent clay; moderate coarse angular blocky and moderate medium angular blocky structure; hard, firm, very sticky, very plastic; few very fine irregular pores; 20 percent distinct white (10YR 8/1), dry, carbonate coats on all faces of peds and 65 percent distinct gray (2.5Y 6/1), dry, pressure faces on vertical faces of peds; 5 percent fine prominent light brown (7.5YR 6/4), dry, iron-manganese masses in matrix; violent effervescence, by HCl, 1 normal; strongly alkaline, pH 8.6 by pH meter 1:1 water; clear smooth boundary. (0 to 48 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ck--35 to 45 inches, (88 to 115 cm); light gray (2.5Y 7/1) broken face clay loam, grayish brown (2.5Y 5/2) broken face moist; 33 percent clay; moderate coarse angular blocky and moderate medium angular blocky structure; hard, firm, very sticky, very plastic; few very fine irregular pores; 20 percent distinct white (10YR 8/1), dry, carbonate coats on all faces of peds; 5 percent fine prominent light brown (7.5YR 6/4), dry, iron-manganese masses in matrix; violent effervescence, by HCl, 1 normal; strongly alkaline, pH 8.5 by pH meter 1:1 water; abrupt smooth boundary. (0 to 55 centimeters thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Ab--72 to 89 inches, (183 to 225 cm); dark gray (2.5Y 4/1) broken face clay, black (2.5Y 2.5/1) broken face moist; 48 percent clay; moderate coarse subangular blocky structure; hard, firm, moderately sticky, moderately plastic; common very fine irregular pores; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2 by pH meter 1:1 water." diff --git a/inst/extdata/OSD/H/HANLY.json b/inst/extdata/OSD/H/HANLY.json index 30d6c0c0cd..35ef764412 100644 --- a/inst/extdata/OSD/H/HANLY.json +++ b/inst/extdata/OSD/H/HANLY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 5 inches; light brownish gray (2.5Y 6/2) loamy fine sand, dark grayish brown (2.5Y 4/2) moist; weak fine granular structure; soft, very friable, nonsticky and nonplastic; many fine and few coarse roots; slight effervescence; slightly alkaline; clear smooth boundary. (2 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--5 to 14 inches; grayish brown (2.5Y 5/2) loamy sand, dark grayish brown (2.5Y 4/2) moist; single grain; loose, nonsticky and nonplastic; common fine and few large roots; dark and light colored sand grains have salt and pepper appearance; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--14 to 16 inches; light brownish gray (2.5Y 6/2) finely stratified fine sandy loam, dark grayish brown (2.5Y 4/2) moist; few brownish yellow (10YR 6/6) stains on faces of plate-like stratifications; massive; slightly hard, very friable, slightly sticky and nonplastic; common fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--16 to 60 inches; light brownish gray and grayish brown (2.5Y 6/2 and 5/2) finely stratified loamy fine sand and loamy sand with thin bands of loam and sand, dark grayish brown (2.5Y 4/2) moist; massive; soft, nonsticky and nonplastic; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/H/HARMONY.json b/inst/extdata/OSD/H/HARMONY.json index 2d817911b6..7705abc244 100644 --- a/inst/extdata/OSD/H/HARMONY.json +++ b/inst/extdata/OSD/H/HARMONY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--35 to 40 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; weak medium subangular blocky structure; hard, friable, sticky and plastic; few fine roots; common fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary. (5 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--40 to 60 inches; light gray (2.5Y 7/2) loam, grayish brown (2.5Y 5/2) moist; common fine prominent yellowish brown (10YR 5/6) redox concentrations and few fine distinct grayish brown (2.5Y 5/2) redox depletions; massive; laminated; slightly hard, very friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HARNEY.json b/inst/extdata/OSD/H/HARNEY.json index ab54f2c5a4..debd147132 100644 --- a/inst/extdata/OSD/H/HARNEY.json +++ b/inst/extdata/OSD/H/HARNEY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCk--28 to 35 inches; brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; moderate medium subangular blocky structure; hard, firm; few fine roots; many soft accumulations of carbonates; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ck--35 to 47 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; massive; slightly hard, friable; common soft accumulations of carbonates; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--47 to 60 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; massive; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HARRIET.json b/inst/extdata/OSD/H/HARRIET.json index 893003d28f..c96fbb5c0b 100644 --- a/inst/extdata/OSD/H/HARRIET.json +++ b/inst/extdata/OSD/H/HARRIET.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn--2 to 6 inches; black (N 2/0) clay loam, dark gray (N 4/0) dry; moderate medium columnar structure; extremely hard, firm; coatings of very dark gray (N 3/0) on faces of peds; gray (N 5/0) dry on tops and sides of columns; slight effervescence on inside of columns; strongly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btnz--6 to 18 inches; very dark grayish brown (2.5Y 3/2) clay loam, grayish brown (2.5Y 5/2) dry; moderate coarse prismatic and weak medium subangular blocky structure; very hard, firm; few roots; common medium pores; common fine white salt crystals; strong effervescence; strongly alkaline; gradual wavy boundary. (Combined Btn horizons 3 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bz1--18 to 28 inches; dark grayish brown (2.5Y 4/2) loam, grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) dry; weak coarse prismatic structure; very hard, firm; few fine roots; few medium and fine pores; fine salt crystals visible when dry; violent effervescence; strongly alkaline; abrupt smooth boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bz2--28 to 38 inches; light olive brown (2.5Y 5/3) very fine sandy loam, light yellowish brown (2.5Y 6/3) dry; weak coarse prismatic and weak coarse and medium subangular blocky structure; very hard, friable; few fine pores; common very fine salt crystals that are visible when dry; strong effervescence; strongly alkaline; abrupt smooth boundary. (0 to 26 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Ab--38 to 40 inches; very dark gray (N 3/0) clay loam, dark gray (N 4/0) dry; few medium distinct olive brown (2.5Y 4/3) redoximorphic concentrations; weak coarse prismatic structure; very hard, firm; few fine roots; strong effervescence; strongly alkaline; abrupt boundary. (0 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--40 to 60 inches; olive brown (2.5Y 4/3) stratified loam and clay loam, light yellowish brown (2.5Y 6/3) dry; weak coarse and medium subangular blocky structure; very hard, friable; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/H/HARTSBURG.json b/inst/extdata/OSD/H/HARTSBURG.json index 2cc40315c0..bce74c6655 100644 --- a/inst/extdata/OSD/H/HARTSBURG.json +++ b/inst/extdata/OSD/H/HARTSBURG.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "BCkg--76 to 86 cm (30 to 34 inches); light brownish gray (2.5Y 6/2) silty clay loam; weak coarse subangular blocky structure; firm; many distinct gray (N 5/0) and grayish brown (2.5Y 5/2) linings in pores and root channels; common very dark gray (10YR 3/1) krotovina; few fine rounded black (7.5YR 2.5/1) weakly cemented iron-manganese oxide concretions with diffuse boundaries lining pores; many medium and coarse rounded white (10YR 8/1) weakly cemented calcium carbonate concretions throughout; many medium prominent yellowish brown (10YR 5/8) masses of oxidized iron in the matrix; violently effervescent among concretions, slightly effervescent in the martix; slightly alkaline; clear wavy boundary. [0 to 41 cm (0 to 16 inches) thick]" diff --git a/inst/extdata/OSD/H/HAUG.json b/inst/extdata/OSD/H/HAUG.json index 49f9c6c135..7698b171d7 100644 --- a/inst/extdata/OSD/H/HAUG.json +++ b/inst/extdata/OSD/H/HAUG.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--9 to 15 inches; black (N 2/0) mucky sandy loam; weak fine platy parting to moderate fine and medium subangular blocky structure; very friable, slightly sticky and plastic; many very fine roots: few very fine and fine tubular pores; common clean grayish brown (2.5Y 5/2) sand grains; about 2 percent gravel; slightly effervescent but strongly effervescent in lower part; slightly alkaline; clear smooth boundary. (2 to 8 inches thick)" diff --git a/inst/extdata/OSD/H/HAVANA.json b/inst/extdata/OSD/H/HAVANA.json index d13635bda6..2f7fc88366 100644 --- a/inst/extdata/OSD/H/HAVANA.json +++ b/inst/extdata/OSD/H/HAVANA.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--50 to 60 inches; light olive brown (2.5Y 5/4) and grayish brown (2.5Y 5/2) loam; massive; friable; few distinct clay-organic fillings in root channels; about 4 percent coarse fragments; few dark colored concretions; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/H/HAVERHILL.json b/inst/extdata/OSD/H/HAVERHILL.json index 5f2a0eab2d..4d9dd10675 100644 --- a/inst/extdata/OSD/H/HAVERHILL.json +++ b/inst/extdata/OSD/H/HAVERHILL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 8 inches; black (N 2/0) clay, very dark gray (10YR 3/1) dry; moderate fine granular and weak fine subangular blocky structure; friable; slight effervescence; mildly alkaline; abrupt wavy boundary. (7 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "AB--8 to 13 inches; very dark gray (5Y 3/1) clay, dark gray (5Y 4/1) dry; black (N 2/0) coatings on faces of peds; strong fine granular structure; firm; few fine inclusions of black (N 2/0); slight effervescence; mildly alkaline; clear irregular boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bg1--13 to 15 inches; very dark gray (5Y 3/1) clay; many medium faint brown (7.5YR 4/2) and few fine distinct yellowish brown (10YR 5/6) mottles; strong fine subangular blocky structure; sticky; common fine inclusions of black (N 2/0); about 5 percent limestone fragments; slight effervescence; mildly alkaline; abrupt wavy boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bg2--15 to 21 inches; dark olive gray (5Y 3/2) channery clay; very dark gray (5Y 3/1) coatings on faces of peds; many fine and medium prominent gray (5Y 6/1) mottles; moderate coarse subangular blocky structure; slightly sticky; about 20 percent limestone pebbles and fragments; strong effervescence; mildly alkaline; abrupt wavy boundary. (2 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "BCg--21 to 32 inches; greenish gray (5G 6/1) clay; many medium prominent light olive brown (2.5Y 5/4) mottles; massive; firm; about 15 percent limestone pebbles and fragments; mildly alkaline; strong effervescence; gradual irregular boundary. (0 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--32 to 60 inches; greenish gray (5G 6/1) shale; slight effervescence in parts; mildly alkaline." diff --git a/inst/extdata/OSD/H/HAVRELON.json b/inst/extdata/OSD/H/HAVRELON.json index 5debace9d0..fff3e0f5be 100644 --- a/inst/extdata/OSD/H/HAVRELON.json +++ b/inst/extdata/OSD/H/HAVRELON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; moderate medium granular structure; very friable; common roots; common fine pores; slight effervescence; slightly alkaline; abrupt smooth boundary. (Combined A horizons 8 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--13 to 18 inches; grayish brown (2.5Y 5/2) silty clay loam, very dark grayish brown (2.5Y 3/2) moist; moderate medium granular structure; contains a thin stratification; friable; common fine and few large roots; common fine pores; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--18 to 26 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; moderate medium granular structure; very friable; few roots; slight effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--26 to 40 inches; thinly stratified light gray (2.5Y 7/2) and light brownish gray (2.5Y 6/2) very fine sandy loam, dark grayish brown (2.5Y 4/2) moist; massive; very friable; thin strata of fine sandy loam and silty clay loam; slight effervescence; slightly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C4--40 to 46 inches; thinly stratified olive gray (5Y 5/2) silt loam and silty clay loam, olive gray (5Y 4/2) moist; common medium distinct reddish yellow (5YR 7/8) redoximorphic concentrations; massive; friable; slight effervescence; slightly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--46 to 60 inches; pale yellow (5Y 7/3) very fine sandy loam, olive (5Y 4/3) moist; massive; very friable; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/H/HAWSER.json b/inst/extdata/OSD/H/HAWSER.json index 1c01941dbb..ec6cdcc0bc 100644 --- a/inst/extdata/OSD/H/HAWSER.json +++ b/inst/extdata/OSD/H/HAWSER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--37 to 41 inches, (95 to 105 cm); clay, 50 percent olive brown (2.5Y 4/3) and 50 percent very dark grayish brown (2.5Y 3/2) moist; 60 percent clay; massive; firm, very sticky, very plastic; distinct clay films on all faces of peds; 15 percent fine distinct irregular weakly cemented iron-manganese concretions in matrix; 5 percent fine distinct irregular extremely weakly cemented white (2.5YR 8/1), dry, carbonate masses with clear boundaries in matrix; slight effervescence; neutral, pH 7.2 by Phenol red; clear wavy boundary (horizon thickness ranges from 5 to 15 cm, 2 to 6 inches)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk2--41 to 59 inches, (105 to 152 cm); clay, 50 percent very dark grayish brown (2.5Y 3/2) and 50 percent olive brown (2.5Y 4/3) moist; 55 percent clay; massive; firm, very sticky, very plastic; 15 percent fine distinct irregular weakly cemented iron-manganese concretions in matrix; 2 percent fine distinct irregular weakly cemented reddish gray (2.5YR 6/1), dry, carbonate nodules with sharp boundaries in matrix and 3 percent medium faint threadlike pale red (2.5YR 7/2), dry, carbonate masses with diffuse boundaries in matrix and 10 percent coarse prominent irregular white (10YR 8/1), dry, carbonate masses with diffuse boundaries in matrix; strong effervescence; neutral, pH 7.2 by Phenol red." diff --git a/inst/extdata/OSD/H/HAYBOURNE.json b/inst/extdata/OSD/H/HAYBOURNE.json index 4fb2978228..720b65dbdb 100644 --- a/inst/extdata/OSD/H/HAYBOURNE.json +++ b/inst/extdata/OSD/H/HAYBOURNE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--107 to 157 cm; light brownish gray (10YR 6/2) coarse sand, dark grayish brown (10YR 4/2) moist; single grain; loose, nonsticky and nonplastic; few very fine roots; many fine and very fine interstitial pores; few spots of slight effervescence; neutral (pH 7.2)" diff --git a/inst/extdata/OSD/H/HAYDEN.json b/inst/extdata/OSD/H/HAYDEN.json index f56906f321..32c7e845bc 100644 --- a/inst/extdata/OSD/H/HAYDEN.json +++ b/inst/extdata/OSD/H/HAYDEN.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--43 to 60 inches; light olive brown (2.5Y 5/4) loam; few fine faint grayish brown (2.5Y 5/2) and light olive brown (2.5Y 5/6) mottles; massive; friable; and 5 percent coarse fragments; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/H/HAYFORK.json b/inst/extdata/OSD/H/HAYFORK.json index 398bba6418..6d43eef21d 100644 --- a/inst/extdata/OSD/H/HAYFORK.json +++ b/inst/extdata/OSD/H/HAYFORK.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--11 to 27 inches; reddish brown (5YR 4/3) silty clay, dark reddish brown (5YR 3/3) moist; moderate coarse prismatic structure parting to strong medium angular blocky; firm, very hard; many fine and very fine roots between peds and few very fine roots in the soil matrix; common fine and very fine, and few medium pores; 10 percent distinct pressure faces; common fine and medium carbonate masses; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bk horizons ranges from 10 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bky1--27 to 41 inches; reddish brown (5YR 5/3) silty clay loam, reddish brown (5YR 4/3) moist; moderate coarse prismatic structure parting to moderate medium angular blocky; firm, very hard; common fine and very fine roots between peds; few fine gypsum crystals; common fine and medium carbonate masses; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bky2--41 to 50 inches; reddish brown (5YR 5/4) silty clay loam, reddish brown (5YR 4/4) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; friable, hard; few fine and very fine roots; common fine and medium gypsum crystals; common fine and medium carbonate masses; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the Bky horizons ranges from 15 to 50 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cyz--50 to 60 inches; 60 percent reddish brown (5YR 5/4) and 40 percent reddish brown (5YR 5/3) faintly stratified silty clay loam, 60 percent reddish brown (5YR 4/4) and 40 percent reddish brown (5YR 4/3) moist; massive; friable, hard; common fine gypsum and other salt crystals; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HEIL.json b/inst/extdata/OSD/H/HEIL.json index e8201a5ae3..14ff136b20 100644 --- a/inst/extdata/OSD/H/HEIL.json +++ b/inst/extdata/OSD/H/HEIL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bg--24 to 38 inches; dark gray (5Y 4/1) silty clay, light gray (5Y 6/1) dry; moderate coarse angular blocky structure; extremely hard, very firm; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 17 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Byg1--38 to 44 inches; dark gray (5Y 4/1) silty clay, light gray (5Y 6/1) dry; weak coarse and fine angular blocky structure; very firm, few fine gypsum crystals; strong effervescence; moderately alkaline; diffuse boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Byg2--44 to 52 inches; olive (5Y 4/3) silty clay, pale olive (5Y 6/3) dry; weak coarse subangular blocky structure; very firm; common gypsum crystals; strong effervescence; strongly alkaline; gradual boundary. (Combined Byg horizons 0 to 30 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--52 to 60 inches; olive (5Y 5/4) silty clay, pale olive (5Y 6/3) dry; many strong brown (7.5YR 5/6) and yellowish brown (10YR 5/6) redox concentrations and gray (5Y 5/1) redox depletions; massive; few large white masses of carbonates; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/H/HEIMDAL.json b/inst/extdata/OSD/H/HEIMDAL.json index e09fbd791b..b0e2500805 100644 --- a/inst/extdata/OSD/H/HEIMDAL.json +++ b/inst/extdata/OSD/H/HEIMDAL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--19 to 34 inches; light yellowish brown (2.5Y 6/3) loam, light olive brown (2.5Y 5/4) moist; weak coarse prismatic structure parting to weak medium and fine subangular blocky; very friable; common threads and nodules of carbonates; violent effervescence; moderately alkaline; gradual boundary. (6 to 25 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--34 to 60 inches; pale yellow (2.5Y 7/3) loam, light olive brown (2.5Y 5/4) moist; few coarse distinct gray (5Y 6/1) redox depletions and a few fine prominent dark yellowish brown (10YR 4/4) redox concentrations; weak subangular blocky and platy structure; few white carbonate nodules; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HEIST.json b/inst/extdata/OSD/H/HEIST.json index 507f78d507..04ae2ba462 100644 --- a/inst/extdata/OSD/H/HEIST.json +++ b/inst/extdata/OSD/H/HEIST.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--66 to 152 cm; light yellowish brown (10YR 6/4) fine sandy loam, yellowish brown (10YR 5/4) moist; massive; slightly hard, very friable, nonsticky, nonplastic; few very fine roots; few very fine and fine tubular pores; moderately effervescent; 15 percent calcium carbonate equivalent; 1 percent gravel; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/H/HEIZER.json b/inst/extdata/OSD/H/HEIZER.json index e84771ebf6..83b60496a3 100644 --- a/inst/extdata/OSD/H/HEIZER.json +++ b/inst/extdata/OSD/H/HEIZER.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 7 inches; dark gray (10YR 4/1) gravelly loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; slightly hard, friable; many fine and medium roots; porous; strong effervescence; mildly alkaline; clear smooth boundary. (6 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--7 to 10 inches; gray (10YR 5/1) very channery loam, dark grayish brown (10YR 4/2) moist; moderate fine granular structure; slightly hard, friable; common fine and medium roots; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 4 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--10 to 14 inches; light brownish gray (10YR 6/2) very channery loam, grayish brown (10YR 5/2) moist; weak fine granular structure; slightly hard, friable; few fine roots; many fragments of limestone from 1 to 6 inches in length; violent effervescence; moderately alkaline; abrupt smooth boundary. (2 to 6 inches thick)" diff --git a/inst/extdata/OSD/H/HEMINGFORD.json b/inst/extdata/OSD/H/HEMINGFORD.json index 5d8c2608f3..86657826fa 100644 --- a/inst/extdata/OSD/H/HEMINGFORD.json +++ b/inst/extdata/OSD/H/HEMINGFORD.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--18 to 25 inches; light brownish gray (2.5Y 6/2) sandy clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, firm; slight effervescence; moderately alkaline; clear smooth boundary. (0 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--25 to 42 inches; light gray (2.5Y 7/2) sandy clay loam, light brownish gray (2.5Y 6/2) moist; weak medium and coarse subangular blocky structure; hard, firm; few hard fine and medium caliche fragments; violent effervescence; moderately alkaline; gradual smooth boundary. (5 to 35 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--42 to 60 inches; pale yellow (2.5Y 8/2) soft sandstone, light gray (2.5Y 7/2) moist; strong effervescence." diff --git a/inst/extdata/OSD/H/HENKIN.json b/inst/extdata/OSD/H/HENKIN.json index ec275aae60..f543ee7c11 100644 --- a/inst/extdata/OSD/H/HENKIN.json +++ b/inst/extdata/OSD/H/HENKIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--21 to 29 inches; light yellowish brown (2.5Y 6/3) sandy loam, olive brown (2.5Y 4/3) moist; weak very coarse and coarse subangular blocky structure parting to weak medium and fine subangular blocky; soft, very friable; common fine concretions and accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--29 to 48 inches; light yellowish brown (2.5Y 6/3) loam, light olive brown (2.5Y 5/3) moist; weak medium and fine subangular blocky structure; soft, very friable; few fine distinct redox concentrations of strong brown (7.5YR 5/8); common lime concretions and accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bk horizons is 9 to 36 inches)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; pale yellow (2.5Y 7/3) stratified loamy sand, loam, and clay loam, light olive brown (2.5Y 5/3) moist; massive; slightly hard, friable; few fine distinct redox concentrations of strong brown (7.5YR 5/6); few fine iron concretions; few fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HENNEPIN.json b/inst/extdata/OSD/H/HENNEPIN.json index ff13bbb85c..4908bb0d7b 100644 --- a/inst/extdata/OSD/H/HENNEPIN.json +++ b/inst/extdata/OSD/H/HENNEPIN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; very dark grayish brown (10YR 3/2) loam, grayish brown (10YR 5/2) dry; moderate fine granular structure; friable; common fine roots; few pebbles; slight effervescence; slightly alkaline; clear smooth boundary. (2 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--4 to 9 inches; dark brown (10YR 4/3) loam; moderate fine subangular blocky structure; friable; common fine roots; common faint very dark grayish brown (10YR 3/2) organic coats on faces of peds; few pebbles; slight effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--9 to 16 inches; dark yellowish brown (10YR 4/4) loam; moderate fine subangular blocky structure; friable; few fine roots; common faint dark brown (10YR 4/3) clay films on vertical faces of peds; few pebbles; slight effervescence; slightly alkaline; clear smooth boundary. (Combined thickness of the Bw horizons is 3 to 16 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--16 to 60 inches; dark brown (7.5YR 4/4) loam; massive; friable; few fine roots; few pebbles; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HENNINGS.json b/inst/extdata/OSD/H/HENNINGS.json index f2bcb4132d..6fc130cba2 100644 --- a/inst/extdata/OSD/H/HENNINGS.json +++ b/inst/extdata/OSD/H/HENNINGS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--27 to 36 inches; light gray (2.5Y 7/2) fine sandy loam, grayish brown (2.5Y 5/2) moist; massive; soft, very friable; few, very fine roots; about 2 percent by volume of soft calcareous sandstone fragments ranging from 1/8 to 1/2 inch in diameter; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--36 to 55 inches; light gray (2.5Y 7/2) loamy fine sand, light brownish gray (2.5Y 6/2) moist; single grain; loose; few very fine roots; about 4 percent by volume of soft calcareous sandstone fragments ranging from 1/8 to 1 inch in diameter; strong effervescence; strongly alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--55 to 60 inches; pale yellow (2.5Y 8/2) weakly cemented fine grained sandstone, light gray (2.5Y 7/2) moist; strong effervescence." diff --git a/inst/extdata/OSD/H/HERAKLE.json b/inst/extdata/OSD/H/HERAKLE.json index b3ae60ace6..60f09091d4 100644 --- a/inst/extdata/OSD/H/HERAKLE.json +++ b/inst/extdata/OSD/H/HERAKLE.json @@ -158,7 +158,7 @@ "cf_class": "very channery", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--8 to 12 inches; light brown (7.5YR 6/4) very channery clay loam, brown (7.5YR 5/4) moist; weak fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common prominent clay films on faces of peds; 36 percent calcium carbonate equivalent in 20 mm and less fraction; 45 percent limestone channers; common medium carbonate concretions on bottom of rock fragments; strong effervescence; moderately alkaline (pH 8.0); clear smooth boundary. (3 to 6 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very channery", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bk--12 to 17 inches; brown (7.5YR 5/2) very channery loam, brown (7.5YR 4/2) moist; weak very fine subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic; 50 percent limestone channers, 5 percent flagstones; 58 percent calcium carbonate equivalent, many coarse carbonate masses in the matrix; many coarse carbonate concretions on bottom of rock fragments; violent effervescence; moderately alkaline (pH 8.2); abrupt irregular boundary. (3 to 10 inches thick)" diff --git a/inst/extdata/OSD/H/HERDCAMP.json b/inst/extdata/OSD/H/HERDCAMP.json index 98750ab65f..3cabf2fa38 100644 --- a/inst/extdata/OSD/H/HERDCAMP.json +++ b/inst/extdata/OSD/H/HERDCAMP.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Azg--0 to 6 inches; very dark gray (5Y 3/1) silty clay, dark gray (5Y 4/1) dry; many dark yellowish brown (10YR 4/4) iron stains, common olive brown (2.5Y 4/4) iron stains, common dark gray (10YR 4/1) mottles; moderate fine granular structure; hard, friable, slightly sticky and plastic; many roots; common fine nests of gypsum and other salts; strong effervescence; moderately alkaline; clear smooth boundary. (3 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cyzg1--6 to 20 inches; very dark gray (5Y 3/1) silty clay, dark gray (5Y 4/1) dry; many dark yellowish brown (10YR 4/4) iron stains, many dark gray (10YR 4/1) mottles; massive; slightly hard, firm, sticky and slightly plastic; common roots; common fine nests of gypsum and other salts; strong effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cyzg2--20 to 60 inches; dark gray (5Y 4/1) silty clay, gray (5Y 5/1) dry; common dark yellowish brown (10YR 4/4) iron stains, many olive brown (2.5Y 4/4) iron stains, common dark gray (N 4/0) mottles; massive; hard, firm, slightly sticky and plastic; common roots to 30 inches, few roots to 45 inches; common nests and striations of gypsum and other salts; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HERMLEIGH.json b/inst/extdata/OSD/H/HERMLEIGH.json index 3d2a74c22c..f0e0c2e74f 100644 --- a/inst/extdata/OSD/H/HERMLEIGH.json +++ b/inst/extdata/OSD/H/HERMLEIGH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 5 inches; dark gray (10YR 4/1) clay, very dark gray (10YR 3/1) moist; moderate fine angular blocky structure; very hard, very firm, very sticky, very plastic; many fine and common medium roots and many very fine roots throughout; 2 percent fine prominent yellowish brown (10YR 5/8), redox concentrations on surfaces along root channels; 1 percent fine spherical carbonate nodules with sharp boundaries throughout; 2 percent rounded quartzite pebbles; very slight effervescence; clear wavy boundary; slightly alkaline. (6 to 13 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--5 to 13 inches; gray (10YR 5/1) clay, dark gray (10YR 4/1) moist; moderate fine and medium prismatic structure parting to moderate fine and medium angular blocky structure; very hard, very firm, very sticky, very plastic; many fine roots and common medium roots and many very fine roots throughout; many very fine tubular pores; 20 percent prominent pressure faces; 2 percent fine distinct olive (5Y 4/4), redox comcentrations on faces of peds; 1 percent fine spherical carbonate nodules with sharp boundaries throughout; very slight effervescence; clear smooth boundary; slightly alkaline. (0 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bss--13 to 32 inches; gray (10YR 5/1) clay, dark gray (10YR 4/1) moist; strong medium and coarse prismatic structure parting to moderate fine and medium angular blocky structure; very hard, very firm, very sticky, very plastic; many fine roots and common medium roots and many very fine roots throughout; common very fine tubular pores; 20 percent prominent slickensides; 2 percent fine prominent black (10YR 2/1), iron manganese masses throughout; 1 percent fine and 1 percent medium spherical carbonate nodules with sharp boundaries throughout; very slight effervescence; clear smooth boundary; slightly alkaline. (15 to 60 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss1--32 to 60 inches; gray (10YR 5/1) clay, dark gray (10YR 4/1) moist; strong coarse and very coarse prismatic structure parting to strong fine, medium and coarse angular blocky structure; very hard, very firm, very sticky, very plastic; common fine roots throughout; common very fine tubular pores; 1 percent prominent sand coats on ped faces and 80 percent prominent slickensides; 5 percent fine spherical carbonate nodules with sharp boundaries throughout; very slight effervescence; gradual smooth boundary; slightly alkaline. (combined thickness of the Bkss horizons is 20 to 60 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss2--60 to 80 inches; gray (10YR 5/1) clay, dark gray (10YR 4/1) moist; strong fine and medium wedge structure and strong fine, medium and coarse angular blocky structure; very hard, very firm, very sticky, very plastic; common fine roots between peds; common very fine tubular pores; 1 percent prominent sand coats on ped faces and 50 percent prominent slickensides; 3 percent fine prominent very dark gray (2.5Y 3/1), redox depletions, and 6 percent fine prominent olive brown (2.5Y 4/4), redox concentrations; 5 percent fine spherical carbonate nodules with sharp boundaries throughout; very slight effervescence; gradual smooth boundary; slightly alkaline." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkss3--80 to 89 inches; gray (10YR 5/1) clay, dark gray (10YR 4/1) moist; moderate fine, medium and coarse angular blocky structure; very hard, very firm, very sticky, very plastic; common very fine roots between peds; common very fine tubular pores; 3 percent prominent sand coats on ped faces and 25 percent prominent slickensides; 6 percent fine prominent very dark gray (2.5Y 3/1), redox depletions, and 9 percent fine prominent olive brown (2.5Y 4/4), redox concentrations; 3 percent fine spherical carbonate nodules with sharp boundaries throughout; very slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/H/HERO.json b/inst/extdata/OSD/H/HERO.json index 1897ad8d43..b48207e4da 100644 --- a/inst/extdata/OSD/H/HERO.json +++ b/inst/extdata/OSD/H/HERO.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw3--24 to 27 inches; dark grayish brown (2.5Y 4/2) gravelly sandy loam; massive; very friable; 30 percent gravel; slight effervescence; common fine and medium distinct dark yellowish brown (10YR 4/4) masses of iron accumulation and grayish brown (2.5Y 5/2) iron depletions; slightly alkaline; clear smooth boundary. (0 to 5 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--27 to 60 inches; grayish brown (2.5Y 5/2) and dark grayish brown (2.5Y 4/2) extremely gravelly sand; few thin lenses of gravelly sandy loam; single grain; loose; 50 percent gravel and 10 percent cobbles; few strong brown (7.5YR 5/6) and gray (N 6/ ) weathered limestone pebbles; few fine and medium distinct light olive brown (2.5Y 5/6) masses of iron accumulation; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/H/HESPER.json b/inst/extdata/OSD/H/HESPER.json index 35ddc9d149..f9775a196f 100644 --- a/inst/extdata/OSD/H/HESPER.json +++ b/inst/extdata/OSD/H/HESPER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Clca--16 to 20 inches; light olive brown (2.5Y 5/3) light silty clay loam, olive brown (2.5Y 4/2) moist; moderate medium and fine blocky structure; hard, friable, sticky, slightly plastic; moderate effervescence; common white nodules of lime; moderately alkaline (pH 8.3); gradual boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2ca--20 to 44 inches; pale olive (5Y 6/3) heavy silt loam, olive gray (5Y 4/2) moist; blocky structure; hard, very friable, slightly sticky, slightly plastic; moderate effervescence; many soft white nodules of lime; moderately alkaline (pH 8.3); gradual boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--44 to 60 inches; olive (5Y 5/3) very fine sandy loam, olive (5Y 4/3) moist; blocky structure; soft, very friable, slightly sticky; moderate effervescence, few seams of lime; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/H/HEYDER.json b/inst/extdata/OSD/H/HEYDER.json index 97e5d0ab47..1d93ef67e2 100644 --- a/inst/extdata/OSD/H/HEYDER.json +++ b/inst/extdata/OSD/H/HEYDER.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--53 to 60 inches; light olive brown (2.5Y 5/4) sandy loam; massive with a few horizontal cleavage planes; very friable; about 8 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/H/HEYDLAUFF.json b/inst/extdata/OSD/H/HEYDLAUFF.json index b2174e06da..e3d807e145 100644 --- a/inst/extdata/OSD/H/HEYDLAUFF.json +++ b/inst/extdata/OSD/H/HEYDLAUFF.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--5 to 11 inches; light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate medium prismatic structure parting to strong fine subangular blocky; very hard, firm, sticky and plastic; few distinct clay films on faces of peds and in pores; common fine roots; common fine tubular pores; strong effervescence; moderately alkaline (pH 8.2); clear smooth boundary. (4 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--11 to 13 inches; very pale brown (10YR 7/4) silty clay loam, dark yellowish brown (10YR 4/4) moist; moderate fine subangular blocky structure; very hard, firm, sticky and plastic; few fine roots; few fine tubular pores; violent effervescence; moderately alkaline (pH 8.3); clear smooth boundary. (2 to 6 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--13 to 37 inches; very pale brown (10YR 7/4) silt loam, very pale brown (10YR 7/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; few fine tubular pores; slight effervescence; moderately alkaline (pH 8.3); clear wavy boundary. (20 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--37 to 48 inches; light gray (2.5Y 7/2) silt loam, light brownish gray (2.5Y 6/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; few fine tubular pores; slight effervescence; moderately alkaline (pH 8.2) gradual wavy boundary. (10 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--48 to 60 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few fine tubular pores; slight effervescence; moderately alkaline (pH 8.2))." diff --git a/inst/extdata/OSD/H/HIBSAW.json b/inst/extdata/OSD/H/HIBSAW.json index af620cb244..550a9c8ada 100644 --- a/inst/extdata/OSD/H/HIBSAW.json +++ b/inst/extdata/OSD/H/HIBSAW.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 20 cm (0 to 8 in); reddish brown (5YR 4/3) silty clay loam, dark reddish brown (5YR 3/3) moist; weak medium platy structure parting to moderate fine granular; hard, firm; many very fine and few fine roots; few very fine pores; exchangeable sodium percentage is 34; slightly effervescence; moderately alkaline; clear smooth boundary. (Thickness of the A horizon is 13 to 30 cm [5 to 12 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--20 to 46 cm (8 to 18 in); reddish brown (5YR 5/4) silt loam, reddish brown (5YR 4/4) moist; weak medium subangular blocky structure parting to moderate medium granular; hard, firm; many very fine and few fine roots; few very fine pores; few fine iron manganese concretions; exchangeable sodium percentage is 46; strongly effervescence; calcareous; strongly alkaline; clear wavy boundary. (Thickness of the Bw horizon is 13 to 36 cm [5 to 14 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ck1--46 to 76 cm (18 to 30 in); red (2.5YR 4/6) silty clay loam; dark red (2.5YR 3/6) moist; massive; hard, firm; thin strata of silt loam; common very fine roots; common very fine and fine pores; common soft masses of calcium carbonate; few fine iron manganese concretions; exchangeable sodium percentage is 39; strongly effervescence; calcareous; strongly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck2--76 to 140 cm (30 to 55 in); stratified light red (2.5YR 6/6) very fine sandy loam, red (2.5YR 5/6) moist; red (2.5YR 5/6) silt loam, red (2.5YR 4/6) moist; and red (2.5YR 5/6) silty clay loam, red (2.5YR 4/6) moist; massive; slightly hard, friable; few fine pores; few very fine roots; few medium iron manganese concretions; exchangeable sodium percentage is 40; strongly effervescence; calcareous; strongly alkaline; abrupt wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ck3--140 to 188 cm (55 to 74 in); stratified reddish brown (5YR 4/4) silty clay, dark reddish brown (5YR 3/4) moist; red (2.5YR 5/6) fine sandy loam, red (2.5YR 4/6) moist; red (2.5YR 4/6) silt loam, dark red (2.5YR 3/6) moist; and red (2.5YR 4/6) silty clay loam, dark red (2.5YR 3/6) moist; massive; very hard, very firm; common fine iron manganese concretions; exchangeable sodium percentage is 33; slightly effervescence; calcareous; strongly alkaline; clear wavy boundary. (Combined thickness of the Ck horizon 0 to 156 cm (0 to 60 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Abk--188 to 244 cm (74 to 96 in); reddish brown (5YR 4/3) silty clay loam; dark reddish brown (5YR 3/3) moist; weak medium subangular blocky structure parting to moderate medium granular; hard, firm; few very fine pores; few fine iron manganese concretions; exchangeable sodium percentage is 31; slightly effervescence; calcareous; moderately alkaline." diff --git a/inst/extdata/OSD/H/HIDATSA.json b/inst/extdata/OSD/H/HIDATSA.json index 22452e914a..443a228adc 100644 --- a/inst/extdata/OSD/H/HIDATSA.json +++ b/inst/extdata/OSD/H/HIDATSA.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--22 to 60 inches; light brownish gray (10YR 6/2) very gravelly sandy loam, grayish brown (10YR 5/2) moist; single grain; loose, nonsticky and nonplastic; few very fine roots; violent effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/H/HIGGINS.json b/inst/extdata/OSD/H/HIGGINS.json index ee86a6da85..7027c30023 100644 --- a/inst/extdata/OSD/H/HIGGINS.json +++ b/inst/extdata/OSD/H/HIGGINS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; dark grayish brown (10YR 4/2) silt loam; light gray (10YR 7/2) dry; weak fine granular structure; soft, very friable; many fine and medium roots; violent effervescence; slightly alkaline; clear smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bky1--3 to 9 inches; light brownish gray (2.5Y 6/2) silt; white (2.5Y 8/1) dry; few fine distinct yellowish brown (10YR 5/6) mottles; weak medium and coarse subangular blocky structure; slightly hard, very friable; common fine roots; many very fine gypsum crystals; violent effervescence; slightly alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bky2--9 to 25 inches; light brownish gray (2.5Y 6/2) silt; white (2.5Y 8/1) dry; few fine distinct yellowish brown (10YR 5/6) mottles; weak medium and coarse subangular blocky structure; slightly hard, very friable; common fine roots; many very fine gypsum crystals; violent effervescence; slightly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bky3--25 to 35 inches; light gray (2.5Y 7/2) silt; white (2.5Y 8/1) dry; few fine faint yellowish brown (10YR 5/6) mottles; weak medium and coarse subangular blocky structure; slightly hard, very friable; few fine roots; many fine gypsum crystals; violent effervescence; slightly alkaline; gradual smooth boundary. (Combined Bky horizons is 10 to 40 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--35 to 60 inches; light brownish gray (2.5Y 6/2) with streaks of gray (N 6/0) silt; light gray (2.5Y 7/2 and N 7/0) dry; massive; slightly hard; very friable; many fine gypsum crystals; slightly alkaline; strong effervescence; gradual smooth boundary." diff --git a/inst/extdata/OSD/H/HIGHLONESOME.json b/inst/extdata/OSD/H/HIGHLONESOME.json index 06072883eb..2a1165f4e3 100644 --- a/inst/extdata/OSD/H/HIGHLONESOME.json +++ b/inst/extdata/OSD/H/HIGHLONESOME.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "An--0 to 12 inches; brown (7.5YR 5/3) broken face loam, weak red (7.5R 4/3) broken face, moist; 40 percent sand; 34 percent silt; 26 percent clay; weak thin platy structure, and weak fine subangular blocky structure; very friable, soft, noncemented, slightly sticky, moderately plastic; many fine roots throughout; many fine irregular pores; carbonate, finely disseminated throughout and salt, finely disseminated throughout; electrical conductivity of 2.1 mmhos/cm by ec meter, saturated paste, very slightly saline; violent effervescence, by HCl, 1 normal; strongly alkaline, pH 8.6, pH meter; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bknz1--12 to 32 inches; light gray (7.5YR 7/1) broken face clay loam, pinkish gray (7.5YR 6/2) broken face, moist; 30 percent sand; 37 percent silt; 33 percent clay; moderate fine granular structure; friable, slightly hard, noncemented, moderately sticky, moderately plastic; many fine roots throughout; many fine irregular pores; carbonate, finely disseminated throughout and salt, finely disseminated throughout and 7 percent fine irregular carbonate masses in matrix; electrical conductivity of 4.6 mmhos/cm by ec meter, saturated paste, slightly saline; strong effervescence, by HCl, 1 normal; very strongly alkaline, pH 9.7, pH meter; diffuse smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bknz2--32 to 61 inches; pinkish gray (7.5YR 7/2) broken face clay loam, light gray (7.5YR 7/1) broken face, moist; 30 percent sand; 35 percent silt; 35 percent clay; weak very fine subangular blocky structure; firm, moderately hard, noncemented, moderately sticky, moderately plastic; many fine irregular pores; carbonate, finely disseminated throughout and salt, finely disseminated throughout and 10 percent fine irregular carbonate masses in matrix; electrical conductivity of 4.4 mmhos/cm by ec meter, saturated paste, slightly saline; strong effervescence, by HCl, 1 normal; very strongly alkaline, pH 9.7, pH meter." diff --git a/inst/extdata/OSD/H/HIGHMORE.json b/inst/extdata/OSD/H/HIGHMORE.json index fec9598ed8..b03e9a67b9 100644 --- a/inst/extdata/OSD/H/HIGHMORE.json +++ b/inst/extdata/OSD/H/HIGHMORE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 25 inches; light yellowish brown (2.5Y 6/3) silty clay loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; common medium and fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--25 to 40 inches; light yellowish brown (2.5Y 6/3) silt loam, light olive brown (2.5Y 5/3) moist; weak coarse subangular blocky structure; slightly hard, friable; common medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons is 6 to 35 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--40 to 49 inches; light yellowish brown (2.5Y 6/3) silt loam, light olive brown (2.5Y 5/3) moist; massive; slightly hard, friable; few fine accumulations and few medium concretions of carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--49 to 60 inches; light yellowish brown (2.5Y 6/3) silt loam, light olive brown (2.5Y 5/3) moist; common light gray (2.5Y 7/1) mottles; massive; slightly hard, friable; few fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HIHIMANU.json b/inst/extdata/OSD/H/HIHIMANU.json index 7f25b85660..45c8ff3271 100644 --- a/inst/extdata/OSD/H/HIHIMANU.json +++ b/inst/extdata/OSD/H/HIHIMANU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 7 inches; dark brown (7.5YR 3/3) silty clay loam, dark brown (7.5YR 3/2) dry; strong fine and very fine subangular blocky structure; very hard, firm, sticky and plastic; many coarse, medium and fine roots; few weathered pebbles; slight effervescence with hydrogen peroxide; very strongly acid (pH 5.0); clear smooth boundary. (7 to 10 inches thick)" diff --git a/inst/extdata/OSD/H/HILAIRE.json b/inst/extdata/OSD/H/HILAIRE.json index 66ba18b837..d0d70e8a59 100644 --- a/inst/extdata/OSD/H/HILAIRE.json +++ b/inst/extdata/OSD/H/HILAIRE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--15 to 19 inches; dark grayish brown (2.5Y 4/2) loamy fine sand; common medium distinct light olive brown (2.5Y 5/4) redoximorphic concentrations; single grain; loose; about 5 percent gravel; slight effervescence; slightly alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--34 to 58 inches; olive gray (5Y 4/2) clay; common medium distinct very dark gray (5Y 3/1) redoximorphic depletions and common medium prominent light olive brown (2.5Y 5/4) redoximorphic concentrations; weak fine and medium angular blocky structure; firm; common medium irregular masses and filaments of lime; about 10 percent gravel; slight effervescence; slightly alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2CBk--58 to 80 inches; olive gray (5Y 4/2) clay; common medium prominent light olive brown (2.5Y 5/4) and common medium prominent dark yellowish brown (10YR 4/6) redoximorphic concentrations; massive; firm; white (10YR 8/1) common medium and coarse irregular masses of lime; about 2 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HILGRAVE.json b/inst/extdata/OSD/H/HILGRAVE.json index 9f06d31c72..06428e8061 100644 --- a/inst/extdata/OSD/H/HILGRAVE.json +++ b/inst/extdata/OSD/H/HILGRAVE.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--66 to 102 cm (26 to 40 in); red (2.5YR 5/6) gravelly loamy sand, (2.5YR 4/6) moist; massive; soft, very friable; few very fine roots and pores; contains 30 percent siliceous gravel, by volume, in upper part grading to 52 percent in lower part; few very fine films and threads of calcium carbonate; some pebbles have thin coatings of calcium carbonate; strong effervescence, moderately alkaline; abrupt wavy boundary. (Thickness is 15 to 46 cm [6 to 18 in])." diff --git a/inst/extdata/OSD/H/HILMOE.json b/inst/extdata/OSD/H/HILMOE.json index afff0e9966..8102282f27 100644 --- a/inst/extdata/OSD/H/HILMOE.json +++ b/inst/extdata/OSD/H/HILMOE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure parting to weak medium granular; hard, firm, sticky and plastic; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--5 to 11 inches; grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; hard, firm, sticky and plastic; strong effervescence; slightly alkaline; clear smooth boundary. (Combined A horizons 10 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--11 to 25 inches; grayish brown (10YR 5/2) silty clay, dark grayish brown (10YR 4/2) moist; weak medium and coarse subangular blocky structure in some strata and weak medium granular structure in others; hard, firm, sticky and plastic; common layers (less than 1/8 inch thick) of light brownish gray (2.5Y 6/2); strong effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--25 to 60 inches; light brownish gray (2.5Y 6/2) loam and silt loam stratified with thin layers of very fine sandy loam, loamy fine sand, and clay loam, dark grayish brown (2.5Y 4/2) moist; common fine distinct yellowish brown (10YR 5/6) and dark yellowish brown (10YR 3/6) redox concentrations; massive, slightly hard, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HILOLO.json b/inst/extdata/OSD/H/HILOLO.json index f73638216c..7de51ae707 100644 --- a/inst/extdata/OSD/H/HILOLO.json +++ b/inst/extdata/OSD/H/HILOLO.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A12--2 to 7 inches; black (10YR 2/1) loamy sand; weak medium granular structure; very friable; few fine, medium and coarse roots; weak effervescence with dilute HCL; mildly alkaline, calcareous; gradual wavy boundary. (4 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B21tgca--7 to 12 inches; dark gray (10YR 4/1) fine sandy loam with common medium fine very dark gray (10YR 3/1) mottles and common medium distinct gray (10YR 5/1) calcium carbonate nodules; weak medium subangular blocky structure; friable; few medium and large roots; sand grains bridged and coated with clay; strong effervescence with dilute HCL; moderately alkaline, calcareous; gradual wavy boundary. (3 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B22tgca--12 to 28 inches; dark gray (10YR 4/1) sandy clay loam; common medium distinct light gray (10YR 7/1) calcium carbonate nodules; weak medium subangular blocky structure; friable; sand grains bridged and coated with clay; few medium roots; strong effervescence with dilute HCL; moderately alkaline, calcareous; gradual wavy boundary. (8 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "B23tgca--28 to 36 inches; gray (10YR 5/1) fine sandy loam; common medium distinct yellowish brown (10YR 5/8) mottles; common medium distinct light gray (10YR 7/1) calcium carbonate nodules; weak medium subangular blocky structure; friable; sand grains bridged and coated with clay; very few medium roots; strong effervescence with dilute HCL; moderately alkaline, calcareous; abrupt irregular boundary. (3 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B24tgca--36 to 43 inches; olive gray (5Y 4/2) fine sandy loam; few medium distinct very dark grayish brown (10YR 3/2) 1 inch in diameter streaks along vertical root channels; few 3 inch diameter pockets of sticky light gray (10YR 7/2) calcium carbonate; common medium distinct calcium carbonate nodules; weak medium subangular blocky structure; friable; sand grains bridged and coated with clay; very few medium roots; strong effervescence with dilute HCL; moderately alkaline, calcareous; gradual wavy boundary. (0 to 8 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B31g--43 to 50 inches; olive gray (5Y 4/2) fine sandy loam; few fine distinct light gray (10YR 7/1) calcium carbonate nodules; weak medium subangular blocky structure; very friable; very few medium roots moderate effervescence with dilute HCL; strongly alkaline, calcareous; gradual wavy boundary. (0 to 10 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1g--53 to 74 inches; light olive gray (5Y 6/2) loamy fine sand; few fine distinct coatings of very dark gray (10YR 3/1) along root channels; few 2 inch diameter pockets of light gray (10YR 6/1) fine sand; few fine distinct light gray (10YR 7/1) calcium carbonate nodules; massive; very friable; moderate effervescence with dilute HCL; strongly alkaline, calcareous; gradual wavy boundary. (10 to 30 inches thick)" @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2g--74 to 80 inches; gray (5Y 5/1) fine sandy loam; many medium distinct light gray (10YR 6/1) mottles; few fine distinct light gray (10YR 7/1) calcium carbonate nodules; massive; very friable; moderate effervescence with dilute HCL; strongly alkaline, calcareous." diff --git a/inst/extdata/OSD/H/HINKLE.json b/inst/extdata/OSD/H/HINKLE.json index f1d15805ab..1f99bad3fa 100644 --- a/inst/extdata/OSD/H/HINKLE.json +++ b/inst/extdata/OSD/H/HINKLE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--152 to 183 cm (60 to 72 in) red (2.5YR 5/6) clay, red (2.5YR 4/6) moist; massive; very hard, very firm; moderately effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/H/HISLE.json b/inst/extdata/OSD/H/HISLE.json index cb3fe5d059..73c4ccb558 100644 --- a/inst/extdata/OSD/H/HISLE.json +++ b/inst/extdata/OSD/H/HISLE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btn2--2 to 9 inches; light brownish gray (2.5Y 6/2) clay, grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to strong medium and fine blocky; very hard, firm, sticky and plastic; slight effervescence; strongly alkaline; gradual wavy boundary. (4 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn3--9 to 13 inches; pale olive (5Y 6/3) clay, olive (5Y 5/3) moist; moderate medium and fine blocky structure; very hard, firm, sticky and plastic; slight effervescence; moderately alkaline; clear wavy boundary. (0 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz--13 to 20 inches; light gray (2.5Y 7/2) clay, olive (5Y 5/3) moist; few faint yellowish brown (10YR 5/6) mottles; weak medium and fine subangular blocky structure; very hard, firm, sticky and plastic; many small pebbles and fragments of shale; few fine dark concretions (Fe and Mn oxides); common fine threads and accumulations of carbonate and salt; strong effervescence; moderately alkaline; clear wavy boundary. (4 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--20 to 26 inches; gray (5Y 6/1) and light olive gray (5Y 6/2) clay, very dark gray (5Y 3/1) and olive gray (5Y 4/2) moist; common medium distinct dark yellowish brown (10YR 4/4) and yellowish brown (10YR 5/6) mottles; fine earth is massive; hard, firm, sticky; 50 to 70 percent by volume of fragments of shale; few fine accumulations of carbonate and salt; strong effervescence; moderately alkaline; clear wavy boundary." diff --git a/inst/extdata/OSD/H/HODDEN.json b/inst/extdata/OSD/H/HODDEN.json index 8e032d5a17..5a4faab9a3 100644 --- a/inst/extdata/OSD/H/HODDEN.json +++ b/inst/extdata/OSD/H/HODDEN.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--16 to 32 inches; pinkish white (7.5YR 8/2) very gravelly sandy loam, pink (7.5YR 7/4) moist; massive; slightly hard, very friable, slightly sticky and nonplastic; calcium carbonates disseminated and in many large soft masses; violent effervescence; 45 percent gravel, 10 percent cobbles; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bk4--44 to 60 inches; pinkish gray (7.5YR 7/2) extremely gravelly loamy sand, brown (7.5YR 5/2) moist; single grain; loose, nonsticky and nonplastic; coatings of calcium carbonate on undersides of rock fragments; slight effervescent; 65 percent gravel, 5 percent cobbles; moderately alkaline (pH 8.0). (0 to 24 inches thick)" diff --git a/inst/extdata/OSD/H/HODGE.json b/inst/extdata/OSD/H/HODGE.json index c768704205..a61dfe019c 100644 --- a/inst/extdata/OSD/H/HODGE.json +++ b/inst/extdata/OSD/H/HODGE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; dark brown (10YR 3/3) loamy fine sand, grayish brown (10YR 5/2) dry; single grain; loose; slight effervescence; mildly alkaline; abrupt smooth boundary. (3 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--7 to 20 inches; brown (10YR 5/3) fine sand thinly stratified with lenses of loamy fine sand; single grain; loose; slight effervescence; mildly alkaline; abrupt smooth boundary. (0 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--20 to 24 inches; thinly stratified dark grayish brown (10YR 4/2) very fine sandy loam and loamy fine sand; massive; friable; common fine prominent yellowish red (5YR 4/6) stains along root channels and lenses; slight effervescence; mildly alkaline; abrupt smooth boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--24 to 27 inches; brown (10YR 5/3) loamy fine sand thinly stratified with lenses of fine sand; single grain; loose; common fine prominent yellowish red (5YR 4/6) stains along root channels and lenses; slight effervescence; mildly alkaline; clear smooth boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--27 to 60 inches; grayish brown (10YR 5/2) fine sand with strata of loamy fine sand; single grain; loose; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/H/HOECKERS.json b/inst/extdata/OSD/H/HOECKERS.json index 9f81aee69f..6edb320b01 100644 --- a/inst/extdata/OSD/H/HOECKERS.json +++ b/inst/extdata/OSD/H/HOECKERS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "^Aseg--0 to 28 centimeters (0 to 11 inches); very dark gray (N 3/), very shelly sandy clay loam; massive; 50 percent flat rounded weakly cemented shell fragments; rapid color change and slight effervescence with 3 and 30 percent hydrogen peroxide; electrical conductivity of 20.0 dS/m; moderately alkaline; gradual boundary. (4 to 28 centimeters, 2 to 11 inches thick)" diff --git a/inst/extdata/OSD/H/HOFFLAND.json b/inst/extdata/OSD/H/HOFFLAND.json index 97bf1bf030..25e7301278 100644 --- a/inst/extdata/OSD/H/HOFFLAND.json +++ b/inst/extdata/OSD/H/HOFFLAND.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak1--0 to 10 centimeters (1 to 4 inches); very dark grayish brown (10YR 3/2) fine sandy loam, gray (10YR 5/1) dry; weak fine granular structure; very friable, soft; common very fine and fine roots; violent effervescence; finely disseminated carbonate throughout; 23 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak2--10 to 18 centimeters (4 to 7 inches); very dark grayish brown (10YR 3/2) fine sandy loam, gray (10YR 6/1) dry; weak medium subangular blocky structure parting to weak fine granular; friable, soft; common fine and very fine roots; violent effervescence; finely disseminated carbonate throughout; 33 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary. [Combined thickness of the Ak horizon is 15 to 23 centimeters (6 to 9 inches) thick]" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ACk1--18 to 23 centimeters (7 to 9 inches); grayish brown (10YR 5/2) fine sandy loam, light brownish gray (10YR 6/2) dry; weak medium subangular blocky structure; very friable, soft; few very fine roots; violent effervescence; finely disseminated carbonate throughout; 12 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ACk2--23 to 28 centimeters (9 to 11 inches); dark grayish brown (10YR 4/2) fine sandy loam, gray (10YR 6/1) dry; weak medium subangular blocky structure; friable, slightly hard; few very fine roots; violent effervescence; finely disseminated carbonate throughout; 18 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary. [Combined thickness of the ACk horizon is 0 to 41 centimeters (0 to 16 inches) thick]" diff --git a/inst/extdata/OSD/H/HOLDER.json b/inst/extdata/OSD/H/HOLDER.json index a8470b797b..eaf4668437 100644 --- a/inst/extdata/OSD/H/HOLDER.json +++ b/inst/extdata/OSD/H/HOLDER.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--127 to 200 centimeters (50 to 80 inches); very pale brown (10YR 7/3) silt loam, pale brown (10YR 6/3) moist; few fine faint strong brown (7.5YR 5/6) moist mottles; weak coarse prismatic structure; soft, very friable; soft masses of calcium carbonate accumulations; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOLDINGFORD.json b/inst/extdata/OSD/H/HOLDINGFORD.json index 0373571a2f..5162087a97 100644 --- a/inst/extdata/OSD/H/HOLDINGFORD.json +++ b/inst/extdata/OSD/H/HOLDINGFORD.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--37 to 60 inches; yellowish brown (10YR 5/4) sandy loam; massive; friable; about 10 percent coarse fragments; few soft masses of lime; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOLDREGE.json b/inst/extdata/OSD/H/HOLDREGE.json index 54397cc50e..0b429e8a52 100644 --- a/inst/extdata/OSD/H/HOLDREGE.json +++ b/inst/extdata/OSD/H/HOLDREGE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--30 to 80 inches; very pale brown (10YR 7/4) silt loam, pale brown (10YR 6/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; soft, very friable; violent effervescence; few soft white accumulations of carbonate and some cleavage planes coated with free carbonates; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOLMQUIST.json b/inst/extdata/OSD/H/HOLMQUIST.json index 96a9f20f4b..da65dd5406 100644 --- a/inst/extdata/OSD/H/HOLMQUIST.json +++ b/inst/extdata/OSD/H/HOLMQUIST.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Az--0 to 8 inches; finely stratified loam, dark gray (10YR 4/1) dry; weak medium subangular blocky structure parting to moderate medium granular; slightly hard, friable; many fine roots; common fine nests of salt; strong effervescence; moderately alkaline; clear wavy boundary. (6 to 20 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cz1--8 to 17 inches; very dark grayish brown (2.5Y 3/2) loam stratified with thin lenses of fine sandy loam, grayish brown (2.5Y 5/2) dry; few fine prominent yellowish brown (10YR 5/6) redox concentrations; massive; slightly hard, friable; common fine roots; many fine nests of salt; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cz2--17 to 26 inches; dark grayish brown (2.5Y 4/2) sandy loam stratified with thin lenses of loamy fine sand, grayish brown (2.5Y 5/2) dry; common fine distinct dark yellowish brown (10YR 4/6) redox concentrations; massive; slightly hard, very friable; few fine roots; common fine nests of salt; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Czg--26 to 46 inches; very dark gray (5Y 3/1) and black (5Y 2.5/1) loam, gray (5Y 5/1) and dark gray (5Y 4/1) dry; common fine and medium prominent dark yellowish brown (10YR 3/6) redox concentrations; massive; hard, friable, slightly sticky and slightly plastic; few fine roots; few fine nests of salt; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--46 to 60 inches; dark gray (5Y 4/1) sandy loam stratified with lenses of coarse sand, gray (5Y 6/1) dry; many fine prominent dark yellowish brown (10YR 3/6) redox concentrations; massive; hard, firm, sticky and plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOLOMUA.json b/inst/extdata/OSD/H/HOLOMUA.json index e4c14407da..dc3af0c49c 100644 --- a/inst/extdata/OSD/H/HOLOMUA.json +++ b/inst/extdata/OSD/H/HOLOMUA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.6, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap1--0 to 2 inches; dark reddish brown (2.5YR 3/4) moist and dry silt loam; weak very fine granular structure; soft, very friable, slightly sticky and slightly plastic; many roots; violent effervescence with hydrogen peroxide; medium acid (pH 5.6); gradual smooth boundary. (2 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.8, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--2 to 9 inches; dark reddish brown (2.5YR 3/4) silt loam, dark red (2.5YR 3/6) dry; weak medium and coarse subangular blocky structure parting into weak fine granular; slightly hard, very friable, slightly sticky and slightly plastic; common roots; many interstitial pores; common black manganese stains; violent effervescence with hydrogen peroxide; medium acid (pH 5.8); clear wavy boundary. (5 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B21--9 to 20 inches; dark reddish brown (2.5YR 3/4) silt loam, dark red (2.5YR 3/6) dry; weak coarse prismatic structure parting into weak medium and coarse subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; common roots; many very fine and few fine tubular pores; violent effervescence with hydrogen peroxide; neutral (pH 6.6); gradual wavy boundary. (6 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B22--20 to 26 inches; dark reddish brown (2.5YR 3/4) moist and dry silty clay loam; weak coarse prismatic structure parting into moderate fine and medium subangular blocky; hard, friable, sticky and plastic; common roots; many very fine abd fine tubular pores; violent effervescence with hydrogen peroxide; neutral (pH 6.7); clear smooth boundary. (5 to 6 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B23--26 to 38inches; dark reddish brown (2.5YR 3/4) moist and dry silty clay loam; moderate very fine subangular blocky structure; hard, friable, sticky and plastic; few roots; most of which are along vertical cleavage plans; many very fine pores; few glazed patches; many very fine black concretions; initially gritty when rubbed; firm in place; slight effervescence with hydrogen peroxide; neutral (pH 6.8); gradual wavy boundary. (11 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "IIB24b--38 to 44 inches; dark reddish brown (5YR 3/4) silty clay loam, yellowish red (5YR 4/6) dry; strong very fine subangular blocky structure; hard, friable, sticky and plastic; few roots; many very fine tubular pores; few glazed patches; gritty feeling due to many hard earthy lumps that break down on rubbing; firm in place; slight effervescence with hydrogen peroxide; neutral (pH 6.8); gradual wavy boundary. (5 to 7 inches thick)" diff --git a/inst/extdata/OSD/H/HOLT.json b/inst/extdata/OSD/H/HOLT.json index 86a8be7828..f1ec193086 100644 --- a/inst/extdata/OSD/H/HOLT.json +++ b/inst/extdata/OSD/H/HOLT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cr1--22 to 27 inches; white (10YR 8/1) weathered soft sandstone; gray (10YR 6/1) moist; crushing easily to loamy fine sand, slight effervescence; moderately alkaline; abrupt wavy boundary." diff --git a/inst/extdata/OSD/H/HOLTLE.json b/inst/extdata/OSD/H/HOLTLE.json index 3d0eb90479..9f798f0c59 100644 --- a/inst/extdata/OSD/H/HOLTLE.json +++ b/inst/extdata/OSD/H/HOLTLE.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bqk1--46 to 74 cm; pale brown (10YR 6/3) paragravelly loam, dark brown (10YR 3/3) moist; massive; hard, friable, slightly sticky, and slightly plastic; few very fine and fine roots; few coarse tubular pores and many very fine and fine interstitial and tubular pores; about 30 percent very hard, firm, brittle distinct very pale brown (10YR 8/2) cylindrical silica and calcium carbonate cemented durinodes 1 to 3 cm in diameter; strongly effervescent around durinodes and noneffervescent in the matrix; slightly alkaline (pH 7.6); abrupt smooth boundary. (15 to 50 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqk2--74 to 152 cm; pale brown (10YR 6/3) paragravelly loam, brown (10YR 4/3) moist; massive; very hard, firm to friable, nonsticky and slightly plastic; no roots observed; common very fine and fine interstitial, and few very fine and fine tubular pores; 15 percent fine and medium very hard, firm, brittle distinct very pale brown (10YR 8/2) cylindrical silica and calcium carbonate cemented durinodes; strongly effervescent around durinodes and noneffervescent in the matrix; strongly alkaline (pH 8.7)." diff --git a/inst/extdata/OSD/H/HOMME.json b/inst/extdata/OSD/H/HOMME.json index 927c2f74d4..83d2e70f77 100644 --- a/inst/extdata/OSD/H/HOMME.json +++ b/inst/extdata/OSD/H/HOMME.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--24 to 27 inches; light yellowish brown (2.5Y 6/3) silt loam, olive brown (2.5Y 4/3) moist; moderate medium prismatic structure parting to moderate medium and coarse subangular blocky; hard, friable; few medium accumulations of carbonate; strong effervescence; mildly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--27 to 36 inches; light yellowish brown (2.5Y 6/3) silt loam, olive brown (2.5Y 4/3) moist; many medium distinct and prominent olive yellow (2.5Y 6/6) and yellowish brown (10YR 5/6) mottles; moderate medium and coarse subangular blocky structure; hard, friable; thin patchy shiny films on faces of peds; many medium accumulations of carbonate; strong effervescence; mildly alkaline; clear wavy boundary. (Combined Bk horizon is 10 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "2Bk3--36 to 50 inches; light yellowish brown (2.5Y 6/3) loam, olive brown (2.5Y 4/4) moist; many medium distinct and prominent olive yellow (2.5Y 6/6), yellowish brown (10YR 5/6), and gray (2.5Y 6/1) mottles; weak coarse subangular blocky structure; hard, friable; few fine dark accumulations (Fe and Mn oxides); many medium accumulations of carbonate; lamination evident; strong effervescence; mildly alkaline; diffuse wavy boundary. (0 to 40 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--50 to 60 inches; light yellowish brown (2.5Y 6/3) and gray (2.5Y 6/1) clay loam, olive brown (2.5Y 4/4) moist; many medium distinct olive yellow (2.5Y 6/6) and yellowish brown (10YR 5/6) mottles; massive; hard, friable; common fine and medium dark accumulations (Fe and Mn oxides); common medium accumulations of carbonate; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/H/HONOULIULI.json b/inst/extdata/OSD/H/HONOULIULI.json index 7d69e967a9..f373620aff 100644 --- a/inst/extdata/OSD/H/HONOULIULI.json +++ b/inst/extdata/OSD/H/HONOULIULI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.9, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 15 inches; dark reddish brown (5YR 3/2) moist and dry clay; moderate medium and fine granular atructure; hard, firm, very sticky and very plastic; common fine roots; common fine pores; few black specks; few shiny specks; few light colored sand grains; few black concretions that effervesce with hydrogen peroxide; moderate effervescence with hydrogern peroxide; neutral (pH 6.9); clear smooth boundary. (6 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--48 to 68 inches; dark reddish brown (5YR 3/2) clay, dark reddish brown (5YR 3/3) dry; moderate medium and fine subangular blocky structure; many strong deeply grooved slickensides; hard, friable, very sticky and very plastic; few fine roots between peds; few fine tubular pores; few light colored sand grains; few shiny specks; common black concretions that effervesce with hydrogen peroxide; strong effervescence with hydrogen peroxide; mildly alkaline (PH 7.6)." diff --git a/inst/extdata/OSD/H/HOOLEHUA.json b/inst/extdata/OSD/H/HOOLEHUA.json index f7d078dc4a..15925fd537 100644 --- a/inst/extdata/OSD/H/HOOLEHUA.json +++ b/inst/extdata/OSD/H/HOOLEHUA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 3.9, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 23 centimeters (0 to 9 inches); dark reddish brown (5YR 3/3) silty clay, dark reddish gray (5YR 4/2) dry; cloddy due to tillage, moderate coarse and medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; compacted by agriculture machinery; common roots; few medium and coarse tubular pores; violent effervescence with hydrogen peroxide; extremely acid (pH 3.9); clear smooth boundary. (20 to 23 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 4.4, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--23 to 38 centimeters (9 to 15 inches); dark reddish brown (5YR 3/3) moist and dry silty clay; cloddy, weak coarse and medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few roots; few very fine tubular pores; violent effervescence with hydrogen peroxide; extremely acid (pH 4.4); clear wavy boundary. (10 to 18 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--38 to 53 centimeters (15 to 21 inches); dark reddish brown (5YR 3/3) moist and dry silty clay loam; weak fine and medium subangular blocky structure; slightly hard, very friable, moderately sticky and moderately plastic; few roots; many very fine and fine tubular pores, common medium tubular pores; many very fine black concretions; violent effervescence with hydrogen peroxide; in the upper part thin patchy black coats (2 mm x 5 mm x 1/4 mm) that are coated with reddish brown material do not effervesce with hydrogen peroxide; moderately acid (pH 6.0); clear wavy boundary. (13 to 23 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--53 to 69 centimeters (21 to 27 inches); dark reddish brown (5YR 3/3) moist and dry silty clay; weak fine and medium subangular blocky structure slightly stronger than Bw1 horizon; hard, friable, moderately sticky and moderately plastic; many very fine and fine tubular pores, common medium tubular pores; common black stains in pores; many very fine black concretions; violent effervescence with hydrogen peroxide; slightly acid (pH 6.3); clear wavy boundary. (15 to 18 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bo1--69 to 125 centimeters (27 to 49 inches); dark reddish brown (5YR 3/3, 3/4) moist and dry silty clay; strong very fine subangular blocky structure, few pockets of weak and medium very fine subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; compact in place; common very fine tubular pores; common black stains on faces of peds; almost continuous coatings on peds; many very fine black concretions; common hard earthy lumps break down after prolonged rubbing; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4); gradual wavy boundary. (48 to 66 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 6.2, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bo2--125 to 163 centimeters (49 to 64 inches); dark reddish brown (5YR 3/4) moist and dry silty clay; moderate and strong fine subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; slightly firm in place; common very fine tubular pores; few black stains on faces of peds; common thin films on faces of peds; common very fine black concretions; many hard earth lumps break down after prolonged rubbing; moderate effervescence with hydrogen peroxide; slightly acid (pH 6.2)." diff --git a/inst/extdata/OSD/H/HOOPLITE.json b/inst/extdata/OSD/H/HOOPLITE.json index c24bb4015a..440e526835 100644 --- a/inst/extdata/OSD/H/HOOPLITE.json +++ b/inst/extdata/OSD/H/HOOPLITE.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "ABk--5 to 10 cm; pale brown (10YR 6/3) gravelly loam, brown (10YR 4/3) moist; moderate medium platy structure; soft, very friable, moderately sticky and moderately plastic; common very fine and fine roots; common very fine and fine interstitial and tubular pores; 20 percent gravel and 5 percent cobbles; common fine and medium carbonate coats on undersides of rock fragments; slightly effervescent matrix and strongly effervescent carbonate coats; slightly alkaline (pH 7.8); clear wavy boundary. (0 to 10 cm thick)" diff --git a/inst/extdata/OSD/H/HOOTEN.json b/inst/extdata/OSD/H/HOOTEN.json index 4d2036203f..c0b4dc0ae6 100644 --- a/inst/extdata/OSD/H/HOOTEN.json +++ b/inst/extdata/OSD/H/HOOTEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bqm--13 to 25 cm; light gray (10YR 7/2) cemented material, with thin (0.5 to 2 mm) discontinuous, very pale brown (10YR 8/2) and very pale brown (10YR 7/3) laminae that are mostly horizontally oriented, brown (10YR 5/3) and light brownish gray (10YR 6/2) moist; strong medium platy structure; laminae are extremely hard and very firm while the matrix material is hard, friable, nonsticky and nonplastic; matrix is strongly cemented by silica; common very fine roots matted on the laminae surfaces; common very fine interstitial pores; laminae are violently effervescent and matrix is strongly effervescent; very strongly alkaline (pH 9.2); abrupt smooth boundary. (10 to 23 cm thick)" diff --git a/inst/extdata/OSD/H/HOPDRAW.json b/inst/extdata/OSD/H/HOPDRAW.json index 835964af62..e72cfa4dda 100644 --- a/inst/extdata/OSD/H/HOPDRAW.json +++ b/inst/extdata/OSD/H/HOPDRAW.json @@ -89,7 +89,7 @@ "cf_class": "cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 3 inches; grayish brown (10YR 5/2) cobbly loamy fine sand, very dark grayish brown (10YR 3/2) moist; weak very fine granular structure; loose, very friable; 20 percent by volume of rock fragments; slight effervescence; moderately alkaline; clear wavy boundary. (1 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--3 to 9 inches; pale brown (10YR 6/3) very gravelly loamy fine sand, brown (10YR 4/3) moist; single grain; loose; 35 percent by volume of rock fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (4 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--9 to 14 inches; light gray (10YR 7/2) very gravelly loamy fine sand, grayish brown (10YR 5/2) moist; single grain, loose; 40 percent by volume of rock fragments; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 10 inches)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C3--14 to 44 inches; very pale brown (10YR 8/4) very gravelly loamy fine sand, very pale brown (10YR 7/4) moist; single grain, loose; 45 percent by volume of rock fragments; violent effervescence; moderately alkaline; abrupt wavy boundary." diff --git a/inst/extdata/OSD/H/HORD.json b/inst/extdata/OSD/H/HORD.json index 7d39c95e77..03087a1bcd 100644 --- a/inst/extdata/OSD/H/HORD.json +++ b/inst/extdata/OSD/H/HORD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--120 to 200 centimeters (48 to 80 inches); light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; massive; soft, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HORSETRAP.json b/inst/extdata/OSD/H/HORSETRAP.json index 3af30c90fa..c1045ba730 100644 --- a/inst/extdata/OSD/H/HORSETRAP.json +++ b/inst/extdata/OSD/H/HORSETRAP.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--4 to 8 inches; grayish brown (10YR 5/2) very gravelly clay loam, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; very friable, slightly hard; common fine roots; 5 percent fine irregular carbonate masses; 35 percent fine basalt gravel; thin coatings and pendants of carbonate on rock fragments; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk2--8 to 13 inches; grayish brown (10YR 5/2) very gravelly clay loam, dark grayish brown (10YR 4/2) moist; moderate medium subangular blocky structure; very friable, slightly hard; common fine roots throughout; 5 percent fine irregular carbonate masses throughout; 35 percent fine basalt gravel; thin coatings and pendants of carbonate on rock fragments; strong effervescence; moderately alkaline; abrupt smooth boundary (Combined thickness of the Bk horizon is 8 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--13 inches; basalt bedrock; carbonate coats on surface of bedrock; strong effervescence." diff --git a/inst/extdata/OSD/H/HOTCREEK.json b/inst/extdata/OSD/H/HOTCREEK.json index 596beafb6d..5053573fc1 100644 --- a/inst/extdata/OSD/H/HOTCREEK.json +++ b/inst/extdata/OSD/H/HOTCREEK.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk--5 to 18 cm; light brownish gray (10YR 6/2) very gravelly clay loam, yellowish brown (10YR 5/4) moist; strong fine subangular blocky structure; hard, firm, very sticky and moderately plastic; common very fine, fine and medium roots; many fine and medium interstitial pores; many distinct clay films on faces of peds and on rocks; 50 percent gravel, 5 percent cobbles; strong effervescence; moderately alkaline (pH 8.4); abrupt wavy boundary. (10 to 23 cm thick)" diff --git a/inst/extdata/OSD/H/HOUDEK.json b/inst/extdata/OSD/H/HOUDEK.json index ee5633063c..b6d7677c75 100644 --- a/inst/extdata/OSD/H/HOUDEK.json +++ b/inst/extdata/OSD/H/HOUDEK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--18 to 28 inches; light olive brown (2.5Y 5/3) clay loam, olive brown (2.5Y 4/3) moist; weak medium prismatic structure parting to moderate medium and fine subangular blocky; hard, friable, slightly sticky and slightly plastic; few pebbles; few medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--28 to 40 inches; light yellowish brown (2.5Y 6/3) clay loam, light olive brown (2.5Y 5/3) moist; common medium distinct relic mottles of dark brown (7.5YR 4/4) and common medium faint relic mottles of gray (2.5Y 6/1) moist; weak medium and coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few pebbles; common medium accumulations of carbonate; strong effervescence; moderately alkaline; diffuse boundary. (Combined Bk horizons is 15 to 30 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--40 to 60 inches; light yellowish brown (2.5Y 6/3) clay loam, light olive brown (2.5Y 5/3) moist; few fine faint relic mottles of olive brown (2.5Y 4/4) and dark gray (2.5Y 4/1) moist; weak coarse blocky structure; hard, friable, slightly sticky and slightly plastic; few pebbles; few fine accumulations of carbonate; few fine nests and striations of gypsum in the lower part; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOULA.json b/inst/extdata/OSD/H/HOULA.json index 2d1b2287fa..a557308a3b 100644 --- a/inst/extdata/OSD/H/HOULA.json +++ b/inst/extdata/OSD/H/HOULA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 18 cm (0 to 7 in); brown (10YR 5/3) clay loam, dark brown (10YR 3/3) moist; weak medium prismatic structure parting to moderate medium subangular blocky; hard, friable; few fine roots; common fine and very fine pores; few broken snail shell fragments; few insect tunnels; strong effervescence; moderately alkaline; gradual smooth boundary. (thickness of the A horizon is 15 to 28 cm [6 to in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bk1--18 to 41 cm (7 to 16 in); brown (10YR 5/3) silty clay, dark brown (10YR 3/3) moist; moderate fine subangular blocky structure; hard, friable; few fine roots; common fine and very fine pores; few broken snail shell fragments; few insect tunnels; 11 percent calcium clacium carbonate equivalent; strong effervescence; moderately alkaline; diffuse smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bk2--41 to 81 cm (16 to 32 in); very pale brown (10YR 7/4) silty clay loam, yellowish brown (10YR 5/4) moist; weak fine subangular blocky structure; hard, friable; common fine and very fine pores; 5 percent fine films and threads of calcium carbonate; 20 percent calcium carbonate equivalent; violent effervescence; moderately alkaline; diffuse smooth boundary. (combined thickness of the Bk horizons is 56 to 155 cm [22 to 61 in])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "BCk--81 to 130 cm (32 to 51 in); very pale brown (10YR 8/4) loam, light yellowish brown (10YR 6/4) moist; weak fine subangular blocky structure; very hard, firm; common fine and very fine pores; 10 percent fine films and threads of calcium carbonate; 24 percent calcium carbonate equivalent; violent effervescence; slightly alkaline; diffuse smooth boundary. (thickness of the BCk horizon is 33 to 56 cm [13 to 22in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck--130 to 165 cm (51 to 65 in); very pale brown (10YR 8/4) silt loam, light yellowish brown (10YR 6/4) moist; structureless; very hard, firm; common fine and very fine pores; about 3 percent by volume films and threads of calcium carbonate; 11 percent calcium carbonate equivalent; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOUSTON_BLACK.json b/inst/extdata/OSD/H/HOUSTON_BLACK.json index c49fc29efc..7c1e3c34cd 100644 --- a/inst/extdata/OSD/H/HOUSTON_BLACK.json +++ b/inst/extdata/OSD/H/HOUSTON_BLACK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 20 cm (0 to 8 in); very dark gray (10YR 3/1) clay, black (10YR 2/1), moist; moderate medium granular and moderate fine subangular blocky structure; extremely hard, very firm, very sticky, moderately plastic; fine roots throughout; very fine tubular pores; 5 percent distinct pressure faces on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix; 1 percent 2 to 5-mm shell fragments; 1 percent krotovinas; strong effervescence; moderately alkaline; clear wavy boundary. (Thickness is 15 to 31 cm [6 to 12 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--20 to 61 cm (8 to 24 in); very dark gray (10YR 3/1) clay, black (10YR 2/1), moist; moderate fine angular blocky and moderate very fine angular blocky parts to moderate fine wedge; extremely hard, very firm, very sticky, very plastic; fine roots throughout; very fine tubular pores; 5 percent distinct pressure faces on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix; strong effervescence; moderately alkaline; gradual wavy boundary. (Thickness is 20 to 51 cm [8 to 20 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss1--61 to 97 cm (24 to 38 in); dark gray (10YR 4/1) clay, very dark gray (10YR 3/1), moist; strong coarse wedge structure; extremely hard, very firm, very sticky, very plastic; very fine roots throughout; very fine tubular pores; 50 percent distinct slickensides (pedogenic) on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix; 1 percent fine spherical extremely weakly cemented white (10YR 8/1), dry, carbonate concretions with sharp boundaries in matrix; strong effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss2--97 to 203 cm (38 to 80 in); grayish brown (10YR 5/2) clay, dry dark grayish brown (10YR 4/2), moist; strong coarse angular blocky structure; extremely hard, very firm, very sticky, very plastic; fine roots throughout; very fine tubular pores; 50 percent distinct slickensides (pedogenic) on all faces of peds; 1 percent fine spherical weakly cemented iron-manganese concretions in matrix and 1 percent fine faint irregular brown(10YR 4/3) masses of oxidized iron with clear boundaries in matrix; 1 percent fine spherical extremely weakly cemented white (10YR 8/1), dry, carbonate concretions with sharp boundaries in matrix and 1 percent fine irregular white (10YR 8/1), dry, carbonate masses with sharp boundaries in matrix and 1 percent medium spherical extremely weakly cemented white (10YR 8/1), dry, carbonate concretions with sharp boundaries in matrix; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bkss horizons is 25 to 127 cm [10 to 50 in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkss3--203 to 264 cm (80 to 104 in); gray (10YR 6/1) clay; gray (10YR 5/1); 20 percent coarse distinct irregular light olive brown (2.5Y 5/4) mottles; weak coarse wedge and weak medium wedge structure; extremely hard, very firm, very sticky, very plastic; very fine roots throughout; very fine tubular pores; 50 percent prominent slickensides on all faces of peds; 1 percent fine faint irregular brown (10YR 4/3) masses of oxidized iron with clear boundaries in matrix; 1 percent medium irregular white (10YR 8/1), dry, carbonate masses with sharp boundaries in matrix; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOVEN.json b/inst/extdata/OSD/H/HOVEN.json index 4f588777d2..996bae79f9 100644 --- a/inst/extdata/OSD/H/HOVEN.json +++ b/inst/extdata/OSD/H/HOVEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btnk--18 to 30 inches; very dark grayish brown (2.5Y 3/2) silty clay, dark gray (2.5Y 4/1) dry; weak coarse subangular blocky structure; very hard, firm, sticky and plastic; few distinct clay films on faces of peds; very few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--30 to 46 inches; dark grayish brown (2.5Y 4/2) clay loam, grayish brown (2.5Y 5/2) dry; few fine distinct gray (5Y 5/1) redox depletions; weak coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine accumulations of carbonate; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizon is 0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cyz--46 to 60 inches; dark grayish brown (2.5Y 4/2) clay loam, grayish brown (2.5Y 5/2) dry; massive; hard, friable, slightly sticky and slightly plastic; few fine nests of gypsum crystals and other salts; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HOVERT.json b/inst/extdata/OSD/H/HOVERT.json index ddbc633b26..b32f5eba0c 100644 --- a/inst/extdata/OSD/H/HOVERT.json +++ b/inst/extdata/OSD/H/HOVERT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--14 to 60 inches; light olive brown (2.5Y 5/3) clay, light olive brown (2.5Y 5/4) moist; massive; extremely hard, very firm, very sticky and very plastic; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/H/HOVEY.json b/inst/extdata/OSD/H/HOVEY.json index f49bcc6468..bc38f3ecf0 100644 --- a/inst/extdata/OSD/H/HOVEY.json +++ b/inst/extdata/OSD/H/HOVEY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A1--2 to 5 inches; gray (10YR 5/1) silty clay loam, very dark gray (10YR 3/1) moist; weak medium granular structure; slightly hard, friable, sticky, plastic; many fine roots; common very fine and fine pores; weakly effervescent; strongly alkaline (pH 8.8); clear smooth boundary. (2 to 6 inches thick)" diff --git a/inst/extdata/OSD/H/HOYTVILLE.json b/inst/extdata/OSD/H/HOYTVILLE.json index 14e76e0559..1ca94cb656 100644 --- a/inst/extdata/OSD/H/HOYTVILLE.json +++ b/inst/extdata/OSD/H/HOYTVILLE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Btg3--69 to 107 cm; grayish brown (10YR 5/2) clay; weak medium prismatic structure parting to moderate medium and coarse subangular blocky; firm; few fine roots between peds; common faint gray (10YR 5/1) clay films on faces of peds; common medium prominent yellowish brown (10YR 5/6) masses of iron accumulation in the matrix; common medium distinct black (10YR 2/1) manganese threads in the matrix; 2 percent rock fragments (subrounded igneous, and subangular limestone and shale); slightly effervescent discontinuously at 94 cm; strongly effervescent at 102 cm; slightly alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/H/HUFFTON.json b/inst/extdata/OSD/H/HUFFTON.json index 4bd4f21634..4be12d51e9 100644 --- a/inst/extdata/OSD/H/HUFFTON.json +++ b/inst/extdata/OSD/H/HUFFTON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 7 inches; dark grayish brown (10YR 4/2) silt loam, very dark gray (10YR 3/1) moist; weak very fine granular structure; slightly hard, very friable; common very fine roots; strong effervescence (5 percent calcium carbonate equivalent); slightly alkaline; clear smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--7 to 13 inches; grayish brown (10YR 5/2) and light gray (10YR 7/2) silt loam, very dark grayish brown (10YR 3/2) and grayish brown (10YR 5/2) moist; weak coarse and medium subangular blocky structure; slightly hard, very friable; few very fine roots; common fine pores; few fine nests of gypsum crystals and other salts; common medium and fine accumulations of carbonate; strong effervescence (20 percent calcium carbonate equivalent); moderately alkaline; clear wavy boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz1--13 to 19 inches; light gray (2.5Y 7/2) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse and medium subangular blocky structure; slightly hard, very friable; few very fine roots; many fine pores; many fine nests and gypsum crystals and other salts; few fine accumulations of carbonate; violent effervescence (30 percent calcium carbonate equivalent); moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz2--19 to 30 inches; pale yellow (2.5Y 7/4) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse and medium subangular blocky structure; slightly hard, very friable; few very fine roots; many fine pores; common fine nests and gypsum crystals and other salts; few fine accumulations of carbonate; violent effervescence (18 percent calcium carbonate equivalent); strongly alkaline; gradual wavy boundary. (Combined Bkz horizons is 8 to 20 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--30 to 43 inches; pale yellow (2.5Y 7/4) silt loam, light olive brown (2.5Y 5/4) moist; massive; slightly hard, very friable; varves 1 to 2 mm thick; few fine nests and gypsum crystals and other salts; strong effervescence (10 percent calcium carbonate equivalent); strongly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--43 to 60 inches; light gray (2.5Y 7/2) silt loam, light olive brown (2.5Y 5/4) moist; few fine distinct brownish yellow (10YR 6/6) redox concentrations; massive; soft, very friable; varves 1 to 2 mm thick; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HUGGINS.json b/inst/extdata/OSD/H/HUGGINS.json index 883c2f7dd0..6d9faf195d 100644 --- a/inst/extdata/OSD/H/HUGGINS.json +++ b/inst/extdata/OSD/H/HUGGINS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--26 to 60 inches; very pale brown (10YR 8/3) siltstone, brown (10YR 5/3) moist; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HUMBARGER.json b/inst/extdata/OSD/H/HUMBARGER.json index 8740bf7ad8..f16999eba2 100644 --- a/inst/extdata/OSD/H/HUMBARGER.json +++ b/inst/extdata/OSD/H/HUMBARGER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 56 centimeters (0 to 22 inches); dark grayish brown (10YR 4/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium granular structure; slightly hard, friable; few fine roots; many worm casts; slight effervescence; moderately alkaline; gradual smooth boundary. (51 to 76 centimeters (20 to 30 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--56 to 76 centimeters (22 to 30 inches); grayish brown (10YR 5/2) clay loam, very dark grayish brown (10YR 3/2) moist; weak fine subangular blocky structure; slightly hard, friable; thin strata of slightly less clayey layers; slight effervescence; moderately alkaline; gradual smooth boundary. (0 to 46 centimeters (0 to 18 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--76 to 200 centimeters (30 to 79 inches); light brownish gray (10YR 6/2) clay loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable; thin strata of more clayey and less clayey layers; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/H/HUMDUN.json b/inst/extdata/OSD/H/HUMDUN.json index 9b4c6c47a9..61c66b7c1f 100644 --- a/inst/extdata/OSD/H/HUMDUN.json +++ b/inst/extdata/OSD/H/HUMDUN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkq1--76 to 109 cm; pale brown (10YR 6/3) silt loam, with common medium distinct white (10YR 8/1) carbonate segregations, brown (10YR 4/3) moist; massive; soft, very friable, slightly sticky and slightly plastic; common very fine and few fine roots; common very fine tubular pores; 30 percent 1.9 to 2.5 cm very hard, firm, brittle durinodes; slightly effervescent matrix, strongly effervescent in seams; moderately alkaline (pH 8.4); clear smooth boundary. (15 to 33 cm thick)" diff --git a/inst/extdata/OSD/H/HURLEY.json b/inst/extdata/OSD/H/HURLEY.json index a06074c666..c07c8e79be 100644 --- a/inst/extdata/OSD/H/HURLEY.json +++ b/inst/extdata/OSD/H/HURLEY.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btnkz--9 to 16 inches; dark grayish brown (2.5Y 4/2) clay, very dark grayish brown (2.5Y 3/2) moist; moderate medium and coarse subangular blocky structure; hard, firm; shiny surfaces on faces of peds; common roots; few fine accumulations of carbonate; few fine and medium nests of salts; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--16 to 25 inches; grayish brown (2.5Y 5/2) shaly clay, dark grayish brown (2.5Y 4/2) moist; massive; hard, firm; few roots; 30 percent by volume of fragments of shale; few fine accumulations of carbonate; many fine and medium nests of gypsum and other salts; slight effervescence; slightly alkaline; gradual wavy boundary. (4 to 15 inches thick)" diff --git a/inst/extdata/OSD/H/HUSCHER.json b/inst/extdata/OSD/H/HUSCHER.json index 722b60b576..223922f615 100644 --- a/inst/extdata/OSD/H/HUSCHER.json +++ b/inst/extdata/OSD/H/HUSCHER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ab--52 to 64 centimeters (20 to 25 inches); brown (10YR 5/3) silt loam, brown (10YR 4/3) moist; 24 percent sand; 17 percent clay; weak fine subangular blocky structure; friable; moderately alkaline; strong effervescence; abrupt wavy boundary. (0 to 25 centimeters(0 to 10 inches))." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--64 to 89 centimeters (25 to 35 inches); very pale brown (10YR 7/3) silt loam, pale brown (10YR 6/3) moist; 22 percent sand; 8 percent clay; structureless massive; very friable; 8 percent fine distinct irregular strong brown (7.5YR 4/6), moist, masses of oxidized iron; moderately alkaline; strong effervescence; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C3--106 to 128 centimeters (42 to 50 inches); light gray (10YR 7/1) stratified fine sand, light gray (10YR 7/2) moist; 86 percent sand; 2 percent clay; structureless single grain; friable; 8 percent fine distinct irregular strong brown (7.5YR 5/6), moist, masses of oxidized iron; strongly alkaline; slight effervescence; abrupt wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C4--128 to 142 centimeters (50 to 56 inches); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; 27 percent sand; 6 percent clay; structureless massive; friable; 10 percent fine and medium distinct irregular strong brown (7.5YR 5/6), moist, masses of oxidized iron; moderately alkaline; slight effervescence; abrupt wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C5--142 to 156 centimeters (50 to 61 inches); very pale brown (10YR 7/3) stratified loamy fine sand, pale brown (10YR 6/3) moist; 84 percent sand; 3 percent clay; structureless single grain; loose; 10 percent medium and coarse distinct irregular strong brown (7.5YR 5/6), moist, masses of oxidized iron; strongly alkaline; slight effervescence; abrupt wavy boundary." diff --git a/inst/extdata/OSD/H/HUSSA.json b/inst/extdata/OSD/H/HUSSA.json index abc4cc9f0c..7c74006d62 100644 --- a/inst/extdata/OSD/H/HUSSA.json +++ b/inst/extdata/OSD/H/HUSSA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A4--50 to 58 cm; black (10YR 2/1) ashy clay loam, dark gray (10YR 4/1) dry; moderate medium and coarse subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few fine roots; many very fine and fine interstitial pores; weakly effervescent; common fine distinct very pale brown (10YR 8/2) lime segregations; moderately alkaline (pH 8.0); clear smooth boundary. (0 to 20 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "diffuse", "topography": "smooth", "narrative": "Ab--76 to 91 cm; black (10YR 2/1) ashy clay loam, very dark gray (10YR 3/1) dry; massive; hard, friable, moderately sticky and moderately plastic; few fine roots; many very fine tubular pores; weakly effervescent; moderately alkaline (pH 8.0); diffuse smooth boundary. (0 to 20 cm thick)" diff --git a/inst/extdata/OSD/H/HYDRO.json b/inst/extdata/OSD/H/HYDRO.json index 14cc87bbb1..5029156849 100644 --- a/inst/extdata/OSD/H/HYDRO.json +++ b/inst/extdata/OSD/H/HYDRO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btkn--21 to 31 inches; light olive brown (2.5Y 5/3) heavy clay loam, olive brown (2.5Y 4/3) moist; weak medium and coarse prismatic structure that separates to moderate medium blocks; very hard, friable, sticky, plastic; few roots; faint patchy clay films; moderate effervescence with common lime nodules; moderately alkaline (pH 8.4); clear boundary. (5 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--31 to 36 inches; light olive brown (2.5Y 5/3) heavy clay loam, olive brown (2.5Y 4/3) moist; weak coarse blocky structure; very hard, friable, sticky, plastic; few roots; moderate effervescence with common soft lime nodules and few nests and seams of gypsum in lower part; moderately alkaline (pH 8.4)." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bky--36 to 51 inches; light olive brown (2.5Y 5/3) clay loam, olive brown (2.5Y 4/3) moist; weak coarse blocky structure; hard, friable, sticky, plastic; very few roots; moderate effervescence with few soft lime segregations and with common segregations of gypsum in seams and nests of crystals; moderately alkaline (pH 8.2); gradual boundary. (0 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC--51 to 60 inches; light olive brown (2.5Y 5/3) clay loam, olive brown (2.5Y 4/3) moist; weak coarse blocky structure; hard, friable, sticky, plastic; moderate effervescence; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/H/HYSHAM.json b/inst/extdata/OSD/H/HYSHAM.json index 8d4f94b904..0968f290cf 100644 --- a/inst/extdata/OSD/H/HYSHAM.json +++ b/inst/extdata/OSD/H/HYSHAM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A1--0 to 3 inches; grayish brown (2.5Y 5/2) loam, very dark grayish brown (2.5Y 3/2) moist; vesicular massive crust as uppermost 1/2 inch with weak thin to thick platy structure below; soft, very friable; slight effervescence; strongly alkaline (pH 9.0); abrupt boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.5, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B2--3 to 8 inches; light yellowish brown (2.5Y 6/3) loam, olive brown (2.5Y 4/2) and very dark grayish brown (2.5Y 3/2) moist; weak coarse columnar structure; extremely hard, friable, slightly sticky, slightly plastic; column faces have very thin coatings that make them very slippery when wet; insides of columns are slightly sticky and slightly plastic; strong effervescence; very strongly alkaline (pH 9.5); clear boundary. (0 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.5, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--8 to 12 inches; light yellowish brown (2.5Y 6/3) loam, olive brown (2.5Y 4/3) and very dark grayish brown (2.5Y 3/2) moist; weak coarse blocky structure; very hard, very friable, strong effervescence; very strongly alkaline (pH 9.5). (1 to 4 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.3, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--12 to 60 inches; light yellowish brown (2.5Y 6/3) stratified loam, very fine sandy loam and silt loam; light olive brown (2.5Y 5/3) moist; massive; slightly hard, very friable; strong effervescence; few threads of salt in middle part; very strongly alkaline (pH 9.3)." diff --git a/inst/extdata/OSD/I/IAO.json b/inst/extdata/OSD/I/IAO.json index cc2128a615..f6c10cfe34 100644 --- a/inst/extdata/OSD/I/IAO.json +++ b/inst/extdata/OSD/I/IAO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 38 centimeters (0 to 15 inches); dark brown (10YR 3/3) clay, dark gray (10YR 4/1) dry; massive due to tillage; very hard, firm, very sticky and very plastic; many roots; many fine pores; few cracks up to 1/4 inch wide; many weathered sand grains of basalt; strong effervescence with hydrogen peroxide; neutral (pH 7.0); gradual smooth boundary. (31 to 46 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw1--38 to 64 centimeters (15 to 25 inches); very dark brown (10YR 2/2) clay, very dark grayish brown (10YR 3/2) when rubbed, dark brown (10YR 3/3) dry; weak medium and coarse subangular blocky structure; very hard, firm, very sticky and very plastic; very hard, firm; many roots; many very fine pores; many weathered sand grains of basalt; few basalt pebbles; strong effervescence with hydrogen peroxide; neutral (7.1); gradual smooth boundary. (20 to 27 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--64 to 122 centimeters (25 to 48 inches); dark brown (10YR 3/3), moist and dry, clay; moderate medium and coarse subangular blocky structure; very hard, firm, very sticky and very plastic; compact in place; few fine roots; many fine pores; pressure faces on all face of peds; strong effervescence with hydrogen peroxide; neutral (pH 6.8); gradual smooth boundary. (51 to 69 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC--122 to 152 centimeters (48 to 60 inches); very dark grayish brown (10YR 3/2) silty clay, dark brown (10YR 3/3) dry; massive; hard, firm, moderately sticky and moderately plastic; few roots; many fine and medium pores; many weathered sand grains and pebbles of basalt; strong effervescence with hydrogen peroxide; neutral (pH 6.8)." diff --git a/inst/extdata/OSD/I/ICEETAX.json b/inst/extdata/OSD/I/ICEETAX.json index 1a5f4ca13f..fc041ca45c 100644 --- a/inst/extdata/OSD/I/ICEETAX.json +++ b/inst/extdata/OSD/I/ICEETAX.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bqk--66 to 152 cm; light yellowish brown (10YR 6/4) extremely cobbly sandy loam, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, friable, nonsticky and nonplastic; 30 percent moderately cemented by silica that is slightly hard and extremely hard, and friable and very firm; common very fine interstitial pores; 5 percent stones, 30 percent cobbles and 30 percent gravel; strong effervescence; moderately alkaline, (pH 8.3)" diff --git a/inst/extdata/OSD/I/IGERT.json b/inst/extdata/OSD/I/IGERT.json index aee279711d..a366839e78 100644 --- a/inst/extdata/OSD/I/IGERT.json +++ b/inst/extdata/OSD/I/IGERT.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bkq--58 to 99 cm; very pale brown (10YR 7/3) discontinuous weakly cemented very gravelly loam, yellowish brown (10YR 5/4) moist; massive; hard, firm, nonsticky and nonplastic; few fine and very fine roots; common fine and very fine interstitial pores; 50 percent gravel, 5 percent cobbles; strong effervescence; moderately alkaline (pH 7.9); abrupt irregular boundary. (10 to 66 cm thick)" diff --git a/inst/extdata/OSD/I/IHLEN.json b/inst/extdata/OSD/I/IHLEN.json index 586e64cf58..0e02e89cf6 100644 --- a/inst/extdata/OSD/I/IHLEN.json +++ b/inst/extdata/OSD/I/IHLEN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--29 to 31 inches; light olive brown (2.5Y 5/4) silt loam, dark grayish brown (10YR 4/2) moist; weak medium and coarse subangular blocky structure; slightly hard, friable; few hard and soft white limy masses; slight effervescence; moderately alkaline; abrupt smooth boundary. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/I/IMLAY.json b/inst/extdata/OSD/I/IMLAY.json index 6ac3651a66..d6c46ce747 100644 --- a/inst/extdata/OSD/I/IMLAY.json +++ b/inst/extdata/OSD/I/IMLAY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; light brownish gray (10YR 6/2) clay loam, dark grayish brown (10YR 4/2) moist; weak fine subangular blocky and granular structure with a weak thin crust in upper inch; soft, very friable; 5 percent by volume fragments of siltstone; strong effervescence; moderately alkaline; clear smooth boundary. (2 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--4 to 10 inches; light gray (10YR 7/2) very gravelly clay loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure parting to weak fine subangular blocky; hard, friable; about 55 percent by volume fragments of brittle siltstone; strong effervescence; moderately alkaline; gradual smooth boundary. (6 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cr1--10 to 17 inches; light gray (2.5Y 7/2) loosely bedded siltstone having pale brown streaks and coatings; soil fines of clay loam texture fill between the blocky and platy siltstone fragments; massive; fragments of silt stone are hard and brittle but crumble readily moist; few medium and coarse soft accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr2--17 to 26 inches; pinkish gray (7.5YR 6/2) and brown (7.5YR 5/2) siltstone; very hard and brittle but crumbles readily when wetted; faces of fractures are coated with carbonate; few to common fine soft accumulations of carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/I/INDIAHOMA.json b/inst/extdata/OSD/I/INDIAHOMA.json index 06890be9cc..9505109cf3 100644 --- a/inst/extdata/OSD/I/INDIAHOMA.json +++ b/inst/extdata/OSD/I/INDIAHOMA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "AC1--13 to 26 inches; very dark grayish brown (10YR 3/2) clay, very dark brown (10YR 2/2) moist; compound moderate coarse prismatic and moderate medium blocky structure; extremely hard, very firm; slightly darker coatings on surfaces of peds; few calcium carbonate concretions; calcareous; weakly effervescent; moderately alkaline; clear wavy boundary. (6 to 24 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "AC2--26 to 43 inches; dark brown (7.5YR 3/2) clay, very dark brown (7.5YR 2/2) moist; many intersecting slickensides and parallelepiped shaped peds; extremely hard, very firm; few calcium carbonate concretions; calcareous; weakly effervescent; moderately alkaline; clear wavy boundary. (0 to 24 inches thick)" diff --git a/inst/extdata/OSD/I/INDUS.json b/inst/extdata/OSD/I/INDUS.json index c9e0d2f329..c243d8392a 100644 --- a/inst/extdata/OSD/I/INDUS.json +++ b/inst/extdata/OSD/I/INDUS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC--19 to 23 inches; dark gray (5Y 4/1) clay; common medium faint dark grayish brown (2.5Y 4/2), light gray (2.5Y 7/2) and distinct olive brown (2.5Y 4/4) mottles; moderate fine medium and coarse prismatic structure parting to moderate fine and medium angular blocky; very firm; few fine roots; few thin very dark gray (5Y 3/1) and dark gray (5Y 4/1) clay films on faces of peds; common moderately thick very dark gray (5Y 3/1) and gray (5Y 4/1) clay films lining tubular pores and on prism faces; few slickensides; about 5 percent fine rounded soft masses of lime; slight effervescence; moderately alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ckg--23 to 37 inches; olive gray (5Y 5/2) clay; common medium faint olive brown (2.5Y 4/4) mottles; moderate fine, medium, and very coarse prismatic structure that parts to moderate medium angular blocky; firm; few thin dark gray (5Y 4/1) and very dark gray (5Y 3/1) clay films on faces of larger prisms; few 2 to 5 mm lime concretions; about 20 percent light gray (10YR 7/2) large rounded soft lime masses; slight effervescence in matrix, other parts have violent effervescence; moderately alkaline; clear wavy boundary. (0 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--37 to 60 inches; olive gray (5Y 5/2) clay; common medium distinct brown (7.5YR 4/4) and dark yellowish brown (10YR 4/4) mottles; horizontal stratification that breaks to weak fine and medium angular blocks; firm; dark gray (5Y 4/1) in upper parts of plates; strong effervescence; about 8 percent CCE; moderately alkaline." diff --git a/inst/extdata/OSD/I/INFANTRY.json b/inst/extdata/OSD/I/INFANTRY.json index 7a7c5ef52c..f6d1a1c302 100644 --- a/inst/extdata/OSD/I/INFANTRY.json +++ b/inst/extdata/OSD/I/INFANTRY.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; light brown (7.5YR 6/3) crushed, very gravelly sandy loam, brown (7.5YR 4/4) crushed, moist; 12 percent clay; weak medium subangular blocky parts to weak fine granular structure; very friable, slightly hard, slightly sticky, slightly plastic; 50 percent subangular 0.1- to 3-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.1, pH meter 1:1 water; clear smooth boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--2 to 10 inches; light brown (7.5YR 6/3) crushed, extremely cobbly sandy loam, brown (7.5YR 5/4) crushed, moist; 16 percent clay; weak medium subangular blocky and weak fine subangular blocky structure; very friable, slightly hard, slightly sticky, slightly plastic; 100 percent continuous prominent carbonate coats on rock fragments; 35 percent subangular 0.1- to 3.0-inch limestone fragments and 40 percent subangular 3- to 10-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.4, pH meter 1:1 water; abrupt wavy boundary. (6 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkm--10 to 14 inches; white (7.5YR 8/1) crushed; indurated; violent effervescence, by HCl, 1 normal; upper 1/8 inch is laminated; abrupt smooth boundary. (3 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2BCk1--14 to 22 inches; pink (7.5YR 7/3) crushed, extremely gravelly loamy coarse sand, light brown (7.5YR 6/4) crushed, moist; 4 percent clay; single grain; 80 percent continuous prominent carbonate coats on rock fragments; 15 percent subangular 3- to 10-inch limestone fragments and 60 percent subangular 0.1- to 3-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; abrupt smooth boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "3BCk2--22 to 34 inches; pink (7.5YR 7/3) crushed, extremely gravelly sandy clay loam, reddish yellow (7.5YR 6/6) crushed, moist; 22 percent clay; moderate coarse subangular blocky structure; friable, hard, slightly sticky, slightly plastic; 60 percent continuous prominent carbonate coats on rock fragments; 70 percent subangular 0.1- to 3-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; abrupt smooth boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "4BCk3--34 to 52 inches; light brown (7.5YR 6/4) crushed, extremely cobbly loamy sand, strong brown (7.5YR 5/6) crushed, moist; 8 percent clay; single grain; 10 percent discontinuous prominent carbonate coats on rock fragments; 35 percent subangular 0.1- to 3-inch limestone fragments and 40 percent subangular 3.0- to 10-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; abrupt smooth boundary. (0 to 26 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "5BCk4--52 to 80 inches; light brown (7.5YR 6/3) crushed, loamy sand, strong brown (7.5YR 5/6) crushed, moist; 13 percent clay; weak medium subangular blocky and weak fine subangular blocky structure; friable, slightly hard, slightly sticky, slightly plastic; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water." diff --git a/inst/extdata/OSD/I/INKSTER.json b/inst/extdata/OSD/I/INKSTER.json index 95313e4f6c..f875daa05a 100644 --- a/inst/extdata/OSD/I/INKSTER.json +++ b/inst/extdata/OSD/I/INKSTER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--37 to 60 inches; mottled dark olive gray (5Y 3/2) loamy sand, light olive gray (5Y 6/2) dry; many fine prominent yellowish brown (10YR 5/6) and brownish yellow (10YR 6/6) mottles; single grain; loose, nonsticky, and nonplastic; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/I/INSIDERT.json b/inst/extdata/OSD/I/INSIDERT.json index ed302ac308..57f8512381 100644 --- a/inst/extdata/OSD/I/INSIDERT.json +++ b/inst/extdata/OSD/I/INSIDERT.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkq--43 to 61 cm; white (10YR 8/2) very gravelly sandy loam, light yellowish brown (10YR 6/4) moist; massive; slightly hard, very friable, nonsticky and nonplastic; few fine and very fine roots; few fine and very fine tubular pores; 10 percent gravel, 35 percent indurated duripan fragments; violent effervescence; moderately alkaline (pH 8.4); abrupt smooth boundary. (0 to 41 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkqm--61 to 69 cm; very pale brown (10YR 8/3) continuous very thin siliceous lamination over white (10YR 8/2) continuous, indurated duripan; massive; extremely hard, brittle; 50 percent rock fragments; violent effervescence; abrupt wavy boundary. (3 to 20 cm thick)" diff --git a/inst/extdata/OSD/I/INTERIOR.json b/inst/extdata/OSD/I/INTERIOR.json index 3d4ea204b2..0b0f4a45a1 100644 --- a/inst/extdata/OSD/I/INTERIOR.json +++ b/inst/extdata/OSD/I/INTERIOR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 10 cm; light gray (10YR 7/2) loam, brown (10YR 5/3) moist; weak very thin platy structure; soft, very friable, nonsticky and nonplastic; common fine to coarse roots; strong effervescence; moderately alkaline; clear smooth boundary. (5 to 15 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--10 to 33 cm; light gray (10YR 7/2) stratified loam, brown (10YR 5/3) moist; massive; soft, friable, nonsticky and nonplastic; common fine and medium roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--33 to 56 cm; light gray (10YR 7/2) stratified loam, brown (10YR 5/3) moist; massive; hard, friable, slightly sticky and slighly plastic; common fine and medium roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C3--56 to 89 cm; light gray (10YR 7/2) and very pale brown (10YR 8/2) stratified silt loam, grayish brown (10YR 5/2) moist; massive; hard, friable, slightly sticky and slightly plastic; common fine and medium roots; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--89 to 117 cm; light gray (10YR 7/2) and very pale brown (10YR 8/2) stratified silt loam and silty clay loam, light brownish gray (10YR 6/2) and brown (10YR 5/3) moist; massive; hard, friable, slightly sticky and slightly plastic; few fine roots in upper parts; strong effervescence; moderately alkaline." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--117 to 152 cm; light gray (10YR 7/2) loam with thin layers of silty clay loam and very fine sandy loam, light brownish gray (10YR 6/2) moist; massive; slightly hard, friable, nonsticky and slightly plastic; strong effervescence; moderately alkaline. (Combined thickness of the C horizon is greater than 137 cm)" diff --git a/inst/extdata/OSD/I/IO.json b/inst/extdata/OSD/I/IO.json index b4dd6a607f..88cc165c23 100644 --- a/inst/extdata/OSD/I/IO.json +++ b/inst/extdata/OSD/I/IO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 10 inches; very dark brown (10YR 2/2) silt loam, dark grayish brown (10YR 4/2) dry; weak and moderate fine and very fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; many fine roots; many fine and very fine pores; slight effervescence with hydrogen peroxide; neutral (pH 6.8); clear wavy boundary. (9 to 12 inches thick)" diff --git a/inst/extdata/OSD/I/IROQUOIS.json b/inst/extdata/OSD/I/IROQUOIS.json index 4c1e003333..770c009c04 100644 --- a/inst/extdata/OSD/I/IROQUOIS.json +++ b/inst/extdata/OSD/I/IROQUOIS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--31 to 60 inches; gray (N 6/0) silty clay; many medium distinct light olive brown (2.5Y 5/4) mottles; massive; firm; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/I/ISLA.json b/inst/extdata/OSD/I/ISLA.json index 3f7e0d840b..03182a1043 100644 --- a/inst/extdata/OSD/I/ISLA.json +++ b/inst/extdata/OSD/I/ISLA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 41 centimeters (0.0 to 16.1 inches); brown (7.5YR 5/3) crushed sandy clay loam, brown(7.5YR 4/3) crushed, moist; 57 percent sand; 22 percent silt; 21 percent clay; strong coarse cloddy structure; noncemented, nonsticky, nonplastic; moderate excavation difficulty; electrical conductivity of 0.7 mmhos/cm by ec meter, 1:1 water; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0, pH meter 1:1 water; abrupt smooth boundary. Lab sample # D7361. (15 to 20 inches thick)" diff --git a/inst/extdata/OSD/I/IVAN.json b/inst/extdata/OSD/I/IVAN.json index edd96ae37e..1da73e2f4b 100644 --- a/inst/extdata/OSD/I/IVAN.json +++ b/inst/extdata/OSD/I/IVAN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--23 to 43 centimeters (9 to 17 inches); very dark brown (10YR 2/2) silt loam, dark grayish brown (10YR 4/2) dry; moderate medium granular structure; slightly hard, friable, slightly plastic and slightly sticky; many worm casts; slight effervescence; moderately alkaline; gradual smooth boundary. (combined thickness of the A horizons is 30 to 66 centimeters (12 to 26 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--43 to 81 centimeters (17 to 32 inches); very dark grayish brown (10YR 3/2) silt loam, grayish brown (10YR 5/2) dry; weak fine granular structure; slightly hard, friable, slightly plastic and slightly sticky; many fine worm holes and casts; thinly stratified with very dark brown (10YR 2/2) lenses of silty clay loam in lower part of horizon; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 76 centimeters (0 to 30 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--81 to 183 centimeters (32 to 72 inches); dark grayish brown (10YR 4/2) silt loam, grayish brown (10YR 5/2) dry; massive; hard, friable, slightly plastic and slightly sticky; few lenses of grayish brown (10YR 5/2) loam; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/I/IVINS.json b/inst/extdata/OSD/I/IVINS.json index e6f9404ceb..c8c5d6d297 100644 --- a/inst/extdata/OSD/I/IVINS.json +++ b/inst/extdata/OSD/I/IVINS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Btkb--30 to 39 inches; dark red (2.5YR 3/6) sandy clay, dark red (10R 3/6) moist; moderate medium and coarse prismatic structure; extremely hard, firm, moderately sticky, very plastic; few very fine roots, mostly between peds; common very fine and few fine tubular, and few medium interstitial pores; many thin clay films on faces of peds and in pores; peds are slightly effervescent, carbonates are disseminated and in soft irregular accretions and veins that are strongly effervescent; slightly alkaline (pH 7.8); clear wavy boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/J/JACARANDA.json b/inst/extdata/OSD/J/JACARANDA.json index 69f3947e4b..fd6a4876fa 100644 --- a/inst/extdata/OSD/J/JACARANDA.json +++ b/inst/extdata/OSD/J/JACARANDA.json @@ -89,7 +89,7 @@ "cf_class": "extremely cobbly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 10 cm; pale brown (10YR 6/3) extremely cobbly loamy sand, brown (10YR 4/3), moist; single grain; loose, nonsticky and nonplastic; few fine and medium roots; many very fine to medium interstitial pores; 30 percent gravel and 35 cobbles; strong effervescence; moderately alkaline, (pH 8.4); abrupt wavy boundary. (8 to 25 cm thick)" diff --git a/inst/extdata/OSD/J/JAMES.json b/inst/extdata/OSD/J/JAMES.json index 9b46a67c61..b363df68f4 100644 --- a/inst/extdata/OSD/J/JAMES.json +++ b/inst/extdata/OSD/J/JAMES.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Az1--0 to 1 inch; black (N 2/0) silty clay, very dark gray (N 3/0) dry; weak fine granular structure; slightly hard, firm, sticky and plastic; common fine accumulations of salts; slight effervescence; slightly alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Az2--1 to 10 inches; black (N 2/0) silty clay, very dark gray (N 3/0) dry; weak medium subangular blocky structure parting to weak fine subangular blocky; very hard, firm, sticky, and plastic; many fine and medium threads of salts; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the A horizon is 8 to 20 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bz--10 to 20 inches; black (N 2/0) silty clay, dark gray (N 3/0) dry; weak medium and coarse subangular blocky structure parting to moderate very fine and fine subangular blocky; very hard, very firm, sticky, and plastic; many fine threads of salts; strong effervescence; strongly alkaline; clear wavy boundary. (6 to 40 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Azb--20 to 40 inches; black (N 2/0) silty clay, dark gray (N 4/0) dry; weak coarse subangular blocky structure parting to weak very fine and fine subangular blocky; very hard, very firm, sticky, and plastic; common fine and medium accumulations of gypsum and other salts; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Akyb--40 to 54 inches; black (N 2/0) silty clay, dark gray (N 4/0) dry; massive; very hard, very firm, sticky, and plastic; few fine faint very dark grayish brown (2.5Y 3/2) Fe concentrations; many coarse accumulations of gypsum; few medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cky--54 to 60 inches; very dark grayish brown (2.5Y 3/2) silty clay, dark grayish brown (2.5Y 4/2) dry; massive; very hard, very firm, sticky and plastic; few fine faint dark grayish brown (2.5Y 4/2) Fe concentrations; many coarse accumulations of gypsum; many coarse accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/J/JAMESTON.json b/inst/extdata/OSD/J/JAMESTON.json index c735199a76..79cb97232d 100644 --- a/inst/extdata/OSD/J/JAMESTON.json +++ b/inst/extdata/OSD/J/JAMESTON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Btg3--42 to 53 inches; mottled gray (5Y 5/1) and yellowish brown (10YR 5/6) clay loam; weak coarse prismatic structure parting to weak coarse subangular blocky; very firm; few distinct very dark gray (10YR 3/1) clay films in pores and root channels; few small prebbles; strong effervescence; slightly alkaline; gradual smooth boundary. (Combined thickness of the 2Btg horizons is 16 to 36 inches.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--53 to 60 inches; mottled dark yellowish brown (10YR 4/4) and gray (5Y 6/1) clay loam; massive; very firm; few dark concretions (iron and manganese oxides); few soft accumulations (calcium carbonates); common small pebbles; sand lense between 53 and 55 inches; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/J/JANEFALLS.json b/inst/extdata/OSD/J/JANEFALLS.json index 1e80f59ee9..7ebbaf25a9 100644 --- a/inst/extdata/OSD/J/JANEFALLS.json +++ b/inst/extdata/OSD/J/JANEFALLS.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 2 inches; brown (10YR 5/3) very gravelly loam, dark brown (10YR 3/3) moist; moderate fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine roots; common fine and many very fine tubular pores; 35 percent pebbles, 5 percent cobbles and 2 percent stones; strongly effervescence; moderately alkaline (pH 8.2); abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--2 to 16 inches; very dark brown (7.5YR 2/3) very gravelly loam, dark brown (7.5YR 3/3) moist; moderate coarse subangular blocky structure; moderately hard, very friable, slightly sticky and moderately plastic; common very fine to very coarse roots; many very fine and common fine tubular pores; 1 percent fine prominent irregular white (10YR 8/1) carbonate masses in matrix; 45 percent pebbles; strongly effervescence (3 percent calcium carbonate equivalence in the fine earth fraction); moderately alkaline (pH 8.2); clear wavy boundary. (Combined thickness of the A horizons is 6 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--16 to 33 inches; brown (10YR 5/3) extremely gravelly loam, dark brown (10YR 3/3) moist; massive; soft, very friable, slightly sticky and slightly plastic; common very fine and fine roots throughout and few medium and coarse roots throughout and few very coarse roots throughout; common fine interstitial and many very fine interstitial pores; 3 percent fine prominent white (10YR 8/1) carbonate masses with sharp boundaries in matrix; 40 percent pebbles and 20 percent cobbles; violently effervescence (45 percent calcium carbonate equivalence in the fine earth fraction); moderately alkaline (pH 8.2); clear wavy boundary. (10 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--33 to 44 inches; brown (10YR 5/3) extremely gravelly loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, slightly sticky and slightly plastic; common very fine, fine and few medium, coarse and few very coarse roots; many very fine and common fine interstitial pores; 90 percent prominent white (10YR 8/1) carbonate coats on bottom surfaces of rock fragments and 90 percent prominent white (10YR 8/1) carbonate coats on top surfaces of rock fragments; 90 percent fine and medium prominent white (10YR 8/1) carbonate masses on bottom of rock fragments; 40 percent pebbles and 20 percent cobbles; violently effervescence (45 percent calcium carbonate equivalence in the fine earth fraction); moderately alkaline (pH 8.2); abrupt wavy boundary. (10 to 20 inches thick)" diff --git a/inst/extdata/OSD/J/JANESBURG.json b/inst/extdata/OSD/J/JANESBURG.json index 23480fd1ff..ec8c1dc719 100644 --- a/inst/extdata/OSD/J/JANESBURG.json +++ b/inst/extdata/OSD/J/JANESBURG.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCk--21 to 26 inches; light yellowish brown (2.5Y 6/4) silt loam, olive brown (2.5Y 4/4) moist; moderate medium prismatic structure parting to weak medium subangular blocky; hard, firm, slightly sticky and slightly plastic; few fine roots; few fine pores; few medium irregular masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 5 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--26 to 60 inches; light yellowish brown (2.5Y 6/4) and olive yellow (2.5Y 6/6) soft siltstone bedrock, olive brown (2.5Y 4/4) and light olive brown (2.5Y 5/6) moist; common irregular masses of carbonates between siltstone stratifications; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/J/JANISE.json b/inst/extdata/OSD/J/JANISE.json index 6af73b01cc..739db7e08c 100644 --- a/inst/extdata/OSD/J/JANISE.json +++ b/inst/extdata/OSD/J/JANISE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "E--0 to 1 inch; gray (10YR 6/1) loam, dark gray (10YR 4/1) moist; weak medium platy structure; soft, friable; strong effervescence; very strongly alkaline; abrupt smooth boundary. (1/2 to 2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--1 to 3 inches; light brownish gray (10YR 6/2) loam, grayish brown (10YR 5/2) moist; weak medium prismatic structure parting to moderate medium subangular blocky; hard, firm; sodium adsorption ratio greater than 13; exchangeable sodium greater than 15; few thin coatings on faces of peds; strong effervescence; very strongly alkaline; clear smooth boundary. (2 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--3 to 8 inches; light gray (10YR 7/2) loam, grayish brown (10YR 5/2) moist; weak medium subangular blocky structure; hard, firm; sodium adsorption ratio greater than 15; exchangeable sodium greater than 15; 0.25 percent soluble salts; violent effervescence; very strongly alkaline; clear smooth boundary. (4 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--8 to 48 inches; very pale brown (10YR 8/2) silt loam, light brownish gray (10YR 6/2) moist; few fine distinct yellowish brown (10YR 5/6) moist redoximorphic concentrations in the soil matrix; weak coarse subangular blocky structure; slightly hard, friable; 0.2 percent soluble salts; sodium adsorption ratio greater than 15; exchangeable sodium greater than 15; violent effervescence; very strongly alkaline; clear smooth boundary. (15 to 40 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--48 to 80 inches; very pale brown (10YR 8/2) loam, slightly coarser in lower part, light brownish gray (10YR 6/2) moist; many fine faint yellowish brown (10YR 5/6) moist redoximorphic concentrations in the soil matrix; massive; slightly hard, friable; strong effervescence; very strongly alkaline." diff --git a/inst/extdata/OSD/J/JANKOSH.json b/inst/extdata/OSD/J/JANKOSH.json index 00be32549f..312aabeeec 100644 --- a/inst/extdata/OSD/J/JANKOSH.json +++ b/inst/extdata/OSD/J/JANKOSH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 2 inches; gray (10YR 5/1) loam; very dark gray (10YR 3/1) moist; weak fine granular structure; slightly hard, friable; slight effervescence; slightly alkaline; sodium adsorption ratio=8; abrupt smooth boundary (1 to 10 inches thick)." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "E--2 to 4 inches; light brownish gray (10YR 6/2) loam; dark grayish brown (10YR 4/2) moist; weak fine granular structure; slightly hard, friable; slight effervescence; slightly alkaline; sodium adsorption ratio 5; abrupt smooth boundary (1/2 to 4 inches thick)." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btn--4 to 14 inches; grayish brown (10YR 5/2) sandy clay loam; dark grayish dark brown (10YR 3/3) moist; weak medium subangular blocky structure; hard, firm; violent effervescence; very strongly alkaline; sodium adsorption ratio 19; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkn1--14 to 18 inches; pale brown (10YR 6/3) loam; brown (10YR 5/3) moist; weak coarse prismatic structure; hard, firm; few fine distinct yellowish brown (10YR 5/6) irregularly shaped masses of iron accumulation with sharp to diffuse boundaries in the matrix; violent effervescence; sodium adsorption ratio=25; very strongly alkaline; clear smooth boundary. (Combined thickness of the Btn horizon is 5 to 24 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkn2--18 to 33 inches; very pale brown (10YR 7/3) very fine sandy loam; pale brown (10YR 6/3) moist; moderate medium prismatic structure; slightly hard, friable; few fine and medium distinct yellowish brown (10YR 5/6) irregularly shaped masses of iron accumulation with sharp to diffuse boundaries in the matrix; sodium adsorption ratio 15; few fine calcium carbonate accumulations; violent effervescence; very strongly alkaline; abrupt wavy boundary. (10 to 20 inches)" diff --git a/inst/extdata/OSD/J/JANSITE.json b/inst/extdata/OSD/J/JANSITE.json index 78142a3b7c..3e401412ea 100644 --- a/inst/extdata/OSD/J/JANSITE.json +++ b/inst/extdata/OSD/J/JANSITE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btn2--23 to 41 inches; grayish brown (10YR 5/2) loam, dark brown (10YR 3/3) moist; strong fine, medium and coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few faint clay films on faces of peds and in pores; few very fine roots; common very fine and few fine tubular pores; slight effervescence (about 5 percent calcium carbonate equivalent); electrical conductivity is 11 mmhos/cm; very strongly alkaline (pH 10.0); clear smooth boundary. (6 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.3, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bn1--41 to 45 inches; light brownish gray (10YR 6/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium subangular blocky structure; hard, very friable, slightly sticky and slightly plastic; few fine and many very fine tubular pores; slight effervescence (about 5 percent calcium carbonate equivalent); areas of stratified sand and silt; electrical conductivity is 6 mmohs/cm; very strongly alkaline (pH 9.3); gradual smooth boundary. (4 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bn2--45 to 57 inches; pale brown (10YR 6/3) silt loam, dark brown (10YR 3/3) moist; lenses of stratified sand and silt; moderate coarse and medium subangular blocky structure; hard, very friable, slightly sticky and slightly plastic; many very fine and few fine tubular pores; slight effervescence (about 5 percent calcium carbonate equivalent); electrical conductivity is 6 mmohs/cm; very strongly alkaline (pH 9.0); clear smooth boundary. (7 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bn3--57 to 60 inches; light brownish gray (10YR 6/2) fine sand, very dark grayish brown (10YR 3/2) moist, lenses of stratified sand and silt ; weak fine and medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; many very fine tubular and common very fine interstitial pores; slight effervescence (about 5 percent calcium carbonate equivalent); electrical conductivity is 6 mmohs/cm; very strongly alkaline (pH 9.2)." diff --git a/inst/extdata/OSD/J/JANUDE.json b/inst/extdata/OSD/J/JANUDE.json index 7f66e2ba3c..05e27e5bd8 100644 --- a/inst/extdata/OSD/J/JANUDE.json +++ b/inst/extdata/OSD/J/JANUDE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--41 to 102 centimeters; gray (10YR 5/1) loam, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to weak medium and fine subangular blocky; slightly hard, very friable; violent effervescence; moderately alkaline; clear wavy boundary. (36 to 66 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--102 to 132 centimeters; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; many medium distinct reddish brown (5YR 4/4) moist iron masses in the matrix; massive; slightly hard, very friable; slight effervescence; moderately alkaline; abrupt smooth boundary. (20 to 36 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--132 to 152 centimeters; light gray (10YR 7/1) loam; grayish brown (10YR 5/2) moist; few medium distinct reddish brown (5YR 4/4) moist iron masses in the matrix; massive; hard, friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/J/JAVA.json b/inst/extdata/OSD/J/JAVA.json index 06fedad528..6b16e0c1a6 100644 --- a/inst/extdata/OSD/J/JAVA.json +++ b/inst/extdata/OSD/J/JAVA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--8 to 12 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few pebbles; few medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--12 to 40 inches; light yellowish brown (2.5Y 6/3) clay loam, light olive brown (2.5Y 5/3) moist; weak coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few pebbles; common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bk horizon is 16 to 40 inches)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--40 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few pebbles; few fine iron stains of yellowish red (5YR 5/8) moist; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/J/JENKSDRAW.json b/inst/extdata/OSD/J/JENKSDRAW.json index b92f665299..aa3d036c43 100644 --- a/inst/extdata/OSD/J/JENKSDRAW.json +++ b/inst/extdata/OSD/J/JENKSDRAW.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btk--58 to 89 cm; reddish brown (2.5YR 4/4) gravelly clay, light reddish brown (2.5YR 6/4) dry; weak medium and coarse subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine roots throughout; 20 percent faint reddish brown (2.5YR 4/4) argillans on all faces of peds; common medium and coarse prominent white (7.5YR 8/1) irregular carbonate masses with clear boundaries; 10 percent subangular gravels and 10 percent subrounded cobbles; violent effervescence; moderately alkaline; abrupt wavy boundary. (12 to 50 cm thick)" diff --git a/inst/extdata/OSD/J/JERAG.json b/inst/extdata/OSD/J/JERAG.json index d6ce979585..e33a839892 100644 --- a/inst/extdata/OSD/J/JERAG.json +++ b/inst/extdata/OSD/J/JERAG.json @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--9 to 19 inches; yellowish brown (10YR 5/4) gravelly loam, brown (10YR 4/3) moist; weak very fine and fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine roots; common very fine tubular pores; 20 percent gravel and 5 percent cobbles of cemented calcium carbonate; exteriors of fragments are very pale brown (10YR 7/4) and the interiors are very pale brown (10YR 8/2); slight effervescence, by HCL, 1 normal; moderately alkaline; abrupt wavy boundary. (6 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk--25 to 40 inches; very pale brown (10YR 8/2) gravelly silt loam, pale brown (10YR 6/3) moist; massive; hard, firm, slightly plastic; 30 percent very hard and extremely hard strongly cemented angular calcium carbonate fragments; strong effervescence, by HCL, 1 normal; moderately alkaline." diff --git a/inst/extdata/OSD/J/JERAULD.json b/inst/extdata/OSD/J/JERAULD.json index e5a11ecbd0..7ddb9b91c3 100644 --- a/inst/extdata/OSD/J/JERAULD.json +++ b/inst/extdata/OSD/J/JERAULD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz1--17 to 21 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium and coarse subangular blocky; very hard, firm, sticky, and plastic; few fine roots; common fine accumulations of carbonate; common fine accumulations of salts; slight effervescence; strongly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz2--21 to 41 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak coarse subangular blocky structure; very hard, firm, sticky, and plastic; few fine roots; common fine and few medium accumulations of carbonate; common fine accumulations of salts; strong effervescence; strongly alkaline; gradual wavy boundary. (Combined Bkz horizon is 6 to 45 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--41 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; few fine prominent yellowish red (5YR 5/8) redox concetrations; massive; very hard, firm, sticky, and plastic; few fine accumulations of carbonate; few fine accumulations of gypsum and other salts; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/J/JOB.json b/inst/extdata/OSD/J/JOB.json index 29f53f8205..794c748997 100644 --- a/inst/extdata/OSD/J/JOB.json +++ b/inst/extdata/OSD/J/JOB.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--81 to 130 cm; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and fine tubular pores; secondary carbonates segregated as few very fine and fine very pale brown (10YR 8/2) filaments; slightly effervescent matrix and strongly effervescent filaments; moderately alkaline (pH 8.4); clear wavy boundary. (43 to 61 cm thick)" diff --git a/inst/extdata/OSD/J/JOEMAY.json b/inst/extdata/OSD/J/JOEMAY.json index 6345006893..ad5658e71e 100644 --- a/inst/extdata/OSD/J/JOEMAY.json +++ b/inst/extdata/OSD/J/JOEMAY.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 6 centimeters (0 to 2 inches); pale brown (10YR 6/3) gravelly fine sandy loam, dark yellowish brown (10YR 4/4) moist; moderate very thick platy structure; moderately hard, very friable, slightly sticky, slightly plastic; few very fine roots; few fine vesicular and few fine tubular and many very fine vesicular pores; electrical conductivity 0.6 dS/m; 20 percent gravel and 2 percent cobbles; violent effervescence (35 percent calcium carbonate equivalent in the fine earth fraction); moderately alkaline (pH 8.2); abrupt wavy boundary. (5 to 8 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkq1--6 to 63 centimeters (2 to 25 inches); very pale brown (10YR 7/3) extremely gravelly sandy loam, yellowish brown (10YR 5/4) moist; weak fine subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; few fine roots and common very fine roots; few fine tubular and common very fine interstitial pores; 10 percent distinct dark yellowish brown (10YR 4/4), silica on bottom surfaces of rock fragments and 50 percent prominent white (10YR 8/1), carbonate coats on bottom surfaces of rock fragments; 5 percent medium prominent irregular very weakly cemented white (10YR 8/1), carbonate masses with sharp boundaries in matrix; electrical conductivity 0.5 dS/m; sodium adsorption ratio 1.4; 60 percent gravel and 3 percent cobbles; violent effervescence (45 percent calcium carbonate equivalent in the fine earth fraction); strongly alkaline (pH 8.6); abrupt wavy boundary. (20 to 70 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkq2--63 to 116 centimeters (25 to 46 inches); pale brown (10YR 6/3) extremely gravelly fine sandy loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, slightly sticky, slightly plastic; few very fine roots; few fine tubular and common very fine interstitial pores; 10 percent distinct dark yellowish brown (10YR 4/4), silica on bottom surfaces of rock fragments and 30 percent distinct light gray (10YR 7/2), carbonate coats on bottom surfaces of rock fragments; electrical conductivity 4.1 dS/m; sodium adsorption ratio 26; 65 percent gravel and 5 percent cobbles; violent effervescence (45 percent calcium carbonate equivalent in the fine earth fraction); strongly alkaline (pH 8.8); abrupt wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkq3--116 to 148 centimeters (46 to 58 inches); very pale brown (10YR 7/3) extremely gravelly fine sandy loam, yellowish brown (10YR 5/4) moist; massive; moderately hard, friable, slightly sticky, slightly plastic; few fine tubular and common very fine interstitial pores; 10 percent distinct dark yellowish brown (10YR 4/4), silica on bottom surfaces of rock fragments and 30 percent distinct carbonate coats on bottom surfaces of rock fragments; 60 percent coarse prominent irregular very weakly cemented carbonate, finely disseminated with diffuse boundaries throughout; electrical conductivity 12 dS/m; sodium adsorption ratio 31; 55 percent gravel and 5 percent cobbles; violent effervescence (50 percent calcium carbonate equivalent in the fine earth fraction); strongly alkaline (pH 8.7). (Combined thickness of the Bkq2 and Bkq3 horizons is 75 to 125 centimeters thick.)" diff --git a/inst/extdata/OSD/J/JOHNSTOWN.json b/inst/extdata/OSD/J/JOHNSTOWN.json index ef714ab23e..ee7f6f2bd6 100644 --- a/inst/extdata/OSD/J/JOHNSTOWN.json +++ b/inst/extdata/OSD/J/JOHNSTOWN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BCb--44 to 50 inches; light yellowish brown (2.5Y 6/4) silty clay loam, olive brown (2.5Y 4/4) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable; few very fine roots; few fine soft accumulations of carbonates; slight effervescence; slightly alkaline; abrupt wavy boundary. (0 to 16 inches thick)" diff --git a/inst/extdata/OSD/J/JOSBURG.json b/inst/extdata/OSD/J/JOSBURG.json index 453d4b5ef8..4e91d1d37b 100644 --- a/inst/extdata/OSD/J/JOSBURG.json +++ b/inst/extdata/OSD/J/JOSBURG.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--42 to 48 inches; very pale brown (10YR 7/3) sandy clay loam, pale brown (10YR 6/3) moist; many coarse faint light yellowish brown (10YR 6/4) moist redoximorphic concentrations; weak coarse prismatic structure; hard, friable; organic matter and plant roots in cleavages between prisms; few calcium carbonate accumulations; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--48 to 80 inches; very pale brown (10YR 8/3) fine sandy loam, very pale brown (10YR 7/3) moist; many coarse faint very pale brown (10YR 7/4) moist redoximorphic concentrations; weak coarse prismatic structure; slightly hard, very friable; few calcium carbonate concretions; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/J/JULES.json b/inst/extdata/OSD/J/JULES.json index c10f248bbc..1f92374ca6 100644 --- a/inst/extdata/OSD/J/JULES.json +++ b/inst/extdata/OSD/J/JULES.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightlt effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "C2--46 to 81 cm (18 to 32 inches); stratified dark grayish brown (10YR 4/2), very dark grayish brown (10YR 3/2), and yellowish brown (10YR 5/4) silt loam with thin strata of very fine sandy loam and loam; thin bedding planes along strata; massive; friable; few very fine roots; slightlt effervescent; moderately alkaline; clear smooth boundary. [0 to 51 cm (0 to 20 inches) thick]" diff --git a/inst/extdata/OSD/J/JUMPCREEK.json b/inst/extdata/OSD/J/JUMPCREEK.json index f96603f6e4..02ff58650f 100644 --- a/inst/extdata/OSD/J/JUMPCREEK.json +++ b/inst/extdata/OSD/J/JUMPCREEK.json @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkq--76 to 91 cm; very pale brown (10YR 7/3) weakly cemented extremely gravelly sandy loam, yellowish brown (10YR 5/4) moist, with discontinuous distinct siliceous laminar cap 1 mm thick; massive; very hard, firm, nonsticky and nonplastic; 75 percent gravel, 10 percent cobbles; strong effervescence; strongly alkaline (pH 8.8); gradual wavy boundary. (13 to 25 cm thick)" diff --git a/inst/extdata/OSD/J/JUNCAL.json b/inst/extdata/OSD/J/JUNCAL.json index 2e790d3f96..7a75de2adf 100644 --- a/inst/extdata/OSD/J/JUNCAL.json +++ b/inst/extdata/OSD/J/JUNCAL.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--49 to 66 inches; brownish yellow (10YR 6/8) silty clay loam, many fine faint light gray (10YR 7/2) mottles; crushed color, yellow (10YR 7/8); massive; friable, slightly sticky, plastic; fine lime is from 25 to 35 percent of the horizons; strong effervescence." diff --git a/inst/extdata/OSD/K/KADOKA.json b/inst/extdata/OSD/K/KADOKA.json index 06faf5c560..ee045bc834 100644 --- a/inst/extdata/OSD/K/KADOKA.json +++ b/inst/extdata/OSD/K/KADOKA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Bk--22 to 34 inches; pinkish white (7.5YR 8/2) and pinkish gray (7.5YR 7/2) silt loam, pale brown (10YR 6/3) moist; weak fine and medium subangular blocky structure; soft, friable; fragments of siltstone make up 15 percent by volume; rock structure evident; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual irregular boundary. (5 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--34 to 45 inches; pinkish white (7.5YR 8/2) bedded siltstone, light brown (7.5YR 6/3) moist; massive; strong effervescence; few fine accumulations of carbonate on surfaces of fragments of rock." diff --git a/inst/extdata/OSD/K/KAENA.json b/inst/extdata/OSD/K/KAENA.json index 721e256943..10098e0a9f 100644 --- a/inst/extdata/OSD/K/KAENA.json +++ b/inst/extdata/OSD/K/KAENA.json @@ -89,7 +89,7 @@ "cf_class": "stony", "pH": 7.1, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 10 inches; very dark gray (10YR 3/1) dry or moist stony clay; common fine distinct dark yelllowish brown mottles; strong fine and medium subangular blocky structure; extremely hard, very firm, very sticky and very plastic; many fine and medium roots; common very fine tubular and interstitial pores; common black organic stains; few coral fragments; few angular stones; ffew pebble-size highly weathered basalt fragments; slight effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; neutral (pH 7.1); abrupt smooth boundary. (8 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "stony", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "ACg--10 to 37 inches; dark gray (10YR 4/1) dry and moist stony clay; many fine distinct dark reddish brown mottles; weak coarse prismatic structure; many prominent slickensides; extremely hard, very firm and very plastic; common very fine and fine roots; few medium roots; many very fine tubular pores; few black stains; few pebble-size highly weathered rock fragments; slight effervescence with hydrogen peroxide; neutral (pH 6.8); gradual wavy boundary. (20 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "stony", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1g--37 to 45 inches; dark grayish brown (10YR 4/2) dry and moist stony clay; common fine distinct strong brown mottles; weak coarse prismatic structure; many distinct slickensides; extremely hard, very firm, very sticky and very plastic; few very fine roots; common very fine tubular pores; few pebble-size highly weathered rock fragments; few black stains; common strong brown, very fine specks; few fine and medium gypsum crystals; slight effervescence with hydrogen peroxide; neutral (pH 6.6); clear smooth boundary. (7 to 9 inches thick)" diff --git a/inst/extdata/OSD/K/KAHANA.json b/inst/extdata/OSD/K/KAHANA.json index 7e87d81a19..ead13a9b38 100644 --- a/inst/extdata/OSD/K/KAHANA.json +++ b/inst/extdata/OSD/K/KAHANA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.2, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 7 inches; dark reddish brown (2.5YR 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate fine and very fine subangular blocky structure; hard, friable, very sticky and very plastic; many fine roots; many fine and very fine pores; many very fine black concretions; violent effervescence with hydrogen peroxide; strongly acid (pH 5.2); clear wavy boundary. (6 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap2--7 to 14 inches; dark reddish brown (2.5Y 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate medium and fine subangular blocky structure; hard, firm, very sticky and very plastic; many fine and very fine pores; many fine and very fine black concretions; violent effervescence with hydrogen peroxide; very strongly acid (pH 5.0); abrupt wavy boundary. (6 to 9 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bo1--14 to 22 inches; dark reddish brown (2.5YR 3/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate medium and fine subangular blocky structure; hard, firm, very sticky and very plastic; many fine and very fine pores; many fine and very fine black concretions; violent effervescence with hydrogen peroxide; very strongly acid (pH 5.0); abrupt wavy boundary. (6 to 9 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bo2--22 to 34 inches; dark reddish brown (2.5YR 3/4) silty clay, dark red (2.5YR 3/6) dry; strong very fine subangular blocky structure; hard, firm, sticky and very plastic; few fine roots; many fine and very fine tubular pores; continuous pressure faces on peds that resemble slickensides; common sand-size aggregates that are resistant to crushing; continuous pressure faces on peds; common fine and very fine black concretions; strong effervescence with hydrogen peroxide; neutral (pH 6.6); clear wavy boundary. (8 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bo3--34 to 47 inches; dark reddish brown (2.5YR 3/4) silty clay, dark red (2.5YR 3/6) dry; strong very fine subangular blocky structure; hard, firm, sticky and very plastic; few fine roots; many fine and very fine tubular pores; continuous pressure faces on peds that resemble slickensides; common sand-size aggregates that are resistant to crushing; many fine and very fine black concretions; common black coatings on peds; slight effervescence with hydrogen peroxide in matrix, violent effervescence on black coatings; neutral (pH 6.7); clear wavy boundary. (10 to 18 inches thick)" diff --git a/inst/extdata/OSD/K/KAHANUI.json b/inst/extdata/OSD/K/KAHANUI.json index 519106952e..8332ecfd66 100644 --- a/inst/extdata/OSD/K/KAHANUI.json +++ b/inst/extdata/OSD/K/KAHANUI.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 8 centimeters (0 to 3 inches); dark brown (10YR 3/3) gravelly silty clay, gray (10YR 5/1) dry; strong very fine, fine, medium and coarse granular structure; hard, firm, sticky and plastic; many roots; many very fine interstitial pores; many ironstone concretions up to 1/2 inch long; many glistening specks; common worm casts; moderately high bulk density; slight effervescence with hydrogen peroxide after a delay; very strongly acid (pH 4.8); abrupt smooth boundary. (8 to 13 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A2--8 to 38 centimeters (3 to 15 inches); dark brown (7.5YR 3/2) gravelly silty clay, grayish brown (10YR 5/2) dry; dense slaglike layer breaking into weak fine and medium subangular blocky structure; hard, firm, very sticky and very plastic; few roots; many very fine tubular pores; many ironstone fragments up to 1/4 inch long; very high bulk density; slight effervescence with hydrogen peroxide; very strongly acid (pH 4.8); abrupt wavy boundary. (28 to 31 centimeters thick)" diff --git a/inst/extdata/OSD/K/KAHOLA.json b/inst/extdata/OSD/K/KAHOLA.json index b9c90004fd..b41b43f396 100644 --- a/inst/extdata/OSD/K/KAHOLA.json +++ b/inst/extdata/OSD/K/KAHOLA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--89 to 200 centimeters (35 to 80 inches); dark brown (10YR 3/3) silt loam, brown (10YR 5/3) dry; massive; hard, friable, slightly plastic and slightly sticky; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KALAE.json b/inst/extdata/OSD/K/KALAE.json index 8550bf53c3..12a10162b0 100644 --- a/inst/extdata/OSD/K/KALAE.json +++ b/inst/extdata/OSD/K/KALAE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.2, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1-- 0 to 23 cm (0 to 9 inches); dark reddish brown (2.5YR 3/4) silty clay, weak red (2.5YR 4/2) dry; moderate very fine strong very fine and fine subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few fine roots; slight effervescence with hydrogen peroxide 3 percent concentration; strongly acid (pH 5.2); abrupt smooth boundary. (18 to 23 cm (7 to 9 inches) thick)." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--23 to 38 cm (9 to 15 inches); dark reddish brown (2.5YR 3/4) silty clay, weak red (2.5YR 4/2) dry; strong very fine and fine subangular blocky structure; moderately sticky and moderately plastic; many strong coarse cloddy masses, few fine roots; many very fine and fine and few medium tubular pores; firm; slight effervescence with hydrogen peroxide 3 percent concentration; strongly acid (pH 5.5); clear wavy boundary. (10 to 20 cm (4 to 8 inches) thick)." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.4, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt1 --38 to 66 cm (15 to 26 inches); dark red (2.5YR 3/6) silty clay; red (2.5YR 4/6) dry; strong very fine and fine subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; few fine roots; few very fine tubular pores; thin continuous pressure faces on ped surfaces; many strong coarse cloddy masses that break down after prolonged rubbing; upper part of this horizon has pockets that are slightly smeary, very friable, dark reddish brown (2.5YR 3/4) moist; slight effervescence with hydrogen peroxide 3 percent concentration; strongly acid (pH 5.4); gradual wavy boundary. (18 to 38 cm (7 to 15 inches) thick)." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 5.1, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2 -- 66 to 104 cm (26 to 41 inches); red (2.5YR 4/6) moist silty clay; strong very fine and fine subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; few fine roots; few very fine tubular pores; many thin continuous pressure faces on ped surfaces; many hard cloddy masses that break down after prolonged rubbing; slight effervescence with hydrogen peroxide 3 percent concentration; strongly acid (pH 5.1); clear wavy boundary. (33 to 41 cm (13 to 16 inches) thick)." diff --git a/inst/extdata/OSD/K/KALAPA.json b/inst/extdata/OSD/K/KALAPA.json index a4e5540826..8eb89b052e 100644 --- a/inst/extdata/OSD/K/KALAPA.json +++ b/inst/extdata/OSD/K/KALAPA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A1--0 to 25 centimeters (0 to 10 inches); dark reddish brown (5YR 3/3) silty clay, moist and dry; moderate fine subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; common fine and very fine roots; many fine and very fine tubular pores; slight effervescence with hydrogen peroxide; very strongly acid (pH 4.8); abrupt wavy boundary. (20 to 31 centimeters thick)" diff --git a/inst/extdata/OSD/K/KALAUPAPA.json b/inst/extdata/OSD/K/KALAUPAPA.json index ce6a59ef57..24af9dc093 100644 --- a/inst/extdata/OSD/K/KALAUPAPA.json +++ b/inst/extdata/OSD/K/KALAUPAPA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 15 centimeters (0 to 6 inches); dark brown (10YR 3/3) medial silty clay loam, dark brown (10YR 4/3) dry; strong fine and medium granular structure; hard, firm, moderately sticky and moderately plastic; many fine roots; many fine interstitial pores; 7 percent gravel, 3 percent cobbles, and 2 percent stones on the surface; slight effervescence with hydrogen peroxide; neutral (pH 6.6); clear smooth boundary. (10 to 15 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw--15 to 36 centimeters (6 to 14 inches); dark yellowish brown (10YR 3/4) medial silt loam, dark yellowish brown (10YR 4/4) dry; massive parting to weak, fine subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; common very fine roots; many very fine and common fine tubular pores; 7 percent gravel and 2 percent stones; slight effervescence with hydrogen peroxide; neutral (pH 6.6); abrupt wavy boundary. (8 to 31 centimeters thick)" diff --git a/inst/extdata/OSD/K/KALIHI.json b/inst/extdata/OSD/K/KALIHI.json index 31737a78ad..67b53c8bc1 100644 --- a/inst/extdata/OSD/K/KALIHI.json +++ b/inst/extdata/OSD/K/KALIHI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap1--0 to 8 inches; dark brown (10YR 3/3) clay, dark 8rq (10YR 4/1) dry, few fine distinct yellowish brown (10YR 5/6) and brown (10YR 5/3) mottles, fine black stains; weak fine subangular blocky structure; very hard, firm, very sticky and very plastic; many roots; moderate effervescence with hydrogen peroxide; neutral (pH 6.6); gradual smooth boundary. (6 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--8 to 16 inches; very dark grayish brown (10YR 3/2) clay, very dark gray (10YR 3/1) dry; few fine distinct yellowish brown and reddish brown mottles; weak fine subangular blocky structure; extremely hard, firm, very sticky and very plastic; many roots; moderate effervescence with hydrogen peroxide; neutral (pH 6.8); clear smooth boundary. (6 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2g--60 to 70 inches; dark gray (5YR 4/1), olive gray (5YR 5/2), and yellowish brown (10YR 5/6) clay, olive (5Y 5/3) dry; brownish yellow (10YR 6/6) mottles dry; massive; extremely hard, firm, very sticky and very plastic; few roots; few very fine pores; slight effervescence with hydrogen peroxide; neutral (pH 7.0)." diff --git a/inst/extdata/OSD/K/KALMARVILLE.json b/inst/extdata/OSD/K/KALMARVILLE.json index eee2ebfd2f..d1c354fd43 100644 --- a/inst/extdata/OSD/K/KALMARVILLE.json +++ b/inst/extdata/OSD/K/KALMARVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 43 inches; very dark gray (10YR 3/1) silt loam with many fine strata of dark gray (10YR 4/1) fine sandy loam and silt loam; few fine prominent brown (7.5YR 4/4) mottles; weak and moderate very thin to thick platy layers; very friable; many very fine to medium tubular pores below 12 inches; few snail shells in lower part; slight effervescence in upper 12 inches; slightly alkaline; clear wavy boundary. (More than 40 inches thick.)" diff --git a/inst/extdata/OSD/K/KALOKO.json b/inst/extdata/OSD/K/KALOKO.json index df9aa42f64..0a06ef9c2f 100644 --- a/inst/extdata/OSD/K/KALOKO.json +++ b/inst/extdata/OSD/K/KALOKO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "IIIC3g--33 to 43 inches; thickest plates dark greenish gray (5BG 4/1), other plates dark gray (N 4/0), gray (5Y 5/1) and light gray (5Y 6/1) silty clay, rubbed color dark greenish gray (5BG 4/1); fine and thick platy structure; hard, friable, sticky and plastic; few roots; common fine and medium pores; moderate effervescence with hydrochloric acid; neutral; abrupt smooth boundary. (9 to 11 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC4gsa--43 to 60 inches; dark greenish gray (5BG 4/1), light greenish gray (5GY 7/1), greenish gray (5GY 6/1), and dark greenish gray (5GY 4/1) silty clay, rubbed color greenish gray (5BG 5/1); massive friable, sticky; common salt crystals, moderate effervescence with hydrochloric acid; mildly alkaline." diff --git a/inst/extdata/OSD/K/KALONA.json b/inst/extdata/OSD/K/KALONA.json index 72196c8fbc..0d7846d45d 100644 --- a/inst/extdata/OSD/K/KALONA.json +++ b/inst/extdata/OSD/K/KALONA.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--56 to 60 inches; olive gray (5Y 5/2) silty clay loam; common fine prominent strong brown (7.5YR 5/6) mottles; massive; friable; a few secondary carbonates with slight effervescence; neutral." diff --git a/inst/extdata/OSD/K/KAMAOLE.json b/inst/extdata/OSD/K/KAMAOLE.json index 6e3e551298..e575280071 100644 --- a/inst/extdata/OSD/K/KAMAOLE.json +++ b/inst/extdata/OSD/K/KAMAOLE.json @@ -89,7 +89,7 @@ "cf_class": "very stony", "pH": 5.8, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A11--0 to 2 inches; dark brown (10YR 3/3) very stony silt loam, brown (10YR 4/3) dry; moderate thin and very thin platy structure; soft, friable, slightly sticky and slightly plastic; many fine roots with a tendency to mat on plate faces; common fine pores; few fine black concretions; 10 to 15 percent stones; slight effervescence with hydrogen peroxide; medium acid (pH 5.8); abrupt smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.2, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A12--2 to 8 inches; dark reddish brown (5YR 3/2) silty clay loam, dark reddish gray (5YR 4/2) dry; moderate fine and very fine subangular blocky structure; slightly hard, friable, sticky and plastic; common fine roots; many fine and very fine pores; few fine black concretions; few moderately weathered pebbles; slight effervescence with hydrogen peroxide; slightly acid (pH 6.2); gradual wavy boundary. (4 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B2--8 to 20 inches; dark reddish brown (5YR 3/2) silty clay, (5YR 3/3) dry; moderate very fine and fine subangular blocky structure; hard, firm, very sticky and very plastic; few roots; many fine pores; few fine black concretions; thin patchy clay films on peds; few sand-size aggregates that are more resistant than the matrix; 15 to 20 percent weathered pebbles and cobbles; strong effervescence with hydrogen peroxide; mildly alkaline (pH 7.4); clear wavy boundary. (10 to 14 inches thick)" diff --git a/inst/extdata/OSD/K/KANDOTA.json b/inst/extdata/OSD/K/KANDOTA.json index 65ff4a641d..5359a58ab4 100644 --- a/inst/extdata/OSD/K/KANDOTA.json +++ b/inst/extdata/OSD/K/KANDOTA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt2--33 to 40 inches; yellowish brown (10YR 5/4) sandy loam; weak thin platy structure; very few fine roots; many distinct dark brown (10YR 3/3) clay films on ped exteriors; few very pale brown (10YR 7/3) carbonate coatings on ped exteriors; about 5 percent gravel; strong effervescence; mildly alkaline; gradual smooth boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--40 to 51 inches; light yellowish brown (10YR 6/4) sandy loam; weak thin platy soil fragments; firm; few very pale brown (10YR 7/3) carbonate filaments; about 5 percent gravel; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--51 to 64 inches; yellowish brown (10YR 5/4) sandy loam; weak medium platy soil fragments; firm; few very pale brown (10YR 7/3) carbonate filaments; about 5 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KANDRIX.json b/inst/extdata/OSD/K/KANDRIX.json index b9cb6ab118..6ae2ac15eb 100644 --- a/inst/extdata/OSD/K/KANDRIX.json +++ b/inst/extdata/OSD/K/KANDRIX.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 6 inches; brown (10YR 5/3) loam, brown (10YR 4/3) moist; weak fine subangular blocky and weak very fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; many fine roots throughout; strong effervescence (4 percent calcium carbonate equivalent); slightly alkaline (pH 7.6); abrupt smooth boundary. (4 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--6 to 14 inches; pale brown (10YR 6/3) loam, brown (10YR 4/3) moist; weak fine and medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common very fine roots throughout; violent effervescence (11 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); clear smooth boundary. (6 to 14 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--14 to 26 inches; light yellowish brown (10YR 6/4) loam, yellowish brown (10YR 5/4) moist; moderate fine and medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few very fine roots throughout; 15 percent patchy distinct pressure faces on vertical faces of peds; violent effervescence (19 percent calcium carbonate equivalent); moderately alkaline (pH 8.3); clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--26 to 42 inches; very pale brown (10YR 7/3) silt loam, yellowish brown (10YR 5/4) moist; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots throughout; few fine irregular carbonate masses; violent effervescence (15 percent calcium carbonate equivalent); moderately alkaline (pH 8.4); clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk3--42 to 51 inches; light yellowish brown (10YR 6/4) loam, dark yellowish brown (10YR 4/4) moist; weak medium subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; common fine irregular carbonate masses; violent effervescence (16 percent calcium carbonate equivalent); strongly alkaline (pH 8.6); clear smooth boundary. (Combined thickness of the Bk1, Bk2 and Bk3 horizons is 30 to 42 inches)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk4--51 to 65 inches; light yellowish brown (10YR 6/4) loam, dark yellowish brown (10YR 4/4) moist; weak fine subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; many fine irregular carbonate masses in matrix; violent effervescence 10 percent calcium carbonate equivalent); moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/K/KANEPUU.json b/inst/extdata/OSD/K/KANEPUU.json index c4a1573f9f..915d66f5cf 100644 --- a/inst/extdata/OSD/K/KANEPUU.json +++ b/inst/extdata/OSD/K/KANEPUU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 8 centimeters (0 to 3 inches); dark reddish brown (5YR 3/3) silty clay, reddish brown (5YR 4/3) dry; strong very fine, fine and medium granular structure; hard, firm, moderately sticky and moderately plastic; many roots; many interstitial pores; violent effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear smooth boundary. (8 to 10 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--8 to 28 centimeters (3 to 11 inches); dark reddish brown (5YR 3/3) moist and dry silty clay; weak fine and medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; many roots; common very fine tubular pores; moderately high bulk density; violent effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear smooth boundary. (15 to 20 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--28 to 38 centimeters (11 to 15 inches); dark reddish brown (5YR 3/2) silty clay, reddish brown (5YR 4/3) dry; moderate very fine and fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few roots; many very fine tubular pores; moderately high bulk density; slight effervescence with hydrogen peroxide; neutral (pH 7.0); clear smooth boundary. (8 to 10 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--38 to 53 centimeters (15 to 21 inches); dark reddish brown (5YR 3/3) silty clay, reddish brown (5YR 4/3) dry; strong very fine and fine subangular blocky structure; hard, friable, very sticky and very plastic; few roots; many very fine and fine tubular pores; ped surfaces have a metallic sheen; compact in place; no effervescence with hydrogen peroxide; neutral (pH 7.2); gradual wavy boundary. (13 to 15 centimeters thick)" diff --git a/inst/extdata/OSD/K/KANORADO.json b/inst/extdata/OSD/K/KANORADO.json index 0a4489d5d6..01e0df3c0a 100644 --- a/inst/extdata/OSD/K/KANORADO.json +++ b/inst/extdata/OSD/K/KANORADO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 13 centimeters (0 to 5 inches); light olive brown (2.5Y 5/3) silty clay loam; dark grayish brown (2.5Y 4/2) moist; weak thin platy structure parting to moderate fine and medium granular; slightly hard, friable; many fine and medium roots; few fine and medium tubular pores; few fine rounded worm casts; strong effervescence; moderately alkaline; clear smooth boundary. (8 to 23 centimeters (3 to 9 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--13 to 28 centimeters (5 to 11 inches); light olive brown (2.5Y 5/3) silty clay loam; olive brown (2.5Y 4/3) moist; moderate medium granular structure; hard, firm; common fine roots between peds; few fine tubular pores; few fine cylindrical carbonate threads; few medium rounded worm casts; strong effervescence; moderately alkaline; clear smooth boundary. (13 to 25 centimeters (5 to 10 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bky1--28 to 64 centimeters (11 to 25 inches); light olive brown (2.5Y 5/3) and grayish brown (2.5Y 5/2) silty clay; olive brown (2.5Y 4/3) and dark grayish brown (2.5Y 4/2) moist; moderate medium subangular blocky structure; hard, firm; common fine roots between peds; common fine tubular pores; few fine cylindrical carbonate threads; few fine irregular gypsum crystals; few medium rounded worm casts; 1 percent weathered shale fragments; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bky2--64 to 91 centimeters (25 to 36 inches); light olive brown (2.5Y 5/3) silty clay; olive brown (2.5Y 4/3) moist; weak medium subangular blocky structure; hard, firm; common fine roots between peds; common fine and medium tubular pores; common fine and medium irregular masses of carbonate; common fine irregular gypsum crystals; common medium rounded carbonate threads; few medium rounded worm casts; 1 percent weathered shale fragments; strong effervescence; moderately alkaline; abrupt smooth boundary. (Combined thickness of the 2Bky is 30 to 91 centimeters (12 to 36 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Cky--91 to 122 centimeters (36 to 48 inches); light olive brown (2.5Y 5/3) and light yellowish brown (2.5Y 6/3) silty clay loam; olive brown (2.5Y 4/3) and light olive brown (2.5Y 5/3) moist; massive; slightly hard, firm; few fine roots throughout; common fine and medium tubular pores; common fine and medium irregular masses of carbonate; common fine and medium carbonate threads; few fine irregular gypsum crystals; 1 percent weathered shale fragments; strong effervescence; moderately alkaline; abrupt smooth boundary. (0 to 30 centimeters (0 to 12 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Cr1--122 to 127 centimeters (48 to 50 inches); light olive brown (2.5Y 5/3) and light olive brown (2.5Y 5/4) weathered shale; olive brown (2.5Y 4/3) and light olive brown (2.5Y 5/3) moist; weak thin platy structure; few fine roots in cracks; few fine tubular pores; common fine and medium irregular masses of carbonate; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr2--127 to 152 centimeters (50 to 60 inches); light brownish gray (2.5Y 6/2), light yellowish brown (2.5Y 6/3) and olive yellow (2.5Y 6/6) partially weathered shale; dark grayish brown (2.5Y 4/2), light olive brown (2.5Y 5/3) and light olive brown (2.5Y 5/6); moderate thin platy structure; few fine roots in cracks; common irregular masses of carbonate; few fine irregular gypsum crystals; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KANOSH.json b/inst/extdata/OSD/K/KANOSH.json index 865cb25e7b..985b9e4416 100644 --- a/inst/extdata/OSD/K/KANOSH.json +++ b/inst/extdata/OSD/K/KANOSH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 4 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; weak fine platy structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and few fine roots; many very fine vesicular pores; strong effervescence (16 percent calcium carbonate equivalent), carbonates are disseminated; strongly alkaline (pH 8.6); gradual smooth boundary. (3 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--4 to 8 inches; very pale brown (10YR 7/3) loam, grayish brown (10YR 5/2) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and few fine roots; many very fine tubular pores; strong effervescence (22 percent calcium carbonate equivalent), secondary carbonates are disseminated in the matrix and segregated in few masses; strongly alkaline (pH 8.8); clear smooth boundary. (4 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky1--8 to 20 inches; very pale brown (10YR 7/3) fine sandy loam, brown (10YR 5/3) moist; weak medium subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; many very fine and few fine roots; many very fine tubular pores; strong effervescence (21 percent calcium carbonate equivalent), carbonates and gypsum are disseminated in the matrix and segregated in few masses; strongly alkaline (pH 9.0); gradual wavy boundary. (4 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bky2--20 to 34 inches; light gray (10YR 7/2) fine sandy loam, light brownish gray (10YR 6/2) moist; common fine distinct light brownish gray (2.5Y 6/2) mottles; weak medium subangular blocky structure; soft, very friable, slightly sticky; common very fine roots; many very fine tubular pores; strong effervescence (27 percent calcium carbonate equivalent), secondary carbonates and gypsum are disseminated in the matrix and segregated in few masses; strongly alkaline (pH 9.0); clear wavy boundary. (10 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bky3--34 to 60 inches; very pale brown (10YR 8/2) fine sandy loam, light brownish gray (10YR 6/2) moist; massive; soft and very friable; few very fine roots; many very fine tubular pores; common fine prominent strong brown (7.5YR 5/6) masses of iron accumulation; strong effervescence (30 percent calcium carbonate equivalent), secondary carbonates and gypsum are disseminated in the matrix; strongly alkaline (pH 9.0)" diff --git a/inst/extdata/OSD/K/KAPOD.json b/inst/extdata/OSD/K/KAPOD.json index 1da844d255..fd7aedd048 100644 --- a/inst/extdata/OSD/K/KAPOD.json +++ b/inst/extdata/OSD/K/KAPOD.json @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": 7.1, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt1--33 to 46 cm; brown (10YR 4/3) extremely cobbly sandy clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium and coarse subangular blocky structure; slightly hard, firm, moderately sticky and moderately plastic; few fine and very fine roots; few fine and very fine pores; many thin clay films on faces of peds; slight effervescence; about 70 percent cobbles and gravel, and 5 percent stones; neutral (pH 7.1); clear wavy boundary. (13 to 15 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely cobbly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bt2--46 to 79 cm; pale brown (10YR 6/3) extremely cobbly loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few fine and very fine roots; few fine pores; common thin clay films on faces of peds; about 70 percent cobbles and gravel, and 5 percent stones; strong effervescence; slightly alkaline (pH 7.4); abrupt wavy boundary. (18 to 33 thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--79 to 132 cm; very pale brown (10YR 7/3) extremely gravelly loam; pale brown (10YR 6/3) moist; massive; hard, firm, moderately sticky and slightly plastic; few fine roots; few fine pores; about 70 percent gravel; violent effervescent; carbonates are in veins; slightly alkaline (pH 7.7); clear wavy boundary. (18 to 89 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--132 to 168 cm; very pale brown (10YR 7/3) very gravelly loam, light yellowish brown (10YR 6/4) moist; massive; hard, firm, moderately sticky and slightly plastic; 50 percent gravel; violent effervescence; slightly alkaline (pH 7.7)." diff --git a/inst/extdata/OSD/K/KAPUHIKANI.json b/inst/extdata/OSD/K/KAPUHIKANI.json index 338152b332..f9df379d8f 100644 --- a/inst/extdata/OSD/K/KAPUHIKANI.json +++ b/inst/extdata/OSD/K/KAPUHIKANI.json @@ -89,7 +89,7 @@ "cf_class": "extremely stony", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 10 centimeters (0 to 4 inches); dark brown (10YR 3/3) moist or dry extremely stony clay; strong very fine and fine granular structure; hard, firm, very sticky and very plastic; few fine roots; common very fine interstitial pores; violent effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid, confined mainly to few calcium carbonate masses less than 1 mm. in diameter; 10 percent stones cover the surface; 30 percent stones, 20 percent cobbles, and 15 percent gravels; slightly alkaline (pH 7.5); gradual smooth boundary. (10 to 15 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss--10 to 51 centimeters (4 to 20 inches); dark brown (10YR 3/3) moist or dry clay; weak coarse prismatic structure parting to weak coarse subangular and angular blocky; very hard, very firm, very sticky and very plastic; few fine roots; many fine tubular pores; common pressure cutans and slickensides; many olivine crystals less than 1 mm. in diameter; common calcium carbonate masses up to 1 inch long; violent effervescence with hydrogen peroxide; moderate effervescence with hydrochloric acid, confined mainly to calcium carbonate fragments; 5 percent stones, 5 percent cobbles, and 4 percent gravels; slightly alkaline (pH 7.8); gradual smooth boundary. (25 to 46 centimeters inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck--51 to 69 centimeters (20 to 27 inches); variegated yellowish brown (10YR 5/6) and very pale brown (10YR 8/3) highly weathered olivine basalt that breaks down to a loam on prolonged rubbing; massive; very hard, very firm, nonsticky, nonplastic and weakly smeary; common fine tubular pores; violent effervescence with hydrochloric acid; 10 percent gravel; moderately alkaline (pH 8.1); abrupt wavy boundary. (15 to 31 centimeters thick)" diff --git a/inst/extdata/OSD/K/KARDEWEST.json b/inst/extdata/OSD/K/KARDEWEST.json index 0b0f9e16b7..620acba487 100644 --- a/inst/extdata/OSD/K/KARDEWEST.json +++ b/inst/extdata/OSD/K/KARDEWEST.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 7 cm, (0.0 to 2.8 inches); dark gray (10YR 4/1) sandy loam, black (10YR 2/1) moist; 65 percent sand; 21 percent silt; 14 percent clay; moderate fine granular structure; soft, very friable, slightly sticky and slightly plastic; 10 percent tufa gravel; violent effervescence; moderately alkaline; calcium carbonate equivalent 62.0%; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "AC--7 to 12 cm, (2.8 to 4.7 inches); dark gray (10YR 4/1) coarse sandy loam, very dark gray (10YR 3/1) moist; 75 percent sand; 13 percent silt; 12 percent clay; massive; soft, very friable, nonsticky and nonplastic; 13 percent tufa gravel; violent effervescence; moderately alkaline, pH 8.4; calcium carbonate equivalent 90.0%; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "CA--12 to 26 cm, (4.7 to 10.2 inches); 50 percent pale yellow (2.5Y 7/3) and 50 percent dark gray (10YR 4/1) very gravelly sand, light yellowish brown (2.5Y 6/3) and very dark gray (10YR 3/1), moist; 91 percent sand; 3 percent silt; 6 percent clay; single grain; loose, nonsticky and nonplastic; 50 percent tufa gravel; violent effervescence; moderately alkaline, pH 8.2; calcium carbonate 90.0%; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--26 to 45 cm, (10.2 to 17.7 inches); pale yellow (2.5Y 7/3) sandy loam, light yellowish brown (2.5Y 6/3) moist; 65 percent sand; 22 percent silt; 13 percent clay; massive; soft, very friable, nonsticky and nonplastic; violent effervescence; moderately alkaline; calcium carbonate equivalent 80.0%; abrupt smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2A--45 to 50 cm, (17.7 to 19.7 inches); dark gray (10YR 4/1) loam, very dark gray (10YR 3/1) moist; 45 percent sand; 35 percent silt; 20 percent clay; weak fine granular structure; soft, very friable, slightly sticky and slightly plastic; violent effervescence; strongly alkaline, pH 8.6; calcium carbonate equivalent 84.0%; abrupt smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--50 to 155 cm, (19.7 to 61.0 inches); light gray (2.5Y 7/1) loam, light gray (2.5Y 7/1) moist; 45 percent sand; 38 percent silt; 17 percent clay; massive; soft, very friable, slightly sticky and slightly plastic; violent effervescence; strongly alkaline; calcium carbonate equivalent 86.0%." diff --git a/inst/extdata/OSD/K/KARLSRUHE.json b/inst/extdata/OSD/K/KARLSRUHE.json index 60b8967f10..85f392508c 100644 --- a/inst/extdata/OSD/K/KARLSRUHE.json +++ b/inst/extdata/OSD/K/KARLSRUHE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 5 inches; black (10YR 2/1) coarse sandy loam, very dark gray (10YR 3/1) dry; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many fine and very fine roots; disseminated carbonates throughout; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak--5 to 11 inches; very dark gray (10YR 3/1) coarse sandy loam, dark gray (10YR 4/1) dry; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many fine and very fine roots; disseminated carbonates throughout; strong effervescence; slightly alkaline; clear smooth boundary. (Combined A horizons 6 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ABk--11 to 15 inches; very dark gray (10YR 3/1) loamy coarse sand, gray (10YR 5/1) dry; moderate medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common fine roots; disseminated carbonates throughout; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--15 to 20 inches; very dark grayish brown (10YR 3/2) loamy coarse sand, gray (10YR 5/1) dry; common fine faint dark brown (10YR 3/3) redox concentrations; weak medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; common fine roots; disseminated carbonates throughout; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 24 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--20 to 30 inches; dark brown (10YR 3/3) coarse sand, brown (10YR 5/3) dry; many medium faint dark grayish brown (10YR 4/2) redox depletions; single grain; soft, very friable, nonsticky and nonplastic; few very fine roots; disseminated carbonates throughout; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 11 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--30 to 39 inches; very dark grayish brown (10YR 3/2) coarse sand, grayish brown (2.5Y 5/2) dry; many medium faint dark brown (10YR 3/3) redox concentrations; single grain; soft, very friable, nonsticky and nonplastic; few very fine roots; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--39 to 60 inches; dark grayish brown (2.5Y 4/2) coarse sand, olive brown (2.5Y 4/4) dry; many medium distinct light olive brown (2.5Y 5/6) redox concentrations; single grain; loose, nonsticky and nonplastic; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/K/KARLSTAD.json b/inst/extdata/OSD/K/KARLSTAD.json index bf2659786c..226fafc838 100644 --- a/inst/extdata/OSD/K/KARLSTAD.json +++ b/inst/extdata/OSD/K/KARLSTAD.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--45 to 152 centimeters; brown (10YR 5/3) gravelly coarse sand, single grain structure; loose; few fine distinct yellowish brown (10YR 5/6) iron concentrations and few fine distinct light brownish gray (2.5Y 6/2) iron depletions; 40 percent gravel; strong effervescence; slightly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/K/KASOTA.json b/inst/extdata/OSD/K/KASOTA.json index 52dca80287..8ea9484fc5 100644 --- a/inst/extdata/OSD/K/KASOTA.json +++ b/inst/extdata/OSD/K/KASOTA.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--40 to 60 inches; brown (10YR 5/3), grayish brown (10YR 5/2) and olive brown (2.5Y 4/4) sand; single grain; loose; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/K/KAUPO.json b/inst/extdata/OSD/K/KAUPO.json index 1af82a6303..09c2667870 100644 --- a/inst/extdata/OSD/K/KAUPO.json +++ b/inst/extdata/OSD/K/KAUPO.json @@ -89,7 +89,7 @@ "cf_class": "very stony", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 6 inches; very dark brown (10YR 2/2) very stony silty clay loam, dark grayish brown (10YR 4/2) dry; strong very fine and fine subangular blocky structure; hard, friable. slightly sticky and slightly plastic; many fine and very fine roots; many fine pores; common very fine earthy lumps; 35 percent pebbles, cobbles and stones; weak effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/K/KAWAIHAPAI.json b/inst/extdata/OSD/K/KAWAIHAPAI.json index 05a4061402..3c6bc59b1e 100644 --- a/inst/extdata/OSD/K/KAWAIHAPAI.json +++ b/inst/extdata/OSD/K/KAWAIHAPAI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap1--0 to 31 centimeters (0 to 12 inches); brown (7.5YR 4/2) clay loam, very dark brown (7.5YR 2.5/2) moist; weak medium and coarse granular structure; hard, firm, sticky and plastic; many fine and very fine roots; common fine tubular and interstitial pores; about 5 percent gravel; moderate effervescence with hydrogen peroxide; neutral (pH 7.0); gradual smooth boundary. (15 to 31 centimeters {6 to 12 inches} thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--31 to 56 centimeters (12 to 22 inches); brown (7.5YR 4/4) clay loam, dark brown (7.5YR 3/2) moist; weak medium and coarse subangular blocky structure; hard, firm, sticky and plastic; many fine and very fine roots; common fine and very fine tubular pores; 5 percent gravel; moderate effervescence with hydrogen peroxide; neutral (pH 7.3); clear smooth boundary. (15 to 25 centimeters {6 to 10 inches} thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2C1--56 to 81 centimeters (22 to 32 inches); brown (7.5YR 4/4) sandy loam, dark brown (7.5YR 3/2) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; many fine and very fine roots; common fine tubular pores; 5 percent gravel; moderate effervescence with hydrogen peroxide; neutral (pH 7.2); gradual smooth boundary. (20 to 25 centimeters (8 to 10 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--81 to 56 centimeters (32 to 54 inches); brown (7.5YR 4/4) sandy loam, dark brown (7.5YR 3/2) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and fine roots; common fine tubular pores; stratified bands of sand, silt and gravel, moderate effervescence with hydrogen peroxide; neutral (pH 7.0)." diff --git a/inst/extdata/OSD/K/KEAAU.json b/inst/extdata/OSD/K/KEAAU.json index fc187ca30e..790c6d43b8 100644 --- a/inst/extdata/OSD/K/KEAAU.json +++ b/inst/extdata/OSD/K/KEAAU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 15 inches; very dark grayish brown (10YR 3/2) clay, dark grayish brown (10YR 4/2) dry; few fine faint brown mottles, moderate fine and very fine granular structure; hard, firm, very sticky and very plastic; many very fine and fine roots; common medium fine and very fine interstitial pores; common worm holes and casts; many coral sand grains; few fine fragments of weathered basalt; very slight effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; mildly alkaline (pH 7.7); clear wavy boundary. (10 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B21--15 to 26 inches; same color as Ap horizon, silty clay; moderate fine and medium subangular and angular blocky structure; hard, firm, sticky, plastic; common fine and very fine roots; many very fine tubular pores; continuous pressure faces; few coral sand grains; few highly weathered fragments of basalt; slight effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid on sand grains, but none in soil matrix; mildly alkaline (pH 7.4); clear wavy boundary. (8 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "B22--26 to 34 inches; dark brown (7.5YR 3/2) dry clay; many fine distinct yellowish red (5YR 4/6) dry mottles in pores and on faces of peds; strong very fine and fine subangular and angular blocky structure; extremely hard, firm, very sticky and very plastic; common fine and very fine roots; common very fine and fine tubular pores; continuous pressure faces; few fine highly weathered fragments of basalt; strong effervescence with hydrogen peroxide; mildly alkaline (pH 7.5); abrupt smooth boundary. (6 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "IIC1m--34 to 39 inches; pattern of variegated white (10YR 8/2) to light brownish gray (10YR 6/2); very hard consolidated fine shell fragments and coral sand; few fine pores; slight effervescence with hydrogen peroxide; violent effervescence with hydrochloric acid; abrupt wavy boundary. (3 to more than 10 inches thick)" diff --git a/inst/extdata/OSD/K/KEAHUA.json b/inst/extdata/OSD/K/KEAHUA.json index 3014099adf..f817eb67be 100644 --- a/inst/extdata/OSD/K/KEAHUA.json +++ b/inst/extdata/OSD/K/KEAHUA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.2, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ap1--0 to 5 inches; dark reddish brown (5YR 3/2) silty clay loam, dark reddish brown (5YR 3/3) dry; weak very fine granular and weak very fine and fine subangular blocky structure with common clods up to 2 inches in diameter; soft, friable, slightly sticky and plastic; common roots; many very fine pores; common sand-size aggregates that are resistant to crushing; common fine black concretions; violent effervescence with hydrogen peroxide; slightly acid (pH 6.2); gradual wavy boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.2, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--5 to 10 inches; dark reddish brown (5YR 3/3) silty clay loam, dark reddish brown (5YR 3/4) dry; weak coarse and medium subangular blocky structure with common clods up to 2 inches in diameter; soft, friable, slightly sticky and plastic; many roots; many very fine pores; common sand-size aggregates that are resistant to crushing; common fine black concretions; violent effervescence with hydrogen peroxide; slightly acid (pH 6.2); clear wavy boundary. (4 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B1--10 to 15 inches; dark reddish brown (5YR 3/3) silty clay loam, dark reddish brown (5YR 3/4) dry; weak coarse and medium subangular blocky structure; soft, very friable, slightly sticky and plastic; common roots; many fine pores; few sand-size aggregates that are resistant to crushing; few fine black concretions; strong effervescence with hydrogen peroxide; slightly acid (pH 6.3); gradual wavy boundary. (4 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B21--15 to 24 inches; dark reddish brown (5YR 3/3) silty clay loam, dark reddish brown (5YR 3/4) dry; moderate medium and fine subangular blocky structure; slightly hard, friable, slightly sticky and plastic; few roots; many fine and medium pores; firm in place; few sand-size aggregates that are resistant to crushing; few fine black concretions; strong effervescence with hydrogen peroxide; slightly acid (pH 6.5); clear wavy boundary. (8 to 11 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B22--24 to 33 inches; dark reddish brown (5YR 3/3) silty clay loam, dark reddish brown (5YR 3/4) dry; moderate fine and very fine subangular blocky structure; slightly hard, firm, slightly sticky and plastic; few roots; common fine and medium pores; nearly continuous pressure faces; firm in place; few fine black concretions; slight effervescence with hydrogen peroxide; slightly acid (pH 6.5); clear wavy boundary. (8 to 11 inches thick)" diff --git a/inst/extdata/OSD/K/KEALIA.json b/inst/extdata/OSD/K/KEALIA.json index c91cdb750d..a00df0e33e 100644 --- a/inst/extdata/OSD/K/KEALIA.json +++ b/inst/extdata/OSD/K/KEALIA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1sa-3 to 8 inches; dark reddish brown (5YR 3/3) silt loam; reddish brown (5YR 4/3) dry; weak medium and thin platy structure parting into weak medium and fine subangular blocky; soft, friable, slightly sticky and nonplastic; few roots; few pores; slight effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; moderately alkaline (pH 8.2); clear wavy boundary. (4 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2sa--8 to 19 inches; dark reddish brown (5YR 33) loam; reddish brown (5YR 4/3) dry; massive; soft, very friable, nonsticky and nonplastic; common roots; many interstitial pores; the lower 4 inches has weak thin platy structure with some black sand between the plates; has a pseudosand appearance under a hand lens; few black concretions less than 1 mm in size; slight effervescence with hydrogen peroxide; slight effervescence with hydrocholoric acid; moderately alkaline (pH 8.1); clear wavy boundary. (10 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C3sa--19 to 27 inches; dark reddish brown (5YR 3/3) fine sandy loam; reddish brown (5YR 4/3) dry; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic; many roots; many fine pores, few black concretions less than 1 mm in size; slight effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; moderately alkaline (pH 8.2); abrupt wavy boundary. (4 to 9 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C4sa--27 to 34 inches; black (10YR 2/1) fine sandy loam; dark gray (10YR 4/1) dry; single grained; loose; few roots; common weathered coral fragments up to 2 inches in diameter; slight effervescence with hydrochloric acid; mildly alkaline (pH 7.5); clear wavy boundary. (3 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--34 to 63 inches; black (10YR 2/1) silt loam; dark gray (10YR 4/1) dry; massive; hard, very friable, slightly sticky and slightly plastic; common weathered fragments of coral up to 2 inches in diameter; water table is at 35 inches; slight effervescence with hydrochloric acid; mildly alkaline (pH 7.5)." diff --git a/inst/extdata/OSD/K/KEAWAKAPU.json b/inst/extdata/OSD/K/KEAWAKAPU.json index 5b2cc07240..8bc1bb4a88 100644 --- a/inst/extdata/OSD/K/KEAWAKAPU.json +++ b/inst/extdata/OSD/K/KEAWAKAPU.json @@ -89,7 +89,7 @@ "cf_class": "extremely stony", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--0 to 2 inches; dark reddish brown (5YR 3/3) extremely stony silt loam, reddish brown (5YR 4/4) dry; moderate medium and thick platy structure; soft, very friable, slightly sticky and slightly plastic; common fine roots; common fine and very fine pores; has gritty feel; few fine black concretions; 15 to 30 percent stones; delayed strong effervescence with hydrogen peroxide; neutral (pH 7.0); clear wavy boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "stony", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B21--2 to 9 inches; dark reddish brown (5YR 3/3) stony silty clay loam, dark reddish brown (5YR 3/4) dry; weak coarse prismatic structure; soft, friable, sticky and plastic; common fine roots; common fine pores; few hard sand-size aggregates that are resistant to crushing; few fine black concretions; 15 to 30 percent stones; strong effervescence with hydrogen peroxide; neutral (pH 7.2); gradual wavy boundary. (5 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B22--9 to 18 inches; dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/4) dry; moderate fine and very fine subangular blocky structure; slightly hard, friable, sticky and plastic; few fine roots; many fine and medium pores; nearly continuous thin coatings on peds that look like clay films; common hard sand-size aggregates that are resistant to crushing; about 5 percent cobbles and stones; few fine black concretions; strong effervescence with hydrogen peroxide; neutral (pH 7.3); clear wavy boundary. (7 to 10 inches thick)" diff --git a/inst/extdata/OSD/K/KEISER.json b/inst/extdata/OSD/K/KEISER.json index c913881022..b35a820313 100644 --- a/inst/extdata/OSD/K/KEISER.json +++ b/inst/extdata/OSD/K/KEISER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--9 to 12 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common very fine roots; many very fine tubular pores; faint patches of clay coatings and bridging mineral grains; strong effervescence; moderately alkaline; clear wavy boundary. (2 to 5 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--12 to 25 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; weak subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many segregated masses of lime; strong effervescence; gradual wavy boundary. (8 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--25 to 50 inches; light brownish gray (2.5Y 6/2) very fine sandy loam, dark grayish brown (10YR 4/2) moist; massive; soft, very friable, nonsticky and nonplastic; few roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KEITH.json b/inst/extdata/OSD/K/KEITH.json index bff89be626..eda7468238 100644 --- a/inst/extdata/OSD/K/KEITH.json +++ b/inst/extdata/OSD/K/KEITH.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BC--58 to 84 centimeters (23 to 33 inches); light gray (10YR 7/2) silt loam, pale brown (10YR 6/3) moist, weak coarse subangular blocky structure; soft, very friable; violent effervescence; moderately alkaline; gradual smooth boundary. Horizon thickness ranges from 0 to 46 centimeters (0 to 18 inches)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--84 to 152 centimeters (33 to 60 inches); light gray (10YR 7/2) silt loam, pale brown (10YR 6/3) moist; massive; soft, very friable; few accumulations and streaks of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KEKAHA.json b/inst/extdata/OSD/K/KEKAHA.json index 3ca55c0d71..60e510eba3 100644 --- a/inst/extdata/OSD/K/KEKAHA.json +++ b/inst/extdata/OSD/K/KEKAHA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 18 centimeters (0 to 7 inches); dark reddish brown (5YR 3/2) silty clay, dark reddish brown (5YR 3/3) dry; moderate fine and very fine and granular structure; very hard, friable, moderately sticky and moderately plastic; common fine roots; many fine and medium irregular pores; strong effervescence with hydrogen peroxide; slightly alkaline (pH 7.5); clear smooth boundary. (13 to 20 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--18 to 36 centimeters (7 to 14 inches); dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/3) dry; weak and moderate fine and very fine subangular blocky structure; very hard, friable, moderately sticky and moderately plastic; common fine roots; many fine and medium irregular pores; slight effervescence with hydrogen peroxide; slightly alkaline (pH 7.5); clear smooth boundary. (15 to 20 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ab--36 to 52 centimeters (14 to 21 inches); dark reddish brown 5YR 3/3) silty clay, bands of dark reddish brown (5YR 2/2), reddish brown (5YR 4/4) dry; weak fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common fine roots; many fine and medium tubular pores; few, patchy, distinct clay films on surfaces along pores and on peds; slight effervescence with hydrogen peroxide; slightly alkaline (pH 7.6); abrupt smooth boundary. (13 to 23 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--52 to 71 centimeters (21 to 28 inches), dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/4) dry; massive, parting to weak medium subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; few fine roots; many fine and medium tubular pores; slight effervescence with hydrogen peroxide; slightly alkaline (pH 7.5); gradual wavy boundary. (13 to 23 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--71 to 112 centimeters (28 to 44 inches); dark reddish brown (2.5YR 3/4) clay, reddish brown (2.5YR 4/3) dry; weak medium and coarse prismatic structure; very hard, firm, moderately sticky and moderately plastic; few fine roots; many fine and medium tubular pores; slight effervescence with hydrogen peroxide; slightly alkaline (pH 7.5); gradual wavy boundary. (31 to 51 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bt--112 to 178 centimeters (44 to 70 inches); dark reddish brown (2.5YR 3/4) clay, weak red (2.5YR 4/2) dry; weak medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few roots; many fine tubular pores; common, patchy, distinct clay films along surfaces of pores and on peds; slight effervescence with hydrogen peroxide; neutral (pH 7.3)." diff --git a/inst/extdata/OSD/K/KELVIN.json b/inst/extdata/OSD/K/KELVIN.json index 4d2fda982b..a6e7af9855 100644 --- a/inst/extdata/OSD/K/KELVIN.json +++ b/inst/extdata/OSD/K/KELVIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt2--15 to 27 inches; very dark grayish brown (10YR 3/2) clay loam, dark brown (10YR 3/3) crushed, grayish brown (10YR 5/2) dry; few medium distinct dark yellowish brown (10YR 4/4) mottles; moderate medium and coarse prismatic structure parting to strong fine and medium angular blocky; very hard, very firm, sticky and plastic; few fine roots; continuous prominent clay films on faces of peds and lining pores; slight effervescence; slightly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt3--27 to 41 inches; dark brown (10YR 3/3) clay loam, grayish brown (10YR 5/2) dry; common fine distinct dark yellowish brown (10YR 3/4) and few fine distinct brown (7.5YR 4/4) mottles; moderate coarse prismatic structure parting to moderate medium angular blocky; very hard, very firm, sticky and plastic; few fine roots; many distinct clay films on faces of peds; few fine carbonate coatings in root channels and on faces of peds; slight effervescence; slightly alkaline; gradual smooth boundary. (Combined Bt horizons 13 to 38 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--41 to 60 inches; light brownish gray (10YR 6/2) clay loam, dark grayish brown (10YR 4/2) crushed, light brownish gray (10YR 6/2) dry; few fine distinct brown (7.5YR 4/4) mottles; weak very coarse prismatic structure; very hard, firm, sticky and plastic; few fine roots; few fine carbonate coatings in root channels and on faces of peds; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KEMOO.json b/inst/extdata/OSD/K/KEMOO.json index 9624283401..686ac66406 100644 --- a/inst/extdata/OSD/K/KEMOO.json +++ b/inst/extdata/OSD/K/KEMOO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 4 inches; very dusky red (2.5YR 2/2) silty clay, dusky red (2.5YR 3/2) dry; moderate very fine granular and subangular blocky structure; very hard, firm, sticky and plastic; many fine, medium and coarse roots; common very fine and fine interstitial and tubular pores; strong effervescence with hydrogen peroxide; slightly acid (pH 6.5); clear smooth boundary. (3 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap2--4 to 12 inches; dark reddish brown (2.5YR 3/3) dry and moist silty clay; strong very fine and fine subangular blocky structure; hard, firm, sticky and plastic; many fine, medium and coarse roots; many very fine tubular pores; strong effervescence with hydrogen peroxide; slightly acid (pH 6.3); gradual smooth boundary. (6 to 9 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "B1--12 to 20 inches; dark reddish brown (2.5YR 3/4) silty clay, dark red (2.5YR 3/6) dry; moderate medium subangular blocky structure parting to strong fine and very fine subangular blocky; hard, firm, sticky and plastic; many fine, medium and coarse roots; many very fine tubular pores; thin patchy clay films on peds; slight effervescence with hydrogen peroxide; slightly acid (pH 6.5); abrupt smooth boundary. (6 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B21t--20 to 34 inches; same color and texture as above; moderate medium subangular structure parting to strong very fine subangular and angular blocky; slightly hard, friable, sticky and very plastic; common medium and fine roots; many very fine and fine tubular pores; thin continuous clay films on peds; and few lined pores; slight effervescence with hydrogen peroxide; neutral (pH 6.B); clear wavy boundary. (12 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B22t--34 to 58 inches; dusky red (10R 3/4) silty clay, dark red (10R 3/6) dry; moderate medium and coarse subangular parting to strong fine and very fine angular and subangular blocky; hard and brittle, friable, sticky and very plastic; many medium, few fine and coarse roots; common very fine and fine tubular pores; moderately thick continuous clay films on peds and in pores; few slickensides; slight effervescence with hydrogen peroxide; neutral (pH 7.2); gradual smooth boundary. (20 to 26 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.1, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B23t--58 to 66 inches; same color, texture, structure and consistence as above; few coarse roots; many very fine tubular pores; moderately thick continuous clay films on peds and in pores; common slickensides; slight effervescence with hydrogen peroxide; neutral (pH 7.1)." diff --git a/inst/extdata/OSD/K/KENESAW.json b/inst/extdata/OSD/K/KENESAW.json index 9910713af3..3197597cdc 100644 --- a/inst/extdata/OSD/K/KENESAW.json +++ b/inst/extdata/OSD/K/KENESAW.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--56 to 152 centimeters (22 to 60 inches); light gray (2.5Y 7/2) silt loam, light brownish gray (2.5Y 6/2) moist; massive; slightly hard; very friable; slightly alkaline; strong effervescence." diff --git a/inst/extdata/OSD/K/KENHILL.json b/inst/extdata/OSD/K/KENHILL.json index 7ea1289785..7796c1c5cd 100644 --- a/inst/extdata/OSD/K/KENHILL.json +++ b/inst/extdata/OSD/K/KENHILL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slightly effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bt3--52 to 72 cm (20 to 28 in); strong brown (7.5YR 5/6) sandy clay loam, strong brown (7.5YR 4/6) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, firm; moderately sticky and moderately plastic; common fine roots throughout; common discontinuous and distinct clay films on ped surfaces; very slightly effervescence; slightly alkaline; abrupt smooth boundary. (Combined thickness of the Bt horizons is 40 to 80 cm [16 to 31 in].)" diff --git a/inst/extdata/OSD/K/KENSAL.json b/inst/extdata/OSD/K/KENSAL.json index 3d8c6b0936..5ff4611be9 100644 --- a/inst/extdata/OSD/K/KENSAL.json +++ b/inst/extdata/OSD/K/KENSAL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--24 to 32 inches; dark grayish brown (2.5Y 4/2) loamy sand, light brownish gray (2.5Y 6/2) dry; single grain; loose, slightly sticky and slightly plastic; few shale pebbles 2 to 10 mm in diameter; about 90 percent shale in the 0.1 to 76 mm fraction; slight effervescence; slightly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--32 to 60 inches; dark grayish brown (2.5Y 4/2) gravelly sand, light brownish gray (2.5Y 6/2) dry; single grain; nonsticky and nonplastic; some crossbedding; about 40 percent gravel; about 70 percent shale in the 0.1 to 76 mm fraction; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KENTLAND.json b/inst/extdata/OSD/K/KENTLAND.json index 6095264242..1f74a8a597 100644 --- a/inst/extdata/OSD/K/KENTLAND.json +++ b/inst/extdata/OSD/K/KENTLAND.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Oa--12 to 16 inches; very dark grayish brown (10YR 3/2) broken face sapric material containing marl; dark grayish brown (10YR 4/2) rubbed; 20 percent fiber; 3 percent rubbed; weak medium platy structure; friable; few fine roots; many very pale brown (10YR 7/3), light yellowish brown (10YR 6/4) and white (10YR 8/2) accumulations of marl; mostly herbaceous fiber; strong effervescence; moderately alkaline; abrupt wavy boundary. (3 to 8 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "3C1--16 to 22 inches; light yellowish brown (10YR 6/4) fine sand; single grain; loose; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "3C2--22 to 27 inches; dark yellowish brown (10YR 4/4) fine sand; common medium distinct brownish yellow (10YR 6/6) mottles; single grain; loose; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "3C3--27 to 47 inches; yellowish brown (10YR 5/6) fine sand; single grain; loose; strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C4--47 to 60 inches; grayish brown (2.5Y 5/2) fine sand; many coarse faint light olive brown (2.5Y 5/4) mottles; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KHYBER.json b/inst/extdata/OSD/K/KHYBER.json index 153e7c7738..f628628534 100644 --- a/inst/extdata/OSD/K/KHYBER.json +++ b/inst/extdata/OSD/K/KHYBER.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1 -- 8 to 23 inches; brown (7.5YR 5/4) very gravelly sandy clay loam, brown (7.5YR 4/4) moist; massive; moderately hard, very friable, slightly sticky and nonplastic; few very fine roots; few very fine and fine interstitial and tubular pores; 60 percent distinct discontinuous clay films between sand grains and on sand and gravel; 5 percent of matrix has slightly hard, very friable, lime cementation in bands and pockets, violently effervescent; 95 percent of matrix is noneffervescent; 45 percent gravel; slightly alkaline (pH 7.8); clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk2 -- 23 to 39 inches; brown (7.5YR 5/4) very gravelly loamy coarse sand, brown (7.5YR 4/4) moist; massive; moderately hard, very friable, slightly sticky and nonplastic; few very fine roots; few very fine and fine interstitial and tubular pores; 60 percent distinct discontinuous clay films between sand grains and on sand and gravel; 5 percent of matrix has slightly hard, very friable, lime cementation in bands and pockets, violently effervescent; 95 percent of matrix is noneffervescent; 45 percent gravel; slightly alkaline (pH 7.8); clear wavy boundary. (Combined thickness of the Btk horizon is 15 to 30 inches)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bkq -- 39 to 60 inches; pale brown (10YR 6/3) very gravelly coarse sand, brown (10YR 4/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; few very fine roots; common very fine interstitial pores; 20 percent of matrix has moderately hard, very friable, lime and silica cementation in bands and pockets, violently effervescent; 75 percent of matrix is noneffervescent; 50 percent gravel; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/K/KIBIN.json b/inst/extdata/OSD/K/KIBIN.json index 8ff2b843dc..b84b2cf118 100644 --- a/inst/extdata/OSD/K/KIBIN.json +++ b/inst/extdata/OSD/K/KIBIN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btkb1--19 to 27 inches; light brownish gray (10YR 6/2) crushed, loam, brown (10YR 4/3) crushed, moist; 43 percent sand; 34 percent silt; 23 percent clay; moderate coarse prismatic structure parting to moderate medium prismatic structure parting to moderate coarse subangular blocky structure parting to moderate medium subangular blocky structure; firm, moderately hard, moderately sticky, moderately plastic; common fine roots throughout and common very fine roots throughout; common fine irregular and common fine dendritic tubular and common very fine irregular and common very fine dendritic tubular pores; common distinct clay films on bottom surfaces of rock fragments and common distinct clay films on all faces of peds; carbonate masses on bottom of rock fragments; 1 percent fine gravel and 1 percent medium gravel; slight effervescence; slightly alkaline (pH 7.6); clear wavy boundary. (0 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btkb2--27 to 37 inches; grayish brown (10YR 5/2) crushed, clay loam, very dark grayish brown (10YR 3/2) crushed, moist; 23 percent sand; 39 percent silt; 38 percent clay; strong coarse prismatic structure parting to strong medium prismatic structure parting to strong medium angular blocky structure parting to strong fine angular blocky structure; very firm, hard, very sticky, very plastic; common fine roots throughout and common very fine roots throughout; common fine irregular and common fine dendritic tubular and common very fine irregular and common very fine dendritic tubular pores; common distinct clay films on bottom surfaces of rock fragments and common distinct clay films on all faces of peds; carbonate masses on bottom of rock fragments; 2 percent fine gravel and 3 percent medium gravel and 3 percent coarse gravel; slight effervescence; slightly alkaline (pH 7.6); clear wavy boundary. (0 to 12 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "extremely gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btk--37 to 52 inches; brown (7.5YR 4/4) crushed, extremely gravelly loamy coarse sand, brown (7.5YR 4/3) crushed, moist; 85 percent sand; 4 percent silt; 11 percent clay; weak fine subangular blocky structure; very friable, soft, slightly sticky, slightly plastic; common fine roots throughout and common very fine roots throughout; common fine irregular and common fine dendritic tubular and common very fine irregular and common very fine dendritic tubular pores; common prominent clay films on bottom surfaces of rock fragments; carbonate masses on bottom of rock fragments; 14 percent fine gravel and 53 percent coarse gravel; slight effervescence; slightly alkaline (pH 7.4); gradual wavy boundary. (10 to 20 inches thick)" diff --git a/inst/extdata/OSD/K/KIESEL.json b/inst/extdata/OSD/K/KIESEL.json index 0093525e13..2f8dc55757 100644 --- a/inst/extdata/OSD/K/KIESEL.json +++ b/inst/extdata/OSD/K/KIESEL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 4 inches; light gray (10YR 7/2) silt loam, brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; many very fine pores; few very fine and fine roots; weakly effervescent; strongly akaline (pH8.6); abrupt smooth boundary. (4 to 7 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C2ca--22 to 40 inches; light gray (10YR 7/1) loam and very fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; strongly effervescent; very strongly effervescent (pH 9.6 and higher)." diff --git a/inst/extdata/OSD/K/KINDRED.json b/inst/extdata/OSD/K/KINDRED.json index e9abafda17..38924c3a06 100644 --- a/inst/extdata/OSD/K/KINDRED.json +++ b/inst/extdata/OSD/K/KINDRED.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--22 to 31 inches; olive (5Y 5/3) silty clay loam, light gray (5Y 7/2) dry; weak medium and fine subangular blocky structure; slightly hard, friable, sticky and plastic; common fine distinct grayish brown (2.5Y 5/2) redoximorphic depletions; few very fine roots; common very fine pores; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--31 to 42 inches; light yellowish brown (2.5Y 6/3) silty clay loam, pale yellow (2.5Y 7/3) dry; weak coarse subangular blocky structure; slightly hard, friable, sticky and plastic; many fine prominent gray (10YR 6/1) redoximorphic depletions and few fine distinct yellowish brown (10YR 5/4) redoximorphic concentrations; common very fine pores; few irregularly shaped masses of lime; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 6 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--42 to 53 inches; light olive brown (2.5Y 5/3) varved silty clay loam and silt loam, pale yellow (2.5Y 7/3) dry; massive; slightly hard, firm, sticky and plastic; common fine prominent dark yellowish brown (10YR 4/6) redoximorphic concentrations and many fine prominent gray (10YR 6/1) redoximorphic depletions; few very fine pores; common nests of gypsum crystals; strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--53 to 60 inches; light olive brown (2.5Y 5/3) varved silty clay loam and silt loam, pale yellow (2.5Y 7/3) dry; massive; hard, firm, sticky and plastic; many medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations and gray (10YR 6/1) redoximorphic depletions; few very fine pores; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KINGCO.json b/inst/extdata/OSD/K/KINGCO.json index e1c66d29f5..f9c3d106f3 100644 --- a/inst/extdata/OSD/K/KINGCO.json +++ b/inst/extdata/OSD/K/KINGCO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "BC--51 to 82 inches; reddish brown (5YR 5/4) silty clay loam, reddish brown (5YR 4/4) moist; weak coarse prismatic structure parting to moderate fine and angular blocky; very hard, very firm; few very fine and fine roots; few fine pores; few fine concretions of calcium carbonate; moderately alkaline; ped faces are slightly effervescent; soil matrix mostly noneffervescent." diff --git a/inst/extdata/OSD/K/KINGFISHER.json b/inst/extdata/OSD/K/KINGFISHER.json index f318ac54b3..f16be6d781 100644 --- a/inst/extdata/OSD/K/KINGFISHER.json +++ b/inst/extdata/OSD/K/KINGFISHER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--97 to 122 cm (38 to 48 in); red (2.5YR 5/8) weathered silty shale, red (2.5YR 4/8) moist; weakly effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/K/KINGMAN.json b/inst/extdata/OSD/K/KINGMAN.json index 2e8579e5e9..c0432111c6 100644 --- a/inst/extdata/OSD/K/KINGMAN.json +++ b/inst/extdata/OSD/K/KINGMAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A1--0 to 10 inches; very dark gray (10YR 3/1) silty clay loam, gray (10YR 5/1) dry; moderate medium granular structure; hard, firm; many roots; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--10 to 18 inches; very dark grayish brown (10YR 3/2) silty clay loam, gray (10YR 5/1) dry; strong medium granular structure; hard, firm; many roots; violent effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the A horizon is 10 to 24 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bkg1--18 to 40 inches; grayish brown (10YR 5/2) silty clay loam, light gray (10YR 6/1) dry; common medium distinct light yellowish brown (10YR 6/4) irregularly shaped masses of iron accumulation with diffuse boundaries; moderate medium subangular blocky structure; hard, firm; common roots; a few thin strata of dark grayish brown (10YR 4/2) material; common concretions and soft accumulations of carbonates; violent effervescence; moderately alkaline; diffuse smooth boundary. (10 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkg2--40 to 50 inches; grayish brown (10YR 5/2) silty clay loam, light gray (10YR 6/1) dry; common medium distinct very pale brown (10YR 7/4) irregularly shaped masses of iron accumulation with diffuse boundaries; moderate fine subangular blocky structure; hard, firm; few fine roots; common soft accumulations of carbonates; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--50 to 60 inches; pale brown (10YR 6/3) sandy loam, very pale brown (10YR 7/3) dry; common medium distinct reddish yellow (7.5YR 7/6) irregularly shaped masses of iron accumulation with diffuse boundaries; moderate fine subangular blocky structure; massive; soft, very friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KINGS_LAKE.json b/inst/extdata/OSD/K/KINGS_LAKE.json index 0860bd78db..e4668671d3 100644 --- a/inst/extdata/OSD/K/KINGS_LAKE.json +++ b/inst/extdata/OSD/K/KINGS_LAKE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--69 to 91 centimeters (27 to 36 inches); olive brown (2.5Y 4/4) silt loam, light yellowish brown (2.5Y 6/4) dry; weak fine and medium prismatic structure parting to moderate fine and medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; few very fine roots; many very fine pores; strata of loam to silty clay loam; 17 percent calcium carbonate equivalent; common fine and medium masses of calcium carbonate; violent effervescence; moderately alkaline; gradual wavy boundary. [Bk horizon 0 to 66 centimeters (26 inches) thick]" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk2--91 to 132 centimeters (36 to 52 inches); light yellowish brown (2.5Y 6/3) clay loam, pale yellow (2.5Y 7/3) dry; common fine and medium prominent dark yellowish brown (10YR 4/6) redoximorphic concentrations; weak medium prismatic structure parting to weak fine and medium subangular blocky structure; hard, firm, moderately sticky, moderately plastic; few very fine roots; common very fine pores; 14 percent calcium carbonate equivalent; common fine masses of calcium carbonate; strong effervescence; moderately alkaline; 5 percent gravel; gradual wavy boundary. [2Bk horizon thickness is 25 to 76 centimeters (10 to 30 inches)]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--132 to 203 centimeters (52 to 80 inches); olive brown (2.5Y 4/3) clay loam, light yellowish brown (2.5Y 6/3) dry; common fine and medium prominent dark yellowish brown (10YR 4/6) redoximorphic concentrations and few fine and medium distinct gray (2.5Y 6/1) redoximorphic depletions; massive; hard, firm, moderately sticky, moderately plastic; few very fine pores; 10 percent calcium carbonate equivalent; few fine masses of calcium carbonate; strong effervescence; moderately alkaline; 5 percent gravel." diff --git a/inst/extdata/OSD/K/KINZIE.json b/inst/extdata/OSD/K/KINZIE.json index 2f40ba85fd..8748ebdb92 100644 --- a/inst/extdata/OSD/K/KINZIE.json +++ b/inst/extdata/OSD/K/KINZIE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkb1--17 to 20 inches; yellowish brown (10YR 5/4) silty clay loam, dark yellowish brown (10YR 4/4) moist; strong medium and coarse prismatic structure; very hard, very firm, sticky and plastic; common very fine, fine and few medium and coarse roots; common very fine and fine tubular pores; many prominent clay films on faces of peds; 2 percent gravel and 5 percent cobbles at 20 inches; slightly effervescent with strongly effervescent veins (15 percent calcium carbonate equivalent); slightly alkaline (pH 7.4); clear wavy boundary. (3 to 10 inches thick)" diff --git a/inst/extdata/OSD/K/KIPSON.json b/inst/extdata/OSD/K/KIPSON.json index 947961e356..17ccffaca3 100644 --- a/inst/extdata/OSD/K/KIPSON.json +++ b/inst/extdata/OSD/K/KIPSON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 20 centimeters (0 to 8 inches); dark gray (10YR 4/1) silty clay loam, very dark gray (10YR 3/1) moist; moderate medium and fine granular structure; slightly hard, friable; many fine and very fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (6 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--20 to 33 centimeters (8 to 13 inches); brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; weak fine subangular blocky structure; slightly hard, friable; common fine and very fine roots; 10 percent gravel, mostly shale; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--33 to 48 centimeters (13 to 19 inches); yellow (10YR 7/6) and very pale brown (10YR 7/3) channery silty clay loam, brownish yellow (10YR 6/6) and pale brown (10YR 6/3) moist; massive; slightly hard, friable; few fine and very fine roots; roots spread horizontally on contact with Cr horizon; 30 percent gravel, mostly shale; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/K/KIRLEY.json b/inst/extdata/OSD/K/KIRLEY.json index c57c914939..affd92b2ee 100644 --- a/inst/extdata/OSD/K/KIRLEY.json +++ b/inst/extdata/OSD/K/KIRLEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt2--14 to 17 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to moderate medium subangular blocky; very hard, very firm, sticky and plastic; shiny film on faces of peds; slight effervescence; moderately alkaline; clear smooth boundary. (Combined Bt horizons is 8 to 16 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--17 to 31 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm, sticky and plastic; shiny film on faces of peds; common fine soft accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--31 to 52 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak medium and coarse subangular blocky structure; hard, firm, slightly sticky and slightly plastic; common fine accumulations of carbonate; violent effervescence; moderately alkaline; gradual smooth boundary. (8 to 30 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--52 to 60 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; massive; soft, friable; few fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KISSICK.json b/inst/extdata/OSD/K/KISSICK.json index 5d05c4a894..3bdd28bed7 100644 --- a/inst/extdata/OSD/K/KISSICK.json +++ b/inst/extdata/OSD/K/KISSICK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C1--25 to 33 inches; brown (10YR 5/3) heavy clay loam, brown (10YR 4/3) moist; few tongues of dark gray (10YR 4/1), very dark grayish brown (10YR 3/2) moist; massive; hard, firm, moderately sticky and moderately plastic; strong effervescence with many medium sized distinct lime mottles or soft lime concretions; moderately alkaline (pH 8.2); gradual boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C2--33 to 42 inches; pale brown (10YR 6/3) clay loam, brown (10YR 4/3) moist; massive; slightly hard, friable, moderately sticky and moderately plastic; few fine faint lime mottles; slight effervescence; moderately alkaline (pH 8.3); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--42 to 60 inches; light yellowish brown (10YR 6/4) light clay loam, brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; slight effervescence." diff --git a/inst/extdata/OSD/K/KITCHELL.json b/inst/extdata/OSD/K/KITCHELL.json index 18dd7566f7..12dea4ca79 100644 --- a/inst/extdata/OSD/K/KITCHELL.json +++ b/inst/extdata/OSD/K/KITCHELL.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": 7, "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 5 inches (0 to 13 cm); very dark grayish brown (10YR 3/2) gravelly loam, very dark brown (10YR 2/2) moist; weak fine granular structure; slightly hard, friable, moderately plastic; common fine and few very fine roots; few fine pores; noneffervescent in the matrix; fine nodules and gravel show strong effervescence; neutral (pH 7.0); clear smooth boundary. (3 to 6 inches (8 to 15 cm) thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 7, "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--5 to 14 inches (13 to 36 cm); very dark grayish brown (10YR 3/2) gravelly loam, very dark brown (10YR 2/2) moist; weak medium subangular blocky structure; slightly hard, friable, moderately plastic; few fine, very fine, medium and coarse roots; few very fine pores; soil mass is noneffervescent; gravel and fine nodules show strong effervescence; neutral (pH 7.0); clear wavy boundary. (7 to 13 inches (18 to 33 cm) thick)" diff --git a/inst/extdata/OSD/K/KITTITAS.json b/inst/extdata/OSD/K/KITTITAS.json index bf36303e59..59efca4163 100644 --- a/inst/extdata/OSD/K/KITTITAS.json +++ b/inst/extdata/OSD/K/KITTITAS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 2 inches; gray (10YR 5/1) silt loam, black (10YR 2/1) moist, weak thin platy structure; soft, friable, slightly sticky and slightly plastic; many saltgrass stolons and many roots; many very fine irregular pores; slight effervescence; strongly alkaline (pH 8.6); clear smooth boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A2--2 to 7 inches; very dark grayish brown (10YR 3/2) silt loam, black (10YR 2/1) moist; weak medium platy structure; slightly hard, friable, slightly sticky and slightly plastic; many roots; common fine pores; strong effervescence; very strongly alkaline (pH 9.4); gradual wavy boundary. (2 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A3--7 to 18 inches; dark grayish brown (10YR 4/2) heavy silt loam, very dark brown (10YR 2/2) moist; moderate fine subangular blocky structure parting to strong fine granular; hard, firm, sticky and plastic; common roots; common fine pores; violent effervescence; strongly alkaline (pH 9.0); gradual wavy boundary. (0 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--18 to 24 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, friable, sticky and plastic; few roots; many fine pores; some root channels filled with material that is black (10YR 2/1) moist; violent effervescence; some light gray (10YR 7/2) filled with material that is black (10YR 2/1) moist; violent effervescence; some light gray (10YR 7/2) segregated and mycelial lime; moderately alkaline (pH 8.4); abrupt wavy boundary. (4 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--24 to 34 inches; pale brown (10YR 6/3) silt loam, dark brown loam (10YR 4/3) moist; massive; slightly hard, friable, sticky and plastic; few roots; many fine and medium pores; slight effervescence; moderately alkaline (pH 8.2); gradual wavy boundary. (6 to 12 inches thick)" diff --git a/inst/extdata/OSD/K/KITTSON.json b/inst/extdata/OSD/K/KITTSON.json index 89d22262b7..511dd2f4d5 100644 --- a/inst/extdata/OSD/K/KITTSON.json +++ b/inst/extdata/OSD/K/KITTSON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk1--17 to 27 inches; pale brown (10YR 6/3) loam; very pale brown (10YR 7/3) dry; weak very fine subangular blocky structure; very friable; many roots; few light gray (5Y 7/2) lime masses; about 2 percent gravel; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bk2--27 to 36 inches; light yellowish brown (2.5Y 6/3) loam; common fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations; weak very fine subangular blocky structure; very friable; common roots; few light gray (5Y 7/2) lime masses; about 2 percent gravel; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined 2Bk horizons 0 to 28 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--36 to 60 inches; light olive gray (5Y 6/2) loam; many fine and medium prominent strong brown (7.5YR 5/6) and brownish yellow (10YR 6/6) redoximorphic concentrations; massive; very friable; about 2 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KIWANIS.json b/inst/extdata/OSD/K/KIWANIS.json index 3e6bd0feb0..c9dbd46063 100644 --- a/inst/extdata/OSD/K/KIWANIS.json +++ b/inst/extdata/OSD/K/KIWANIS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--9 to 36 inches; very pale brown (10YR 8/3) fine sandy loam and pale brown (10YR 6/3) loam, pale brown (10YR 6/3) and yellowish brown (10YR 5/6) moist; massive; soft, very friable, nonsticky, nonplastic; moderate effervescence; moderately alkaline (pH 8.3); abrupt boundary. (18 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--36 to 58 inches; light gray (10YR 7/2) coarse sand, light brownish gray (10YR 6/2) moist; single grained; loose; moderate effervescence; moderately alkaline. (10 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--58 to 60 inches; light gray (10YR 7/2) gravel and sand, light brownish gray (10YR 6/2) moist; single grained; loose; moderate effervescence." diff --git a/inst/extdata/OSD/K/KLAWASI.json b/inst/extdata/OSD/K/KLAWASI.json index b0ee23e9a4..4d77368c29 100644 --- a/inst/extdata/OSD/K/KLAWASI.json +++ b/inst/extdata/OSD/K/KLAWASI.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cf--14 to 24 inches; olive gray (5Y 4/2) silty clay; 5 percent subangular gravel and cobble; moderately alkaline (pH 8.2); weakly effervescent; disseminated lime; frozen on August 23, 1983." diff --git a/inst/extdata/OSD/K/KNIFERIVER.json b/inst/extdata/OSD/K/KNIFERIVER.json index c60964ee58..64d2ca408d 100644 --- a/inst/extdata/OSD/K/KNIFERIVER.json +++ b/inst/extdata/OSD/K/KNIFERIVER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C/B--33 to 122 centimeters; light olive brown (2.5Y 5/3) and light yellowish brown (2.5Y 6/3) clay loam, olive brown (2.5Y 4/3) and light olive brown (2.5Y 5/3) moist; moderate medium and coarse cloddy structure; friable, moderately hard; moderately sticky and moderately plastic; few very fine and fine roots throughout; few very fine low-continuity tubular pores; strong effervescence; 10% soft masses of lime from original Bk horizon; abrupt smooth boundary. (2C/B horizon 63 to 102 centimeters thick)." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C-- 122 to 203 centimeters; grayish brown (2.5Y 5/2) and light olive brown (2.5Y 5/3) clay loam, dark grayish brown (2.5Y 4/2) and olive brown (2.5Y 4/3) moist; 1 percent fine prominent irregular light olive brown (10YR 5/6) moist relict concentrations: massive; firm, hard; moderately sticky and moderately plastic; few very fine roots throughout; few very fine low-continuity tubular pores; slight effervescence; 2% lignite fragments." diff --git a/inst/extdata/OSD/K/KOEHLER.json b/inst/extdata/OSD/K/KOEHLER.json index 473f534938..cc1d20f917 100644 --- a/inst/extdata/OSD/K/KOEHLER.json +++ b/inst/extdata/OSD/K/KOEHLER.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--4 to 12 inches; light brownish gray (10YR 6/2) loamy sand, very dark grayish brown (10YR 3/2) moist; single grain; loose; common roots; moderately alkaline (pH 7.9); slight effervescence with dilute HCL; clear wavy boundary. (2 to 16 inches thick)" diff --git a/inst/extdata/OSD/K/KOELE.json b/inst/extdata/OSD/K/KOELE.json index 6099c06491..d935eec0b1 100644 --- a/inst/extdata/OSD/K/KOELE.json +++ b/inst/extdata/OSD/K/KOELE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.5, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 46 centimeters (0 to 18 inches); dark brown (7.5YR 3/2) silty clay loam, brown (7.5YR 4/2) dry; strong fine subangular blocky structure parting to strong fine granular; hard, friable, slightly sticky and slightly plastic; many fine and medium roots; many fine and medium interstitial pores; 12 percent gravel; moderate effervescence with hydrogen peroxide; very strongly acid (pH 4.5); abrupt smooth boundary. (43 to 48 centimeters {17 to 19 inches} thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "AC--46 to 84 centimeters (18 to 33 inches); dark brown (7.5YR 3/2) gravelly silty clay loam, brown (7.5YR 4/2) dry; weak fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine roots in upper part; common fine interstitial pores; 20 percent gravel; moderate effervescence with hydrogen peroxide; moderately acid (pH 6.0); abrupt wavy boundary. (33 to 43 centimeters {13 to 17 inches} thick)" diff --git a/inst/extdata/OSD/K/KOHALA.json b/inst/extdata/OSD/K/KOHALA.json index 529c08cd80..787365178a 100644 --- a/inst/extdata/OSD/K/KOHALA.json +++ b/inst/extdata/OSD/K/KOHALA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "non effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--69 to 99 centimeters (27 to 39 inches); dark yellowish brown (10YR 3/4) silty clay, brown (10YR 4/3) dry; strong fine and very fine subangular blocky structure; hard, friable, sticky and plastic; few roots; few pressure faces; few gravel size fragments of saprolite; few black coatings; non effervescent with hydrogen peroxide; neutral (pH 6.6); clear smooth boundary. (25 to 38 centimeters {10 to 15 inches} thick)" diff --git a/inst/extdata/OSD/K/KOKEE.json b/inst/extdata/OSD/K/KOKEE.json index 7c0b10c302..3a1da88432 100644 --- a/inst/extdata/OSD/K/KOKEE.json +++ b/inst/extdata/OSD/K/KOKEE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 4 inches; dark brown (7.5YR 3/2) silty clay loam, brown (7.5YR 4/2) dry; moderate fine and very fine subangular blocky structure; hard, friable, sticky and plastic; many roots; moderate, delayed effervescence with hydrogen peroxide; very strongly acid (pH 5.0); clear smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 4.7, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--4 to 8 inches; dark brown (7.5YR 3/3) silt loam, brown (7.5YR 4/3) dry; weak fine subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; many roots; many fine pores; slight, delayed effervescence with hydrogen peroxide; very strongly acid (pH 4.7); clear smooth boundary. (0 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--8 to 14 inches; dark brown (7.5YR 4/4) silty clay loam, strong brown (7.5YR 4/6) dry; weak fine subangular blocky structure; slightly hard, friable, sticky, plastic, and weakly smeary; many roots; many fine and very fine pores; slight, delayed effervescence with hydrogen peroxide; very strongly acid (pH 4.8); clear smooth boundary. (0 to 6 inches thick)" diff --git a/inst/extdata/OSD/K/KOKOKAHI.json b/inst/extdata/OSD/K/KOKOKAHI.json index 3a5410102e..854242e24b 100644 --- a/inst/extdata/OSD/K/KOKOKAHI.json +++ b/inst/extdata/OSD/K/KOKOKAHI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A11--0 to 2 inches; very dark gray (10YR 3/1) dry or moist clay; strong fine granular structure; extremely hard, very firm, very sticky and very plastic; many fine and very fine roots; common fine black concretions; few fine angular fragments of basalt; moderate effervescence with hydrogen peroxide; slightly acid (pH 6.1); clear smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A12--2 to 14 inches; dark gray (10YR 4/1) dry or moist clay; strong fine subangular blocky structure; very hard, very firm, very sticky and very plastic; common very fine roots, few medium roots; common very fine and fine tubular pores; few fine black concretions; few fine angular fragments of basalt; moderate effervescence with hydrogen peroxide; neutral (pH 6.8); gradual smooth boundary. (8 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--14 to 26 inches; dark grayish brown (2.5Y 4/2) dry or moist clay; irregularly shaped large blocks part into moderate fine subangular blocky structure; many distinct slickensides; extremely hard, very firm, very sticky and very plastic; common very fine roots, few medium roots; many very fine tubular pres; common black stains; few gravel size fragments of basalt; slight effervescence with hydrogen peroxide; mildly alkaline (pH 7.4); gradual smooth boundary. (10 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--26 to 38 inches; grayish brown (2.5Y 5/2) dry or moist clay; irregularly shaped large blocks part to moderate fine and medium subangular blocky structure; common deeply grooved slickensides; extremely hard, very firm, very sticky and very plastic; few very fine roots; few very fine tubular pores; common black stains; few fragments of basalt; common fine gypsum crystals; slight effervescence with hydrogen peroxide; neutral (pH 7.2); abrupt boundary. (8 to 14 inches thick)" diff --git a/inst/extdata/OSD/K/KOLBERG.json b/inst/extdata/OSD/K/KOLBERG.json index e09870e15c..929edc0b7e 100644 --- a/inst/extdata/OSD/K/KOLBERG.json +++ b/inst/extdata/OSD/K/KOLBERG.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--74 cm (29 inches); white (N 8/0 ) fractured dolomite; slight effervescence." diff --git a/inst/extdata/OSD/K/KOLEKOLE.json b/inst/extdata/OSD/K/KOLEKOLE.json index 4af2f894a7..b2bcb55b8f 100644 --- a/inst/extdata/OSD/K/KOLEKOLE.json +++ b/inst/extdata/OSD/K/KOLEKOLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.4, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 4 inches; dark reddish brown (5YR 3/3) silty clay loam, reddish brown (5YR 4/4) dry; weak fine and very fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; many fine roots; many very fine interstitial pores; common very fine shiny specks; common earthy lumps that are difficult to rupture by rubbing; slight effervescence with hydrogen peroxide; extremely acid (pH 4.4); clear smooth boundary. (3 to 6 inches thick)" diff --git a/inst/extdata/OSD/K/KOLLS.json b/inst/extdata/OSD/K/KOLLS.json index d0d55c717a..13973522b2 100644 --- a/inst/extdata/OSD/K/KOLLS.json +++ b/inst/extdata/OSD/K/KOLLS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A-- 0 to 8 centimeters (0 to 3 inches); black (2.5Y 2.5/1) clay; weak medium granular structure; firm, hard, very sticky, very plastic; common fine roots throughout and common very fine roots throughout; common fine and common very fine pores; 1 percent nonflat rounded indurated 5- to 20-millimeter mixed rock fragments; very slight effervescence, by HCl, 1 normal; neutral, pH 7.0, pH indicator solutions; clear wavy boundary. (5 to 13 cm thick) (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bg-- 8 to 26 centimeters (3 to 10 inches); very dark grayish brown (2.5Y 3/2) clay; weak coarse prismatic structure; extremely firm, extremely hard, very sticky, very plastic; common fine roots throughout and common very fine roots throughout; common fine and common very fine pores; 50 percent fine prominent irregular weakly cemented strong brown (7.5YR 5/6), moist, masses of oxidized iron with diffuse boundaries in matrix; very slight effervescence, by HCl, 1 normal; slightly alkaline, pH 7.5, pH indicator solutions; gradual wavy boundary. (20 to 76cm thick) (8 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bssg-- 26 to 44 centimeters (10 to 17 inches); black (2.5Y 2.5/1) clay; moderate medium subangular blocky structure; very firm, extremely hard, very sticky, very plastic; common fine roots throughout and common medium roots throughout and common very fine roots throughout; common fine and common medium and common very fine pores; 10 percent distinct slickensides (pedogenic); 2 percent fine prominent irregular weakly cemented strong brown (7.5YR 5/6), moist, masses of oxidized iron with diffuse boundaries in matrix; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0, pH indicator solutions; gradual wavy boundary. (0 to 51cm thick) (0 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bssyzg-- 44 to 69 centimeters (17 to 27 inches); black (2.5Y 2.5/1) clay; weak coarse subangular blocky structure; extremely firm, extremely hard, very sticky, very plastic; common fine roots throughout and common medium roots throughout and common very fine roots throughout; common fine and common medium and common very fine pores; 15 percent distinct slickensides (pedogenic); 2 percent fine prominent irregular weakly cemented strong brown (7.5YR 5/6), moist, masses of oxidized iron with diffuse boundaries in matrix; 3 percent fine prominent threadlike weakly cemented gypsum masses with clear boundaries on surfaces along root channels and 2 percent fine prominent threadlike weakly cemented salt masses with clear boundaries in matrix; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0, pH indicator solutions; gradual wavy boundary. (0 to 31cm thick) (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCssyzg1--69 to 95 centimeters (27 to 37 inches); black (5Y 2.5/1) clay; structureless massive structure; very firm, extremely hard, very sticky, very plastic; common fine roots throughout and common very fine roots throughout; common fine and common very fine pores; 15 percent distinct slickensides (pedogenic); 2 percent fine prominent threadlike weakly cemented gypsum masses with clear boundaries in matrix and 2 percent fine prominent threadlike weakly cemented salt masses with clear boundaries in matrix; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0, pH indicator solutions; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCssyzg2--95 to 131 centimeters (37 to 52 inches); dark olive gray (5Y 3/2) clay; structureless massive structure; extremely firm, extremely hard, very sticky, very plastic; common very fine roots throughout; common very fine pores; 15 percent distinct slickensides (pedogenic); 1 percent fine prominent threadlike weakly cemented gypsum masses with clear boundaries in matrix and 1 percent fine prominent threadlike weakly cemented salt masses with clear boundaries in matrix; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0, pH indicator solutions; clear wavy boundary. (combined thickness 36 to 62cm) (14 to 24 inches)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cyzg--131 to 200 centimeters (52 to 80 inches); 90 percent olive gray (5Y 4/2) and 10 percent dark olive gray (5Y 3/2) clay; structureless massive structure; extremely firm, extremely hard, very sticky, very plastic; common very fine roots throughout; common very fine pores; 3 percent fine prominent irregular weakly cemented strong brown (7.5YR 5/6), moist, masses of oxidized iron with diffuse boundaries in matrix; 2 percent fine prominent threadlike weakly cemented gypsum masses with clear boundaries in matrix and 2 percent fine prominent threadlike weakly cemented salt masses with clear boundaries in matrix; 1 percent nonflat rounded indurated 5- to 20-millimeter mixed rock fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.0, pH indicator solutions." diff --git a/inst/extdata/OSD/K/KOLOA.json b/inst/extdata/OSD/K/KOLOA.json index 2c1c7e0eba..4764893915 100644 --- a/inst/extdata/OSD/K/KOLOA.json +++ b/inst/extdata/OSD/K/KOLOA.json @@ -89,7 +89,7 @@ "cf_class": "stony", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 18 centimeters (0 to 7 inches); dark reddish brown (5YR 3/3) stony silty clay, weak red (2.5YR 4/2) dry; strong fine and very fine subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; many fine roots; common fine pores; 15 percent stones; violent effervescence with hydrogen peroxide; slightly acid (pH 6.1); clear smooth boundary. (15 to 25 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "stony", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt1--18 to 33 centimeters (7 to 13 inches); dark reddish brown (2.5YR 3/3) stony silty clay, rubbed color dark reddish brown (2.5YR 3/4); dark reddish brown (5YR 3/3) dry; weak fine subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; common fine roots; common fine pores; 15 percent stones; strong effervescence with hydrogen peroxide; few, patchy, distinct clay films on peds; few highly weathered pebbles; neutral (pH 6.7); gradual smooth boundary. (15 to 31 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "stony", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bt2--33 to 51 centimeters (13 to 20 inches); dark reddish brown (2.5YR 3/4) stony silty clay, dark red (2.5YR 3/6) dry; weak fine and very fine subangular blocky structure with pockets of strong very fine subangular blocky structure; very hard, firm, very sticky and moderately plastic; common very fine roots; many fine pores; 25 percent stones; slight effervescence with hydrogen peroxide; common, continuous, distinct clay films on peds; many highly weathered pebbles with black coatings inside; neutral (pH 6.8); abrupt irregular boundary. (18 to 46 centimeters thick)" diff --git a/inst/extdata/OSD/K/KORCHEA.json b/inst/extdata/OSD/K/KORCHEA.json index 47a08fa373..a40716bab7 100644 --- a/inst/extdata/OSD/K/KORCHEA.json +++ b/inst/extdata/OSD/K/KORCHEA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; grayish brown (10YR 5/2) stratified loam, very dark grayish brown (10YR 3/2) moist; weak coarse and medium subangular blocky structure parting to moderate fine granular; hard, very friable, slightly sticky and slightly plastic; many fine roots; many fine pores; slight effervescence; moderately alkaline; clear smooth boundary. (5 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--6 to 15 inches; grayish brown (10YR 5/2) stratified loam, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common fine roots; many fine pores; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--15 to 18 inches; grayish brown (2.5Y 5/2) stratified fine sandy loam, dark grayish brown (2.5Y 4/2) moist; massive; slightly hard, very friable, slightly sticky, and slightly plastic; common fine roots; many fine pores; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C3--18 to 36 inches; grayish brown (2.5Y 5/2) stratified loam, silt loam and very fine sandy loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable, slightly sticky, and slightly plastic; common fine roots in upper part, few fine roots in lower part; very few fine masses of carbonates; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--36 to 60 inches; grayish brown (2.5Y 5/2) stratified fine sandy loam and loam, dark grayish brown (2.5Y 4/2) moist; massive; slightly hard and hard, friable, slightly sticky and slightly plastic; few fine roots; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KOSSUTH.json b/inst/extdata/OSD/K/KOSSUTH.json index d8d03c2034..e00b1b4e88 100644 --- a/inst/extdata/OSD/K/KOSSUTH.json +++ b/inst/extdata/OSD/K/KOSSUTH.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bg--30 to 36 inches; olive gray (5Y 5/2) with some olive (5Y 5/3) clay loam; few fine distinct light olive brown (2.5Y 5/6) mottles; weak medium prismatic structure parting to weak fine and medium subangular blocky; friable; few very fine black and strong brown concretions (oxides); few fine calcium carbonate accumulations in soft rounded masses; slight effervescence in spots; neutral; gradual smooth boundary. (4 to 9 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2BCg--36 to 40 inches; olive gray (5Y 5/2) loam; common fine faint olive (5Y 5/3-5/6) and a few fine faint light olive brown (2.5Y 5/6) mottles; weak medium subangular blocky structure; friable; few fine roots; few fine black and strong brown concretions (oxides); few fine calcium carbonate accumulations in soft rounded masses; slight effervescence; mildly alkaline. (0 to 7 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Cg1--40 to 48 inches; olive gray (5Y 5/2) loam; common fine to medium distinct yellowish brown (10YR 5/6-5/8) mottles; massive; friable; few fine roots; few fine black and strong brown concretions (oxides); few fine calcium carbonate accumulations in soft rounded masses; strong effervescence; moderately alkaline; gradual smooth boundary. (4 to 12 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--48 to 60 inches; olive gray (5Y 5/2) loam; many fine distinct yellowish brown (10YR 5/6 and 5/8) and few fine prominent strong brown (7.5YR 5/8) mottles; massive; friable; few fine roots; few fine black and strong brown to reddish brown concretions (oxides); common fine calcium carbonate accumulations in soft rounded masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KOTO.json b/inst/extdata/OSD/K/KOTO.json index 77cb0fa8ad..f465db6978 100644 --- a/inst/extdata/OSD/K/KOTO.json +++ b/inst/extdata/OSD/K/KOTO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--27 to 32 inches; grayish brown (2.5Y 5/2) loam, light brownish gray (2.5Y 6/2) dry; common medium and fine prominent yellowish brown (10YR 5/6) mottles; moderate medium and fine blocky structure; slightly hard, very friable; few very fine roots; common fine pores; common tongues 1/4 to 1/2 inch thick of dark grayish brown (10YR 4/2); common fine accumulations of carbonate; violent effervescence; slightly alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--32 to 42 inches; grayish brown (2.5Y 5/2) sandy loam, light gray (2.5Y 7/2) dry; common medium and fine prominent yellowish brown (10YR 5/6) and common fine distinct gray (10YR 6/1) mottles; weak medium and fine subangular blocky structure; slightly hard, very friable; common fine pores; bedding planes evident; common fine accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (Combined Bk horizons is 0 to 20 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C1--42 to 55 inches; grayish brown (2.5Y 5/2) loam, light gray (2.5Y 7/2) dry; many medium and fine prominent dark brown (7.5YR 4/4) and gray (10YR 6/1) mottles; massive; slightly hard, very friable; few fine pores, 10 percent pebbles; few fine accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2-55 to 60 inches; light olive brown (2.5Y 5/4) loam, light yellowish brown (2.5Y 6/4) dry; common fine distinct yellowish brown (10YR 5/6) and gray (10YR 6/1) mottles; massive; slightly hard, very friable; few small pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KOUNTER.json b/inst/extdata/OSD/K/KOUNTER.json index 4dc6352371..46ec659827 100644 --- a/inst/extdata/OSD/K/KOUNTER.json +++ b/inst/extdata/OSD/K/KOUNTER.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slighlty effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--2 to 7 inches; brown (10YR 5/3) very gravelly coarse sandy loam, brown (10YR 4/3) moist; moderate medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; many very fine and common fine roots; many very fine and fine interstitial pores; 15 percent cobbles and 30 percent pebbles; disseminated lime; few faint lime coatings on undersides of fragments; slighlty effervescent; slightly alkaline (pH 7.4); clear wavy boundary. (3 to 8 inches thick)" diff --git a/inst/extdata/OSD/K/KRANZBURG.json b/inst/extdata/OSD/K/KRANZBURG.json index 52c9dc06e9..8c32076946 100644 --- a/inst/extdata/OSD/K/KRANZBURG.json +++ b/inst/extdata/OSD/K/KRANZBURG.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk1--64 to 74 centimeters (25 to 29 inches); dark grayish brown (2.5Y 4/2) clay loam, grayish brown (2.5Y 5/2) dry; weak fine and medium subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few very fine pores; 4 percent gravel; stone line with pebbles from 2 mm to 80 mm in diameter in the upper inch and one-half; common medium masses of calcium carbonate; few carbonate coatings on underside of pebbles; 21 percent calcium carbonate; strong effervescence; moderately alkaline (pH 8.2); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bk2--74 to 130 centimeters (29 to 51 inches); light olive brown (2.5Y 5/4) clay loam, moist light yellowish brown (2.5Y 6/4) dry; weak fine and medium subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few calcium carbonate coatings on underside of pebbles; few very fine pores; 3 percent gravel; common fine and medium masses of calcium carbonate; 30 percent calcium carbonate; strong effervescence; moderately alkaline (pH 8.2); gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk3--130 to 145 centimeters (51 to 57 inches); light olive brown (2.5Y 5/4) clay loam, light yellowish brown (2.5Y 6/4) dry; few fine distinct gray (2.5Y 6/1) redoximorphic depletions and few fine distinct light olive brown (2.5Y 5/6) moist redoximorphic concentrations; weak medium and coarse subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few very fine pores; 3 percent gravel; few fine masses of calcium carbonate; 28 percent calcium carbonate; strong effervescence; moderately alkaline (pH 8.0); gradual wavy boundary. [Combined thickness of 2Bk horizon is 13 to 89 centimeters (5 to 35 inches).]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--145 to 203 centimeters (57 to 80 inches); light olive brown (2.5Y 5/4) clay loam, light yellowish brown (2.5Y 6/4) dry; few fine distinct gray (2.5Y 6/1) redoximorphic depletions and few fine distinct light olive brown (2.5Y 5/6) redoximorphic concentrations; massive; hard, firm, slightly sticky and slightly plastic; 4 percent gravel; common sand wedges 10 cm wide; strong effervescence; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/K/KREM.json b/inst/extdata/OSD/K/KREM.json index dee6cf7f2e..fcc4fabd03 100644 --- a/inst/extdata/OSD/K/KREM.json +++ b/inst/extdata/OSD/K/KREM.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Btk--38 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; common fine distinct strong brown (7.5YR 5/6) mottles; strong very coarse prismatic structure parting to moderate medium and coarse angular blocky; sticky and plastic; few very fine and fine roots along faces of prisms; many very fine tubular pores; many moderately thick dark grayish brown (2.5Y 4/2) moist clay films on faces of peds and surfaces of pores; sandy coatings up to 1/4 inch thick between prisms; about 3 percent coarse fragments and one larger weathered sandstone fragment; many irregular shaped masses of carbonates; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KUBE.json b/inst/extdata/OSD/K/KUBE.json index 508cf2b1a1..32b1b40b7f 100644 --- a/inst/extdata/OSD/K/KUBE.json +++ b/inst/extdata/OSD/K/KUBE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--26 to 41 inches; pink (7.5YR 8/4) silt loam, brown (7.5YR 5/4) moist; weak fine and medium subangular blocky structure; very hard, very friable, slightly sticky; about 30 percent by volume very fine fragments of soft siltstone; few fine accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (15 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--41 to 60 inches; white (7.5YR 8/1) and pinkish gray (7.5YR 7/2) siltstone which crumbles readily upon wetting; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/K/KULA.json b/inst/extdata/OSD/K/KULA.json index c2b3d806a8..b70a5ec56d 100644 --- a/inst/extdata/OSD/K/KULA.json +++ b/inst/extdata/OSD/K/KULA.json @@ -89,7 +89,7 @@ "cf_class": "cobbly", "pH": 5.2, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 8 inches; dark reddish brown (5YR 3/2) cobbly loam, dark reddish brown (5YR 3/4) dry, weak fine granular structure; soft, friable, nonsticky and nonplastic; many fine roots; many medium pores; many very small red and black particles visible under hand lens; slight effervescence with hydrogen peroxide; slightly acid (pH 5.2); clear smooth boundary. (7 to 10 inches thick)" diff --git a/inst/extdata/OSD/K/KUMA.json b/inst/extdata/OSD/K/KUMA.json index 6aa2b0e82b..4ede029912 100644 --- a/inst/extdata/OSD/K/KUMA.json +++ b/inst/extdata/OSD/K/KUMA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "not effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btkb1--76 to 114 centimeters (30 to 45 inches); light yellowish brown (2.5Y 6/3) silt loam, olive brown (2.5Y 4/3) moist; moderate fine prismatic structure parting to fine subangular blocks; slightly hard, very friable, slightly sticky, slightly plastic; few faint clay films on the faces of peds and as fillings in root channels and pores; visible secondary calcium carbonate occurring mostly as concretions or as coatings on faces of peds; faces of peds are strongly effervescent but interiors are not effervescent; moderately alkaline (pH 8.2); clear smooth boundary." diff --git a/inst/extdata/OSD/K/KUNIA.json b/inst/extdata/OSD/K/KUNIA.json index 024675e6db..c1436309a8 100644 --- a/inst/extdata/OSD/K/KUNIA.json +++ b/inst/extdata/OSD/K/KUNIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.3, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 3 inches; dark reddish brown (5YR 2/2) silty clay, dark reddish brown (5YR 3/3) dry; moderate fine and very fine granular structure; hard, friable, sticky and plastic; many roots; many fine interstitial pores; strong effervescence with hydrogen peroxide; extremely acid (pH 4.3); clear wavy boundary. (2 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 4.2, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--3 to 22 inches; same color and texture as Ap1 horizon; weak fine and medium subangular blocky structure; hard, firm, sticky and plastic; compacted by tillage; few fine roots; common very fine tubular and interstitial pores; few fine and very fine black concretions; few charcoal specks; strong effervescence with hydrogen peroxide; extremely acid (pH 4.2); abrupt smooth boundary. (9 to 19 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.2, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B1--22 to 29 inches; dark reddish brown (2.5YR 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; weak fine and medium subangular blocky structure; slightly hard, firm, sticky and plastic; common very fine tubular pores; few patchy pressure faces on peds; few fine and very fine black concretions; slight effervescence with hydrogen peroxide; strongly acid (pH 5.2); clear wavy boundary. (5 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B2--29 to 47 inches; dark reddish brown (2.5YR 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate very fine and fine subangular blocky structure; slightly hard, firm, sticky and plastic; common fine tubular pores; weak patchy pressure faces on peds; few black concretions; slight effervescence with hydrogen peroxide in soil matrix; strong effervescence on the black concretions; slightly acid (pH 6.5); clear wavy boundary. (8 to 36 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 5.8, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B3--47 to 74 inches; dark reddish brown (2.5YR 3/4) silty clay loam, dark red (2.5YR 3/6) dry; moderate medium blocky structure parting to moderate fine subangular blocky; hard, firm, sticky and plastic; few very fine tubular pores that contain black stains; strong continuous pressure faces on peds; few worm casts; few hard rock fragments; slight effervescence with hydrogen peroxide in soil matrix; few fine black concretions that effervesce with hydrogen peroxide; medium acid (pH 5.8)." diff --git a/inst/extdata/OSD/K/KUNUWEIA.json b/inst/extdata/OSD/K/KUNUWEIA.json index 024482891a..3cf99b4192 100644 --- a/inst/extdata/OSD/K/KUNUWEIA.json +++ b/inst/extdata/OSD/K/KUNUWEIA.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": 4.9, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 12 inches; dark brown (10YR 4/3) very gravelly clay loam, brown (7.5YR 5/2) dry; strong fine and very fine granular structure; friable, sticky, slightly plastic; many roots; moderate, delayed effervescence with hydrogen peroxide; gravel is mostly smooth ironstone pebbles; few fragments of ironstone up to 10 inches or more across on the surface and in the soil; very strongly acid (pH 4.9); abrupt smooth boundary. (10 to 24 inches thick)" diff --git a/inst/extdata/OSD/K/KYLE.json b/inst/extdata/OSD/K/KYLE.json index b7d41a1770..2d0d4fb88a 100644 --- a/inst/extdata/OSD/K/KYLE.json +++ b/inst/extdata/OSD/K/KYLE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--4 to 8 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse blocky structure parting to weak medium and fine blocky; very hard, very firm, sticky and plastic; common fine roots; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss--8 to 16 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse blocky structure parting to weak medium blocky; extremely hard, very firm, very sticky and very plastic; few intersecting slickensides; few fine roots; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined Bw and Bss horizons 8 to 28 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCss--16 to 24 inches; light olive gray (5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure parting to weak medium and fine blocky; extremely hard, very firm, very sticky and very plastic; few intersecting slickensides; few fine roots; strong effervescence; slightly alkaline; clear wavy boundary. (0 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCssy--24 to 40 inches; light olive gray (5Y 6/2) clay, olive gray (5Y 5/2) moist; weak medium subangular blocky structure in upper part becoming massive in lower part; extremely hard, very firm, very sticky and very plastic; few intersecting slickensides; common fine and medium nests of gypsum; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--40 to 60 inches; pale olive (5Y 6/3) clay, olive (5Y 5/3) moist; massive; very hard, firm, sticky and plastic; few fine accumulations of carbonate and gypsum; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LABELLE.json b/inst/extdata/OSD/L/LABELLE.json index c72f2fcf5f..1d52b65bfe 100644 --- a/inst/extdata/OSD/L/LABELLE.json +++ b/inst/extdata/OSD/L/LABELLE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkssg1--121 to 164 cm, (48 to 65 in); gray (10YR 6/1) silty clay; moderate coarse prismatic structure parts to moderate medium angular blocky; very firm, very hard, very plastic; few very fine roots; very fine tubular pores; 5 percent faint gray (10YR 5/1) clay films; 10 percent distinct slickensides (pedogenic); 10 percent medium prominent yellowish brown (10YR 5/6) masses of oxidized iron with sharp boundaries in matrix; 10 percent medium prominent yellowish brown (10YR 5/4) masses of oxidized iron with clear boundaries in matrix; 1 percent coarse irregular carbonate concretions; strong effervescence; moderately alkaline; gradual wavy boundary. (combined thickness of the Btkssg horizons is 33 to 104 cm [13 to 41 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btkssg2--164 to 203 cm, (55 to 80 in); light gray (10YR 7/1) clay loam; moderate coarse prismatic structure parts to moderate medium angular blocky; very firm, very hard, very plastic; few very fine roots; very fine tubular pores; 5 percent faint gray (10YR 6/1) clay films on all faces of peds; 10 percent distinct slickensides (pedogenic); 8 percent medium prominent brownish yellow (10YR 6/6) masses of oxidized iron with sharp boundaries in matrix; 10 percent medium distinct yellowish brown (10YR 5/4) masses of oxidized iron with clear boundaries in matrix; 8 percent coarse spherical carbonate concretions; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/L/LABENZO.json b/inst/extdata/OSD/L/LABENZO.json index 729e9099e5..ad900e70c1 100644 --- a/inst/extdata/OSD/L/LABENZO.json +++ b/inst/extdata/OSD/L/LABENZO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 inches, grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, friable, slightly stick and slightly plastic; many very fine and fine roots; slight effervescence; moderately alkaline (pH 8.0); abrupt smooth boundary. (6 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--13 to 17 inches; pale brown (10YR 6/3) silt loam, dark grayish brown (10YR 4/2) moist; moderate thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and medium tubular pores; slight effervescence; moderately alkaline (pH 8.0); abrupt smooth boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2C2--17 to 21 inches; discontinuous light brownish gray (10YR 6/2) loamy sand, dark grayish brown (10YR 4/2) moist; few fine faint dark brown (10YR 4/3) moist mottles; massive; soft, very friable; few very fine and fine roots; many very fine, fine, and medium tubular pores; slight effervescence; mildly alkaline (pH 7.8); abrupt wavy boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "3C3--21 to 24 inches, light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; few fine faint dark brown (10YR 4/3) moist mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine, fine and medium tubular pores; slight effervescence; mildly alkaline (pH 7.8); abrupt wavy boundary. (0 to 6 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "3C4--24 to 28 inches; mixture of dark gray (10YR 4/1) and light brownish gray (10YR 6/2) silt loam, very dark brown (10YR 2/2) and dark grayish brown (10YR 4/2) moist; few faint dark yellowish brown (10YR 4/4) moist mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and fine tubular pores; slight effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary. (0 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "4C5--28 to 34 inches; light brownish gray (10YR 6/2) lenses of 80 percent silt loam, 20 percent loamy sand, dark grayish brown (10YR 4/2) moist; few medium distinct dark yellowish brown (10YR 4/4) moist mottles; massive; soft, very friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and fine tubular pores; slight effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary. (0 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "5C6--34 to 45 inches; light brownish gray (10YR 6/2) very gravelly sand, dark grayish brown (10YR 4/2) moist; loose; few very fine and fine roots; slight effervescence; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/L/LABETTE.json b/inst/extdata/OSD/L/LABETTE.json index 53dc3734b0..34edcf5c15 100644 --- a/inst/extdata/OSD/L/LABETTE.json +++ b/inst/extdata/OSD/L/LABETTE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--76 to 91 centimeters (30 to 36 inches); brown (7.5YR 5/4) silty clay, brown (7.5YR 4/4) moist; massive; very hard, firm, very plastic and very sticky; about 6 percent of yellow (10YR 8/6) soft, weathered limestone fragments 1/2 to 2 inches in diameter; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 25 centimeters (0 to 10 inches) thick.)" diff --git a/inst/extdata/OSD/L/LABLATZ.json b/inst/extdata/OSD/L/LABLATZ.json index 4d050206a3..4fb357ba7a 100644 --- a/inst/extdata/OSD/L/LABLATZ.json +++ b/inst/extdata/OSD/L/LABLATZ.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--41 to 64 inches; brown (7.5YR 4/3) fine sandy loam; massive, with weak medium plates inherited from the parent material; friable; few fine roots; common fine distinct grayish brown (10YR 5/2) masses of iron depletion; common medium prominent dark yellowish brown (10YR 4/6) masses of iron accumulation; moderately effervescent; about 4 percent gravel and 2 percent cobbles; moderately alkaline." diff --git a/inst/extdata/OSD/L/LABU.json b/inst/extdata/OSD/L/LABU.json index cb54bed21d..8ff792629c 100644 --- a/inst/extdata/OSD/L/LABU.json +++ b/inst/extdata/OSD/L/LABU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; dark grayish brown (10YR 4/2) silty clay, dark brown (10YR 3/3) moist; moderate fine granular structure; hard, firm, sticky, and very plastic; common fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (4 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--6 to 14 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium and fine blocky; hard, firm, sticky, and very plastic; common fine roots; upper 2 inches contain few shale fragments; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--14 to 25 inches; light brownish gray (2.5Y 6/2) silty clay, light olive brown (2.5Y 5/4) moist; weak medium and coarse blocky structure parting to moderate medium and fine subangular blocky; very hard, very firm, very sticky and very plastic; few fine and common very fine roots; common pressure faces; few fine segregations of lime; violent effervescence; moderately alkaline; clear wavy boundary. (Combined Bw horizon is 12 to 24 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--25 to 34 inches; light gray (2.5Y 7/2) shaly clay, grayish brown (2.5Y 5/2) moist; massive; very hard, very firm, very sticky and very plastic; few fine roots in upper 3 inches; common pressure faces; few distinct lime concretions and oxidized iron stains; violent effervescence; moderately alkaline; clear smooth boundary. (4 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--34 to 60 inches; light gray (2.5Y 7/2) bedded shale, grayish brown (2.5Y 5/2) moist; massive breaking to moderate medium and coarse platy shale fragments; very hard, very firm; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LACERDA.json b/inst/extdata/OSD/L/LACERDA.json index 1e2639b09c..96ee92a36e 100644 --- a/inst/extdata/OSD/L/LACERDA.json +++ b/inst/extdata/OSD/L/LACERDA.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck--65 to 72 inches; light olive brown (2.5Y 5/6) shale with clay texture; common medium and coarse distinct olive gray (5Y 5/2) and strong brown (7.5YR 5/8) streaks and mottles; material is weakly bedded with angular rock structure; hard, firm; few coarse masses of calcium carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LADELLE.json b/inst/extdata/OSD/L/LADELLE.json index 566458ab82..126ebeb4f0 100644 --- a/inst/extdata/OSD/L/LADELLE.json +++ b/inst/extdata/OSD/L/LADELLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; dark gray (10YR 4/1) silt loam, black (10YR 2/1) moist; weak fine and medium granular structure; soft, very friable; slight effervescence; slightly alkaline, abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--7 to 20 inches; dark gray (10YR 4/1) silt loam, black (10YR 2/1) moist; weak medium subangular blocky structure parting to weak fine and medium granular; slightly hard, very friable; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined A horizons 12 to 25 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--20 to 35 inches; gray (2.5Y 5/1) silt loam, very dark gray (2.5Y 3/1) moist; weak medium and coarse subangular blocky structure; slightly hard, friable; common fine threads of calcium carbonate; strong effervescence; slightly alkaline; clear wavy boundary. (0 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Akb--35 to 43 inches; dark gray (10YR 4/1) silty clay loam, black (10YR 2/1) moist; weak medium and coarse subangular blocky structure; slightly hard, friable; common fine and medium masses of calcium carbonate; strong effervescence; slightly alkaline, gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--43 to 60 inches; gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; common fine prominent dark brown (10YR 3/3) redox concentrations; massive; hard, friable; few to common fine and medium coats of calcium carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LADNER.json b/inst/extdata/OSD/L/LADNER.json index b50ba856b4..68cf9e4cfc 100644 --- a/inst/extdata/OSD/L/LADNER.json +++ b/inst/extdata/OSD/L/LADNER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--14 to 24 inches; light gray (5Y 7/2) fine sandy loam, olive (5Y 5/3) moist; weak coarse prismatic structure parting to moderate medium angular blocky; very hard, friable, slightly sticky and slightly plastic; few fine roots; strong effervescence; strongly alkaline; gradual wavy boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--24 to 60 inches; light olive gray (5Y 6/2) fine sandy loam, olive gray (5Y 5/2) moist; massive; very hard, friable, slightly sticky, and slightly plastic; thin strata of loamy fine sand, very fine sand, and loam; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/L/LAEWEST.json b/inst/extdata/OSD/L/LAEWEST.json index 59e17e1569..5a7a8a9729 100644 --- a/inst/extdata/OSD/L/LAEWEST.json +++ b/inst/extdata/OSD/L/LAEWEST.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss4--135 to 150 cm, (53.1 to 59.1 in); dark gray (2.5Y 4/1), clay; moderate coarse wedge structure parts to moderate coarse angular blocky; very firm; few fine roots throughout; few very fine tubular pores; 25 percent distinct slickensides (pedogenic); 1 percent medium spherical weakly cemented black (10YR 2/1) iron-manganese nodules in matrix; 3 percent medium white (10YR 8/1) carbonate nodules; slight effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bss3 and Bss4 horizons is 28 to 86 cm [11 to 34 in])" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss1--150 to 170 cm, (59.1 to 66.9 in); light brownish gray (2.5Y 6/2), clay; moderate coarse wedge structure parts to moderate coarse angular blocky; very firm; few fine roots throughout; few very fine tubular pores; 20 percent distinct slickensides (pedogenic); 3 percent medium very weakly cemented black (10YR 2/1) iron-manganese nodules; 10 percent medium white (10YR 8/1) carbonate masses and 2 percent medium white (10YR 8/1) carbonate nodules; violent effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bkss horizons is 38 to 84 cm [15 to 33])" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkss2--170 to 221 cm, (66.9 to 87.0 in); light brownish gray (2.5Y 6/2), clay; moderate very coarse wedge structure parts to moderate very coarse angular blocky structure; very firm; few very fine roots throughout; few very fine tubular pores; 25 percent distinct slickensides (pedogenic); 12 percent medium masses of calcium carbonate and 1 percent fine white (10YR 8/1) carbonate nodules; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LAHAINA.json b/inst/extdata/OSD/L/LAHAINA.json index 6082bb9818..4784be4661 100644 --- a/inst/extdata/OSD/L/LAHAINA.json +++ b/inst/extdata/OSD/L/LAHAINA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap1--0 to 18 centimeters (0 to 7 inches); dark reddish brown (2.5YR 3/4) silty clay, dark reddish brown (2.5YR 3/4) dry; weak fine, medium and coarse granular structure; hard, friable, very sticky and very plastic; many fine roots; many fine and very fine irregular pores; many 1 to 3 mm black concretions that effervesce with hydrogen peroxide; common small earthy lumps that break down on persistent rubbing; strong effervescence with hydrogen peroxide; moderately acid (pH 6.O); abrupt wavy boundary. (15 to 23 centimeters {6 to 9 inches} thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.7, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap2--18 to 38 centimeters (7 to 15 inches); dark reddish brown (2.5YR 3/4) silty clay, dark reddish brown (2.5YR 3/4) dry; weak medium and coarse subangular blocky structure; hard, friable, very sticky and very plastic; compacted by machinery; many fine roots; few medium and fine irregular pores; many 1 to 3 mm black concretions that effervesce with hydrogen peroxide; violent effervescence with hydrogen peroxide in matrix; moderately acid (pH 5.7); abrupt wavy boundary. (15 to 23 centimeters {6 to 9 inches} thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bo1--38 to 58 centimeters (15 to 23 inches); dusky red (10R 3/3) silty clay, dark reddish brown (2.5YR 3/4) dry; weak medium and coarse subangular blocky structure; hard, friable, very sticky and very plastic; many very fine roots; many fine and very fine irregular pores; many 1 to 3 mm black concretions that effervesce with hydrogen peroxide; violent effervescence with hydrogen peroxide in matrix; slightly acid (pH 6.1); gradual wavy boundary. (10 to 25 centimeters {4 to 10 inches} thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bo2--58 to 79 centimeters (23 to 31 inches); dusky red(10R 3/3) silty clay, dark yellowish brown (10YR 3/4) dry; moderate medium and coarse subangular blocky structure; hard, friable, sticky and plastic; common very fine roots; many fine and very fine irregular pores; nearly continuous pressure faces on peds; many 1 to 3 mm black concretions that effervesce with hydrogen peroxide; violent effervescence with hydrogen peroxide in matrix; moderately acid (pH 6.0); gradual wavy boundary. (15 to 38 centimeters {6 to 15 inches} thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bo3--79 to 117 centimeters (31 to 46 inches); dark reddish brown (2.5YR 3/4) silty clay loam, dark red (2.5YR 3/6) dry; moderate medium subangular block structure parting to moderate very fine subangular blocky; hard, friable, sticky and plastic; very compact in place; few very fine roots; many medium and fine irregular pores; nearly continuous pressure faces on peds; 5 percent stones, 3 percent cobbles, and 2 percent gravel from basalt ; many 1 to 3 mm black concretions that effervesce with hydrogen peroxide; slight effervescence with hydrogen peroxide in matrix; slightly acid (pH 6.1); gradual wavy boundary. (25 to 46 centimeters {10 to 18 inches} thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC--117 to 152 centimeters (46 to 60 inches); dark reddish brown (2.5YR 3/4) silty clay loam, dark red (2.5YR 3/6) dry; strong medium and coarse subangular blocky structure; hard, friable, sticky and plastic; many fine irregular pores; many small patchy pressure faces on peds; common 1 to 3 mm black concretions that effervesce with hydrogen peroxide; many strongly weathered 1/4 to 2 mm basalt particles; 5 percent stones, 3 percent cobbles, and 2 percent gravel from basalt; slight effervescence with hydrogen peroxide in matrix; moderately acid (pH 6.0)." diff --git a/inst/extdata/OSD/L/LAHONTAN.json b/inst/extdata/OSD/L/LAHONTAN.json index 44ff49c7ec..25f3654fe1 100644 --- a/inst/extdata/OSD/L/LAHONTAN.json +++ b/inst/extdata/OSD/L/LAHONTAN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C3--130 to 160 cm; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, very firm, very sticky and very plastic; few fine roots; common fine prominent brown (7.5YR 4/4) moist masses of iron accumulation in the matrix; slightly effervescent in matrix, strongly effervescent in spots; strongly alkaline (pH 8.5)." diff --git a/inst/extdata/OSD/L/LAKEWIN.json b/inst/extdata/OSD/L/LAKEWIN.json index e31d6bd7ff..c7a4a477ce 100644 --- a/inst/extdata/OSD/L/LAKEWIN.json +++ b/inst/extdata/OSD/L/LAKEWIN.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 7.7, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk2--27 to 37 inches; grayish brown (10YR 5/2) very gravelly sand, dark grayish brown (10YR 4/2) moist; single grained; loose; common very fine roots; violent effervescence; thick lime coatings on pebbles; mildly alkaline (pH 7.7); clear smooth boundary. (10 to 30 inches thick)." diff --git a/inst/extdata/OSD/L/LAKE_CHARLES.json b/inst/extdata/OSD/L/LAKE_CHARLES.json index 440a056a61..f4ed9c3126 100644 --- a/inst/extdata/OSD/L/LAKE_CHARLES.json +++ b/inst/extdata/OSD/L/LAKE_CHARLES.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss2--61 to 103 cm, (24.0 to 40.6 in); very dark gray (2.5Y 3/1), clay; strong medium and coarse wedge structure parts to moderate medium angular blocky; very hard, very firm, very sticky, very plastic; common fine roots; common fine tubular pores; very few crayfish krotovina filled with yellowish red (5YR 5/6) and very dark gray (2.5Y 3/1) clay; many prominent intersecting slickensides that are tilted 30 to 40 degrees to the horizontal; very slight effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss3--103 to 135 cm, (40.6 to 53.1 in); very dark gray (2.5Y 3/1), clay; strong medium and coarse wedge structure parts to moderate medium angular blocky; very hard, very firm, very sticky, very plastic; common fine roots; 1 percent fine black (10YR 2/1) iron-manganese nodules; very few crayfish krotovina filled with yellowish red (5YR 5/6) and very dark gray (2.5Y 3/1) clay; many prominent intersecting slickensides that are tilted at 45 to 60 degrees to the horizontal; very slight effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bss horizons is 38 to 140 cm [15 to 55 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss1--135 to 158 cm, (53.1 to 62.2 in); dark gray (2.5Y 4/1), clay; moderate medium and coarse wedge structure parts to moderate medium and coarse angular blocky; very hard, very firm, very sticky, very plastic; common very fine and fine roots; very few crayfish krotovina filled with yellowish red (5YR 5/6) and very dark gray (2.5Y 3/1) clay; common prominent intersecting slickensides that are tilted 35 to 45 degrees to the horizontal; 1 percent fine uncoated nodules of calcium carbonate; 2 percent nodules of calcium carbonate coated with strong brown (7.5YR 5/6) iron; very slight effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss2--158 to 175 cm, (62.2 to 68.9 in); 60 percent gray (2.5Y 5/1) and 20 percent light yellowish brown (2.5Y 6/3) and 20 percent light olive brown (2.5Y 5/3), clay; weak coarse wedge structure parts to moderate medium and coarse angular blocky; very hard, very firm, very sticky, very plastic; common very fine and fine roots; common prominent intersecting slickensides that are tilted at 30 to 45 degrees to the horizontal; 3 percent fine and medium nodules of calcium carbonate coated with brown (10YR 4/3) iron; 2 percent uncoated nodules of calcium carbonate; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss3--175 to 193 cm, (68.9 to 76.0 in); yellowish red (5YR 5/6), clay; moderate coarse wedge structure parts to moderate medium and coarse subangular blocky; extremely hard, extremely firm, very sticky, very plastic; common very fine and fine roots; 5 percent crayfish krotovinas filled with yellowish red (5YR 5/6) and very dark gray (10YR 3/1) clay and few fine nodules of calcium carbonate; common distinct intersecting slickensides that are tilted at 35 to 40 degrees to the horizontal on horizontal faces of peds; 1 percent fine prominent light greenish gray (5GY 7/1) iron depletions with clear boundaries on surfaces of slickensides; strong effervescence; moderately alkaline; moderately alkaline; clear wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss4--193 to 216 cm , (76.0 to 85.0 in); yellowish red (5YR 5/6), clay; weak coarse wedge structure parts to weak medium and coarse subangular blocky structure; extremely hard, extremely firm, very sticky, very plastic; common distinct dark gray (10YR 4/1) intersecting slickensides that are tilted 30 to 35 degrees to the horizontal; 7 percent fine and medium prominent light greenish gray (5GY 7/1) iron depletions with sharp boundaries on surfaces of slickensides; few fine rounded concretions of calcium carbonate coated with yellow (10YR 7/8) iron; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bkss horizons is 54 to 157 cm [21 to 62 in])" diff --git a/inst/extdata/OSD/L/LAKI.json b/inst/extdata/OSD/L/LAKI.json index 21042d3ba1..5044276455 100644 --- a/inst/extdata/OSD/L/LAKI.json +++ b/inst/extdata/OSD/L/LAKI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 8 inches; very dark brown (10YR 2/2) loam, dark grayish brown (10YR 4/2) dry; weak thin platy and weak fine granular structure; friable, slightly sticky and slightly plastic; common very fine roots, many very fine pores; few reddish brown and brown fine concretions; weakly effervescent; moderately alkaline (pH 7.9); clear smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--8 to 15 inches; very dark brown (10YR 2/2) loam, grayish brown (10YR 5/2) dry; weak medium prismatic structure parting to weak fine granular; friable, slightly sticky and slightly plastic; common very fine roots; many very fine pores; weakly effervescent; moderately alkaline (pH 8.4); clear smooth boundary. (5 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "AB--15 to 19 inches; very dark grayish brown (10YR 3/2) loam, grayish brown (10YR 5/2) dry; weak medium subangular blocky structure; friable, slightly sticky and slightly plastic; common very fine roots; many very fine tubular pores; few fine flecks and streaks of lime; weakly effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/L/LAKOA.json b/inst/extdata/OSD/L/LAKOA.json index ac892a5f18..fad01cf80a 100644 --- a/inst/extdata/OSD/L/LAKOA.json +++ b/inst/extdata/OSD/L/LAKOA.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--86 to 152 cm; very pale brown (10YR 7/3) loam, yellowish brown (10YR 5/4) moist; massive; slightly hard, friable, nonsticky and slightly plastic; few sandstone fragments, common fine accumulations of lime; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LAKOMA.json b/inst/extdata/OSD/L/LAKOMA.json index 9089b827d4..7e8ba81060 100644 --- a/inst/extdata/OSD/L/LAKOMA.json +++ b/inst/extdata/OSD/L/LAKOMA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 13 centimeters (0 to 5 inches); dark grayish brown (2.5Y 4/2) crushing to grayish brown (2.5Y 5/2) silty clay, very dark grayish brown (2.5Y 3/2) crushing to dark grayish brown (2.5Y 4/2) moist; moderate fine granular structure; slightly hard, firm, sticky and very plastic; few fragments of shale; strong effervescence; moderately alkaline; clear smooth boundary. [10 to 15 centimeters(4 to 6 inches) thick]" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--13 to 30 centimeters (5 to 12 inches); grayish brown (2.5Y 5/2) rubbed to light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) rubbed to grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to weak medium and fine subangular blocky; hard, firm, very sticky and very plastic; common fragments of shale; strong effervescence; moderately alkaline; clear smooth boundary. [15 to 30 centimeters (6 to 12 inches) thick]" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--30 to 56 centimeters (12 to 22 inches); grayish brown (2.5Y 5/2) rubbed to light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) rubbed to grayish brown (2.5Y 5/2) moist; weak medium blocky structure parting to weak fine and medium subangular blocky; hard, firm, very sticky and very plastic; many weathered fragments of shale; few medium accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. [0 to 30 centimeters (0 to 12 inches) thick]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--56 to 71 centimeters (22 to 28 inches); light brownish gray (2.5Y 6/2) silty clay, grayish brown (2.5Y 5/2) moist; massive; hard, firm, sticky and plastic; 40 percent by volume of partially weathered fragments of shale; few medium accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. [10 to 25 centimeters(4 to 10 inches) thick]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--71 to 152 centimeters (28 to 60 inches); light brownish gray (2.5Y 6/2) shale; grayish brown (2.5Y 5/2) moist; common gypsum crystals in upper part of bedded shale; violent effervescence in seams only; moderately alkaline." diff --git a/inst/extdata/OSD/L/LAKOTA.json b/inst/extdata/OSD/L/LAKOTA.json index db961f008b..a5f51bc1c0 100644 --- a/inst/extdata/OSD/L/LAKOTA.json +++ b/inst/extdata/OSD/L/LAKOTA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz--14 to 25 inches; light olive brown (2.5Y 5/3) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; common fine nests and threads of salts; few medium irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCz--25 to 34 inches; light olive gray (5Y 6/2) loamy fine sand, olive gray (5Y 4/2) moist; massive; soft, very friable, nonsticky and nonplastic; few fine threads of salts; slight effervescence; slightly alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/L/LALAMILO.json b/inst/extdata/OSD/L/LALAMILO.json index 29e785223a..6016cfe082 100644 --- a/inst/extdata/OSD/L/LALAMILO.json +++ b/inst/extdata/OSD/L/LALAMILO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "irregular", "narrative": "Bkn -- 94 to 114 centimeters (37 to 45 inches); dark yellowish brown (10YR 3/4) medial silt loam, yellowish brown (10YR 5/6) dry; moderate medium prismatic parting to weak fine and medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; nonsmeary; few very fine roots; common very fine tubular pores; 2 percent very fine prominent spherical carbonate concretions; 2 percent strongly cemented gravel size carbonate nodules; slightly effervescent in matrix and strongly effervescent nodules; moderately alkaline (pH 8.2); clear irregular boundary. (20 to 25 centimeters {8 to 10 inches} thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bknq -- 114 to 160 centimeters (45 to 63 inches);dark yellowish brown (10YR 3/4) medial silt loam, brownish yellow (10YR 6/6) dry; 40 percent massive and 60 percent moderate medium subangular blocky structure; very hard, extremely firm, nonsticky and nonplastic; nonsmeary; few very fine roots; common very fine tubular pores; 2 percent very fine prominent spherical carbonate concretions; 40 percent strongly cemented gravel size carbonate nodules; slightly effervescent in matrix and strongly effervescent nodules; moderately alkaline (pH 8.2); abrupt smooth boundary. (38 to 51 centimeters {15 to 20 inches} thick)." diff --git a/inst/extdata/OSD/L/LAMO.json b/inst/extdata/OSD/L/LAMO.json index a372621613..aacb90fd90 100644 --- a/inst/extdata/OSD/L/LAMO.json +++ b/inst/extdata/OSD/L/LAMO.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--7 to 15 inches; very dark gray (10YR 3/1) silty clay loam, black (10YR 2/1) moist, weak medium granular structure; slightly hard, friable; common fine roots throughout; few fine tubular pores; strong effervescence; slightly alkaline; clear smooth boundary. (Combined A horizon is 10 to 30 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AB--15 to 26 inches; gray (10YR 5/1) silty clay loam, very dark gray (10YR 3/1) moist; moderate medium subangular blocky structure; hard, firm; few fine roots throughout; common fine tubular pores; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg1--26 to 32 inches; gray (10YR 6/1) silty clay loam, dark gray (10YR 4/1) moist; moderate medium subangular blocky structure; hard, firm; few fine prominent yellowish brown (10YR 5/6) iron masses in the soil matrix: common medium lime concretions; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg2--32 to 46 inches; gray (10YR 6/1) silty clay loam, dark gray (10YR 4/1) moist; weak coarse subangular blocky structure; hard, firm; common medium concretions; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bg horizon is 0 to 26 inches)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--46 to 80 inches; gray (10YR 6/1) silty clay loam, dark gray (10YR 4/1) moist; massive; hard, firm; common medium lime concretions; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LAMOILLE.json b/inst/extdata/OSD/L/LAMOILLE.json index 80f52c4f0b..090e0b3a5f 100644 --- a/inst/extdata/OSD/L/LAMOILLE.json +++ b/inst/extdata/OSD/L/LAMOILLE.json @@ -204,7 +204,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--37 to 60 inches; yellowish brown (10YR 5/4) very cobbly loam; massive; friable; about 60 percent gravel and cobbles, mostly dolomite; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LAMOURE.json b/inst/extdata/OSD/L/LAMOURE.json index 5b13d66406..afac16b9a0 100644 --- a/inst/extdata/OSD/L/LAMOURE.json +++ b/inst/extdata/OSD/L/LAMOURE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--0 to 15 inches; black (N 2/0) silty clay loam, very dark gray (N 3/0) dry; weak fine granular structure; slightly hard, friable, slightly sticky; strong effervescence; moderately alkaline; clear wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A2--15 to 27 inches; black (10YR 2/1) silty clay loam, gray (10YR 5/1) dry; weak medium and coarse prismatic structure parting to weak fine subangular blocky; slightly hard, friable, slightly sticky; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined A horizons 24 to 42 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--27 to 34 inches; dark gray (N 4/0) silty clay loam, gray (N 5/0) dry; vertical faces of peds very dark gray (N 3/0); weak fine subangular blocky structure; slightly hard, friable, slightly sticky; few fine prominent dark brown (10YR 3/3) redox concentrations; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg2--34 to 43 inches; dark grayish brown (2.5Y 4/2) silt loam, grayish brown (2.5Y 5/2) dry; weak fine subangular blocky structure; slightly hard, friable; many fine distinct very dark gray (N 3/0) redox depletions and common fine prominent dark yellowish brown (10YR 4/4) redox concentrations; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ab--43 to 52 inches; very dark gray (10YR 3/1) loam, very dark grayish brown (10YR 3/2) rubbed, gray (10YR 5/1) dry; weak fine subangular blocky structure; hard, friable, slightly sticky; few fine faint dark brown (10YR 3/3) redox concentrations; slight effervescence; moderately alkaline; abrupt wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C'g--52 to 60 inches; dark grayish brown (2.5Y 4/2) sandy loam, grayish brown (2.5Y 5/2) dry; massive; soft, very friable; few fine distinct olive brown (2.5Y 4/4) redox concentrations; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LANE.json b/inst/extdata/OSD/L/LANE.json index 8fb996b9e7..de9234392c 100644 --- a/inst/extdata/OSD/L/LANE.json +++ b/inst/extdata/OSD/L/LANE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--18 to 24 inches; grayish brown (2.5Y 5/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; weak medium prismatic structure parting to moderate medium and fine subangular blocky; very hard, firm, sticky, and plastic; thin coats of dark gray (10YR 4/1) on faces of peds; shiny film on faces of peds; slight effervescence; slightly alkaline; gradual wavy boundary. (Combined Bt horizons is 10 to 22 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--24 to 38 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to moderate medium subangular blocky; very hard, firm, sticky, and plastic; patchy film on faces of peds; few fine accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (3 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--38 to 44 inches; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; moderate medium subangular blocky structure; hard, friable, sticky, and plastic; common fine and medium accumulations of carbonate; strong effervescence; mildly to slightly alkaline; gradual wavy boundary. (6 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--44 to 60 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable, slightly sticky, and slightly plastic; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LANKIN.json b/inst/extdata/OSD/L/LANKIN.json index 94753e74f5..7169f1da48 100644 --- a/inst/extdata/OSD/L/LANKIN.json +++ b/inst/extdata/OSD/L/LANKIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "2Bw3--21 to 24 inches; very dark grayish brown (2.5Y 3/2) loam, grayish brown (2.5Y 5/2) dry; weak medium and fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; intermittent lenses of sand; few rock fragments 1/8 to 10 inches in diameter; undersides of rock fragments coated with carbonates; few soft masses of carbonates; slight effervescence; mildly alkaline; clear irregular boundary. (Combined Bw horizons 7 to 22 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--24 to 38 inches; light brownish gray (2.5Y 6/2) clay loam, white (2.5Y 8/2) dry; common medium distinct gray (5Y 5/1) and olive brown (2.5Y 4/4) mottles increasing to common fine prominent yellowish brown (10YR 5/4) and olive gray (5Y 5/2) mottles at 34 to 38 inches; weak medium and fine subangular blocky structure; hard, firm, slightly sticky and slightly plastic; 5 percent coarse fragments; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--38 to 60 inches; light olive brown (2.5Y 5/4) clay loam, light yellowish brown (2.5Y 6/4) dry; many medium prominent gray (5Y 5/1) and yellowish brown (10YR 5/6) mottles; massive; very hard, firm, sticky and plastic; 5 percent coarse fragments; common gypsum crystals; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LANONA.json b/inst/extdata/OSD/L/LANONA.json index 6959d498da..8f043a5aa1 100644 --- a/inst/extdata/OSD/L/LANONA.json +++ b/inst/extdata/OSD/L/LANONA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--28 to 42 inches; grayish brown (2.5Y 5/2) loam, light brownish gray (2.5Y 6/2) dry; weak fine subangular blocky structure; slightly hard, friable, slightly sticky, and slightly plastic; few fine and very fine roots; few fine and very fine pores; common masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--42 to 60 inches; light olive brown (2.5Y 5/4) loam, light gray (2.5Y 7/2) dry; few fine distinct gray (10YR 5/1) and yellowish brown (10YR 5/6) mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LANSING.json b/inst/extdata/OSD/L/LANSING.json index e2b4a26215..ff9a31e13c 100644 --- a/inst/extdata/OSD/L/LANSING.json +++ b/inst/extdata/OSD/L/LANSING.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C-- 99 to 127 cm; dark grayish brown (2.5Y 4/2) gravelly loam; massive structure parts to moderate medium platy structure; firm; 5 percent nonflat 76 to 249 mm fragments and 25 percent nonflat 2 to 75 mm rock fragments; strong effervescence; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/L/LANTRY.json b/inst/extdata/OSD/L/LANTRY.json index 4e78700a01..844b2ad0de 100644 --- a/inst/extdata/OSD/L/LANTRY.json +++ b/inst/extdata/OSD/L/LANTRY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 4 inches; grayish brown (2.5Y 5/2) silt loam, very dark grayish brown (2.5Y 3/2) moist; weak fine and medium subangular blocky structure; slightly hard, very friable; many roots; slight effervescence; slightly alkaline; gradual smooth boundary. (2 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--4 to 8 inches; grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) loam, very dark grayish brown (2.5Y 3/2) and dark grayish brown (2.5Y 4/2) crushing to dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to weak medium subangular blocky structure; slightly hard, very friable; common roots; few fine accumulations of carbonate; slight effervescence; slightly alkaline; clear smooth boundary. (3 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--8 to 16 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky structure; hard, very friable; common roots; many fine and medium accumulations of carbonate; violent effervescence; slightly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--16 to 30 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; weak medium subangular blocky structure; hard, very friable; few roots; many coarse and medium accumulations of carbonate; violent effervescence; slightly alkaline; gradual smooth boundary. (The combined Bk horizons is 5 to 25 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cr1--30 to 40 inches; light brownish gray (2.5Y 6/2) soft sandstone, grayish brown (2.5Y 5/2) moist; few roots in upper part; strong effervescence; slightly alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr2--40 to 60 inches; light brownish gray (2.5Y 6/2) soft sandstone, grayish brown (2.5Y 5/2) moist; brownish yellow (10YR 6/6) stains on fracture faces of sandstone, strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LAPED.json b/inst/extdata/OSD/L/LAPED.json index 20ae39a12c..e2e91d7855 100644 --- a/inst/extdata/OSD/L/LAPED.json +++ b/inst/extdata/OSD/L/LAPED.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk--30 to 46 cm; light yellowish brown (10YR 6/4) gravelly clay loam, dark yellowish brown (10YR 3/4) moist; moderate fine prismatic structure parting to strong fine angular blocky; hard, firm, moderately sticky and moderately plastic; common very fine and fine roots; common very fine and fine tubular pores; few thin clay films on peds and bridging sand grains 15 percent gravel, 5 percent cobbles; few fine strongly effervescent lime filaments and thin lime coatings on undersides of coarse fragments; noneffervescent matrix; moderately alkaline (pH 8.3); abrupt wavy boundary. (0 to 6 cm thick)" diff --git a/inst/extdata/OSD/L/LARIOSCAMP.json b/inst/extdata/OSD/L/LARIOSCAMP.json index dc22d7aca2..6e63d3431a 100644 --- a/inst/extdata/OSD/L/LARIOSCAMP.json +++ b/inst/extdata/OSD/L/LARIOSCAMP.json @@ -158,7 +158,7 @@ "cf_class": "very cobbly", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bkq--38 to 64 cm; very pale brown (10YR 8/4) very cobbly sandy loam, light yellowish brown (10YR 6/4) moist; massive; slightly hard, friable, nonsticky and nonplastic; few very fine, fine, and medium roots; 25 percent gravel, 30 percent cobbles (rock fragments have carbonate and silica coatings up to 2 cm thick); violent effervescence; moderately alkaline (pH 8.1); clear wavy boundary. (10 to 43 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bkqm--64 to 74 cm; white (10YR 8/2) indurated duripan, light gray (10YR 7/2) moist; massive; extremely hard, brittle; violent effervescence; abrupt wavy boundary. (3 to 25 cm thick)" diff --git a/inst/extdata/OSD/L/LARSON.json b/inst/extdata/OSD/L/LARSON.json index 101b634ba0..589062cd46 100644 --- a/inst/extdata/OSD/L/LARSON.json +++ b/inst/extdata/OSD/L/LARSON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btn2--13 to 16 inches; dark gray (5Y 4/1) clay loam, very dark gray (5Y 3/1) moist; strong medium prismatic structure parting to moderate medium angular blocky; hard, very firm, sticky and plastic; slight effervescence; slightly alkaline; gradual wavy boundary. (Combined Btn horizons 5 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyz--16 to 22 inches; olive gray (5Y 5/2) clay loam, dark olive gray (5Y 3/2) moist; moderate medium prismatic structure parting to moderate fine angular blocky; slightly hard, firm, sticky and plastic; common gypsum crystals and fine segregations of salts; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--22 to 36 inches; light olive gray (5Y 6/2) clay loam, olive (5Y 4/3) moist; moderate medium prismatic structure parting to moderate medium angular blocky; slightly hard, firm, sticky and plastic; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 6 to 40 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; pale olive (5Y 6/3) clay loam, olive (5Y 4/3) moist; common medium distinct yellowish brown (10YR 5/4) moist redoximorphic concentrations; massive; hard, firm, sticky and plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LARVIE.json b/inst/extdata/OSD/L/LARVIE.json index ff9ff586ea..b8a59a2536 100644 --- a/inst/extdata/OSD/L/LARVIE.json +++ b/inst/extdata/OSD/L/LARVIE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; gray (10YR 5/1) clay, dark grayish brown (10YR 4/2) moist; moderate fine and medium subangular blocky structure with a weak thin crust in upper part; very hard, friable, slightly sticky; cracks 1/2 to 1 inch wide; strong effervescence; slightly alkaline; clear smooth boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss--4 to 12 inches; light gray (10YR 6/1) clay, grayish brown (10YR 5/2) moist; weak medium blocky structure; extremely hard, very firm, very sticky and very plastic; cracks 1/2 to 1 inch wide; few intersecting slickensides; tongues of dark gray (10YR 4/1) material; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss1--12 to 17 inches; gray (10YR 6/1 and 5/1) clay, grayish brown (10YR 5/2) moist; weak coarse blocky structure; extremely hard, extremely firm, very sticky and plastic; cracks 1/2 inch wide; few intersecting slickensides; few tongues of dark gray (10YR 4/1) material extend into horizon; common medium soft accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss2--17 to 26 inches; reddish gray (10R 6/1) clay, weak red (10R 4/2) moist; weak fine and medium blocky structure; extremely hard, very firm, very sticky and very plastic; few intersecting slickensides; many medium soft accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined Bkss horizons is 5 to 16 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--26 to 36 inches; reddish gray (10R 6/1) soft clay shale; breaks into blocky rock fragments; very hard and brittle; few medium soft accumulations of carbonate in upper 3 inches; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LAS.json b/inst/extdata/OSD/L/LAS.json index fabe02ddd2..e23974cbaf 100644 --- a/inst/extdata/OSD/L/LAS.json +++ b/inst/extdata/OSD/L/LAS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 12 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; weak granular structure; hard, firm; slight effervescence; mildly alkaline; gradual smooth boundary. (5 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--12 to 24 inches; light brownish gray (10YR 6/2) clay loam, dark grayish brown (10YR 4/2) moist; few thin strata of sandy loam; massive; very hard, firm; strong effervescence; moderately alkaline; gradual smooth boundary. (8 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C2--24 to 45 inches; light brownish gray (10YR 6/2) clay loam, grayish brown (10YR 5/2) moist; common medium distinct yellowish brown and strong brown mottles; massive; very hard, firm; stratified layers of sandy loam; coarser textured materials occur in lower part of horizon; strong effervescence; moderately alkaline; gradual smooth boundary. (10 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--45 to 75 inches; very pale brown (10YR 7/3) coarse sand and fine gravel; single grained; loose; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LASITA.json b/inst/extdata/OSD/L/LASITA.json index 7b48115718..d55a0008bd 100644 --- a/inst/extdata/OSD/L/LASITA.json +++ b/inst/extdata/OSD/L/LASITA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2BC--75 to 81 cm (30 to 32 inches); dark grayish brown (2.5Y 4/2) interior, silt loam, grayish brown (2.5Y 5/2) interior, dry; weak fine subangular blocky structure; friable, hard; few fine roots throughout; 2 percent 2 to 75 millimeter rock fragments; slight effervescence, moderately alkaline; clear wavy boundary. Lab sample #83P3648" diff --git a/inst/extdata/OSD/L/LAUREL.json b/inst/extdata/OSD/L/LAUREL.json index 5ac3e09607..b1dbe646f0 100644 --- a/inst/extdata/OSD/L/LAUREL.json +++ b/inst/extdata/OSD/L/LAUREL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A1sa--0 to 16 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist, strong fine and very fine granular structure under a very thin (1/16 to 1/8 inch) salt crust; soft, very friable; many flakes, streaks and seams of soluble salts and gypsum; few crystals of pure gypsum; slight effervescence; gradual boundary. (8 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1sa--16 to 22 inches; light yellowish brown (2 5Y 6/3) clay loam, light olive brown (2.5Y 5/3) moist; massive; hard, very friable; common flakes and streaks of soluble salts and gypsum; slight effervescence; diffuse boundary. (6 to 14 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--22 to 60 inches; light yellowish brown (2.5Y 6/3) stratified loam, silt loam, and very fine sandy loam; few yellowish brown mottles in upper part becoming more common with depth; slightly hard, very friable; slight effervescence." diff --git a/inst/extdata/OSD/L/LAWET.json b/inst/extdata/OSD/L/LAWET.json index 5e1b9a88a0..2487735cb2 100644 --- a/inst/extdata/OSD/L/LAWET.json +++ b/inst/extdata/OSD/L/LAWET.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak--0 to 25 centimeters (0 to 10 inches); dark gray (N 4/0) loam, black (10YR 2/1) moist, moderate fine and very fine granular structure; slightly hard, friable; violent effervescence (18 percent calcium carbonate equivalent); moderately alkaline; clear smooth boundary. (18 to 36 centimeters (7 to 14 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "ABk--25 to 46 centimeters (10 to 18 inches); gray (N 5/0) sandy clay loam, very dark gray (10YR 3/1) moist, moderate fine and very fine granular structure; hard, firm; violent effervescence (20 percent calcium carbonate equivalent); moderately alkaline; gradual smooth boundary. (8 to 25 centimeters (3 to 10 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--46 to 64 centimeters (18 to 25 inches); gray (N 6/0) sandy clay loam, dark gray (10YR 4/1) moist, moderate fine and very fine granular structure; hard, firm; violent effervescence (20 percent calcium carbonate equivalent); moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--64 to 79 centimeters (25 to 31 inches); gray (5Y 6/1) sandy loam, gray (5Y 5/1) moist, moderate and weak very fine granular structure; slightly hard, very friable; violent effervescence (12 percent calcium carbonate equivalent); moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk3--79 to 140 centimeters (31 to 55 inches); gray (5Y 6/1) sandy clay loam, gray (5Y 5/1) moist, many medium prominent reddish brown (5YR 4/4) moist mottles; weak medium and very fine subangular blocky structure; slightly hard, firm; small accumulations of lime; violent effervescence (22 percent CaC03 equivalent); moderately alkaline; gradual smooth boundary. (Combined thickness of Bk horizons is 15 to 102 centimeters (6 to 40 inches))" diff --git a/inst/extdata/OSD/L/LAWSHE.json b/inst/extdata/OSD/L/LAWSHE.json index 569a965f44..b494da969d 100644 --- a/inst/extdata/OSD/L/LAWSHE.json +++ b/inst/extdata/OSD/L/LAWSHE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--16 to 22 inches; yellowish brown (10YR 5/4) silty clay; common medium distinct dark grayish brown (10YR 4/2) mottles; weak medium subangular blocky structure; firm, plastic, sticky; common distinct dark grayish brown (2.5Y 4/2) coatings on vertical faces of peds; few roots; 10 percent strong brown (7.5YR 5/6) limestone fragments; slight effervescence; mildly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw3--22 to 25 inches; light olive brown (2.5Y 5/4) silty clay; common fine distinct yellowish brown (10YR 5/6) and gray (N 6/0) mottles; weak coarse subangular blocky structure; firm, plastic, sticky; common distinct dark grayish brown (2.5Y 4/2) coatings on vertical faces of peds; few roots; 10 percent strong brown (7.5YR 5/6) limestone fragments; slight effervescence, moderately alkaline; clear wavy boundary. (Combined thickness of the Bw horizons is 6 to 20 inches)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BC--25 to 37 inches; light olive brown (2.5Y 5/4) silty clay; many fine distinct light olive gray (5Y 6/2) and common fine distinct yellowish brown (10YR 5/4) mottles; weak coarse prismatic structure; very firm; many distinct light yellowish brown (2.5Y 6/4) coatings on vertical faces of peds; few medium very pale brown (10YR 7/3) soft accumulations (calcium carbonate); strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--37 to 50 inches; gray (5Y 6/1) silty clay; common medium prominent light olive brown (2.5Y 5/4) mottles; massive; firm, plastic; few medium black (10YR 2/1) concretions (iron and manganese oxides); 2 percent platy shale fragments; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/L/LAWTHER.json b/inst/extdata/OSD/L/LAWTHER.json index 421fe45226..8dcdf17c52 100644 --- a/inst/extdata/OSD/L/LAWTHER.json +++ b/inst/extdata/OSD/L/LAWTHER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss1--10 to 21 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate fine and medium subangular blocky; very hard, firm, very sticky and very plastic; common very fine roots; common very fine pores; very dark grayish brown (2.5Y 3/2) moist coatings on faces of peds; 1 inch wide cracks filled with A horizon material; common slickensides; very slight effervescence; slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss2--21 to 33 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse and medium subangular blocky structure parting to moderate fine subangular blocky; very hard, firm, very sticky and very plastic; few very fine roots; common very fine pores; 1/2 inch wide cracks filled with A horizon material; common slickensides; few medium irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bss horizons 5 to 25 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--33 to 47 inches; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; very hard, firm, very sticky and very plastic; few very fine roots; common very fine pores; 1/2 inch wide cracks filled with A horizon material; common slickensides; common fine irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 24 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--47 to 60 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure; very hard, firm, very sticky and very plastic; few very fine roots; many very fine pores; common fine irregularly shaped masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LAZARE.json b/inst/extdata/OSD/L/LAZARE.json index 247e48827d..13b16edc5f 100644 --- a/inst/extdata/OSD/L/LAZARE.json +++ b/inst/extdata/OSD/L/LAZARE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss1--64 to 109 cm (25 to 43 in); dark gray (10YR 4/1) silty clay, very dark gray (10YR 3/1) moist; moderate coarse wedge shaped aggregates parting to moderate medium angular blocky structure; extremely hard, very firm, very sticky and plastic; few very fine and fine roots mainly confined to stress fractures; very few fine pores; about 2 percent fine calcium carbonate nodules; few 1 to 3 mm black (10YR 2/1) iron-manganese concretions; few siliceous gravels mainly less than 1 cm across long axis; many distinct slickensides; very slight effervescent; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescenct", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss2--109 to 175 cm (43 to 69 in); dark grayish brown (10YR 4/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate medium wedge shaped aggregates parting to moderate medium angular blocky structure; extremely hard, very firm, very sticky and plastic; very few very fine roots; about 3 percent fine calcium carbonate nodules; few 1 to 2 mm size black (10YR 2/1) iron-manganese concretions; many distinct slickensides in upper part decreasing to few in lower part; slightly effervescenct; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bss and Bkss horizons is 94 to 152 cm [37 to 60 inches])" diff --git a/inst/extdata/OSD/L/LA_PRAIRIE.json b/inst/extdata/OSD/L/LA_PRAIRIE.json index 32bdcb187d..70889a075e 100644 --- a/inst/extdata/OSD/L/LA_PRAIRIE.json +++ b/inst/extdata/OSD/L/LA_PRAIRIE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--19 to 28 inches; very dark grayish brown (10YR 3/2) and very dark brown (10YR 2/2) silt loam, grayish brown (10YR 5/2) and dark grayish brown (10YR 4/2) dry: weak coarse prismatic structure parting to weak coarse subangular blocky; hard, friable, slightly sticky and slightly plastic; common fine roots; many fine pores; few fine masses of carbonates; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 35 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--28 to 44 inches; very dark grayish brown (10YR 3/2) silt loam, grayish brown (10YR 5/2) dry; weak coarse and medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few roots; common fine pores; several oval krotovinas 1 to 3 inches in diameter; few fine masses of carbonates; slight effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--44 to 60 inches; brown (10YR 4/3) silt loam, brown (10YR 5/3) dry; weak thin platy structure; hard, friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LEADORE.json b/inst/extdata/OSD/L/LEADORE.json index 5a0ff826cb..c4d2b515c4 100644 --- a/inst/extdata/OSD/L/LEADORE.json +++ b/inst/extdata/OSD/L/LEADORE.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bkq2--27 to 60 inches; multicolored extremely cobbly sand; single grain; loose; common very fine roots as mats around pebbles and cobbles; many very fine, common fine and few medium interstitial pores; 40 percent pebbles, 35 percent cobbles, 5 percent stones; lime and silica coatings less than 2mm thick on undersides of coarse fragments cementing fine pebbles and sand to coarse fragments; slightly effervescent with areas of strongly effervescent; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/L/LEATHERS.json b/inst/extdata/OSD/L/LEATHERS.json index 26e48d11d3..7ce869f9f0 100644 --- a/inst/extdata/OSD/L/LEATHERS.json +++ b/inst/extdata/OSD/L/LEATHERS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 2 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; moderate medium platy structure; slightly hard, firm, moderately sticky and moderately plastic; few very fine roots; many very fine vesicular pores; slight effervescence; trace of calcium carbonate; SAR is 12; EC is 1.84 mmhos/cm; strongly alkaline (pH 9.0); abrupt smooth boundary. (2 to 9 inches thick)" diff --git a/inst/extdata/OSD/L/LEAVITT.json b/inst/extdata/OSD/L/LEAVITT.json index 59d6c3051f..40b36ade97 100644 --- a/inst/extdata/OSD/L/LEAVITT.json +++ b/inst/extdata/OSD/L/LEAVITT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--29 to 38 inches; light brown (7.5YR 6/3) clay loam, brown (7.5YR 5/3) moist; weak coarse subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few fine and medium roots; common distinct clay films on faces of peds and in root channels and pores; slightly effervescent matrix and strongly effervescent near calcium carbonate masses and filaments; 10 percent rounded gravel; moderately alkaline (pH 8.0); gradual smooth boundary. (5 to 12 inches thick)" diff --git a/inst/extdata/OSD/L/LEFOR.json b/inst/extdata/OSD/L/LEFOR.json index 30d765432e..633b18e936 100644 --- a/inst/extdata/OSD/L/LEFOR.json +++ b/inst/extdata/OSD/L/LEFOR.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--30 to 36 inches; pale yellow (2.5Y 7/4) fine sandy loam, light olive brown (2.5Y 5/4) moist; strong very coarse prismatic structure parting to moderate medium angular blocky; hard, friable, slightly sticky and slightly plastic; few roots; common fine and medium pores; few fine masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 22 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--36 to 60 inches; pale yellow and white (2.5Y 7/4 and 8/4 and 5Y 8/2) soft sandstone, light yellowish brown and light gray (2.5Y 6/4 and 5Y 7/2) moist; gypsum crystals in some layers; slight effervescence in some layers and no effervescence in others; moderately alkaline." diff --git a/inst/extdata/OSD/L/LEHR.json b/inst/extdata/OSD/L/LEHR.json index 6cd45ca418..427922174b 100644 --- a/inst/extdata/OSD/L/LEHR.json +++ b/inst/extdata/OSD/L/LEHR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--11 to 15 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; few distinct very dark grayish brown (10YR 3/2) moist coatings on faces of peds; moderate medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; about 10 percent gravel; common medium irregular masses and filaments of carbonates; thin crusts of carbonates on undersides of pebbles; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk2--15 to 22 inches; light yellowish brown (10YR 6/4) and white (10YR 8/1) gravelly loamy coarse sand, yellowish brown (10YR 5/4) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, very friable, nonsticky and nonplastic; about 30 percent gravel; many medium irregular masses and filaments of carbonates; thin crusts of carbonates on undersides of pebbles; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 37 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--22 to 60 inches; light brownish gray (2.5Y 6/2) and pale yellow (2.5Y 7/4) very gravelly coarse sand, grayish brown (2.5Y 5/2) and light yellowish brown (2.5Y 6/4) moist; single grain; loose, nonsticky and nonplastic; about 40 percent gravel; thin crusts of carbonates on undersides of pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LEITER.json b/inst/extdata/OSD/L/LEITER.json index 35070dceea..ff3c71636f 100644 --- a/inst/extdata/OSD/L/LEITER.json +++ b/inst/extdata/OSD/L/LEITER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "slightly effervescent", + "eff_class": "inconsistently effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--33 to 60 inches; brownish yellow to grayish brown soft shale; slightly effervescent to about 50 inches and inconsistently effervescent below." diff --git a/inst/extdata/OSD/L/LEMERT.json b/inst/extdata/OSD/L/LEMERT.json index 1759964fa9..68fd48fa81 100644 --- a/inst/extdata/OSD/L/LEMERT.json +++ b/inst/extdata/OSD/L/LEMERT.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt1--3 to 7 inches; black (10YR 2/1) sandy loam, dark gray (10YR 4/1) dry; strong medium columnar structure parting to strong medium subangular blocky; extremely hard, firm, sticky and plastic; common fine roots; many thin clay films on faces of peds and surface of pores; few pebbles up to 5 mm in size; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--7 to 12 inches; very dark gray (10YR 3/1) sandy loam, dark gray (10YR 4/1) dry; strong medium prismatic structure parting to strong medium subangular blocky; extremely hard, firm, sticky and plastic; few fine roots; common thin clay films on faces of peds; few rock fragments as much as 5 mm in size; light gray (10YR 7/1) diffuse carbonates on interior of peds; strong effervescence; very strongly alkaline; clear wavy boundary. (Combined Bt horizons 6 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky--12 to 17 inches; light gray (N 7/0) loam, white (N 8/0) dry; few fine distinct light olive brown (2.5Y 5/6) redoximorphic concentrations; weak medium prismatic structure parting to moderate medium subangular blocky; hard, friable, sticky and plastic; few fine roots; gray (N 5/0) coatings on faces of prisms; few pebbles; few nests of gypsum crystals; few nests of carbonates; violent effervescence; strongly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkyz--17 to 22 inches; light brownish gray (2.5Y 6/2) loam, light gray (N 7/0) dry; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, sticky and plastic; few small roots; few pebbles; common fine salt and gypsum crystals; few nests of carbonates; violent effervescence; very strongly alkaline; clear wavy boundary. (Combined Bk horizons 0 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--22 to 49 inches; olive brown (2.5Y 4/4) coarse sand, light olive brown (2.5Y 5/4) dry; single grain; loose, nonsticky and nonplastic; about 10 percent gravel; slight effervescence; strongly alkaline; clear wavy boundary. (0 to 35 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C2--49 to 60 inches; dark grayish brown (2.5Y 4/2) clay loam, light brownish gray (2.5Y 6/2) dry; massive; hard, firm, sticky and plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LEMOND.json b/inst/extdata/OSD/L/LEMOND.json index 651f54ab0c..c930459681 100644 --- a/inst/extdata/OSD/L/LEMOND.json +++ b/inst/extdata/OSD/L/LEMOND.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 12 inches; black (N 2/0) loam, very dark gray (10YR 3/1) dry; cloddy, friable; strong effervescence; mildly alkaline; abrupt smooth boundary. (8 to 18 inches thick, A1 horizon)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "AB--12 to 17 inches; very dark gray (10YR 3/1) loam; weak very fine subangular blocky structure; friable; strong effervescence; mildly alkaline; gradual irregular boundary. (3 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bg--17 to 24 inches; gray (5Y 5/1) sandy loam; many fine faint olive gray (5Y 5/2) and few fine distinct light olive brown (2.5Y 5/4) and olive (5Y 5/4) mottles; weak fine subangular blocky structure; very friable; few very dark gray (10YR 3/1) tongues; strong effervescence; mildly alkaline; clear wavy boundary. (3 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--30 to 60 inches; olive gray (5Y 5/2) grading to light olive gray (5Y 6/2) in the lower part, sand; single grained; slight effervescence in the lower part; mildly alkaline grading to moderately alkaline in the lower part." diff --git a/inst/extdata/OSD/L/LEMOYNE.json b/inst/extdata/OSD/L/LEMOYNE.json index 90ec621f12..0a5ab33e4d 100644 --- a/inst/extdata/OSD/L/LEMOYNE.json +++ b/inst/extdata/OSD/L/LEMOYNE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--15 to 33 centimeters (6 to 13 inches); grayish brown (10YR 5/2) sand; dark grayish brown (10YR 4/2) moist; weak fine subangular blocky structure; loose; slight effervescence, slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--33 to 46 centimeters (13 to 18 inches); dark grayish brown (10YR 4/2) loamy sand; very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; soft, very friable; slight effervescence, slightly alkaline; clear smooth boundary. (Combined A horizon is 30 to 61 centimeters (12 to 24 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bw1--46 to 56 centimeters (18 to 22 inches); brown (10YR 5/3) clay loam; brown (10YR 4/3) moist; strong coarse prismatic structure parting to moderate medium subangular blocky; hard, firm; sodium adsorption ratio= 5; 9 percent calcium carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bw2--56 to 91 centimeters (22 to 36 inches); pale brown (10YR 6/3) sandy clay loam; brown (10YR 5/3) moist; moderate medium prismatic structure parting to moderate fine subangular blocky; hard, friable; sodium adsorption ratio= 5; 7 percent calcium carbonate; violent effervescence; strongly alkaline; gradual smooth boundary. (Combined Bw horizon is 25 to 61 centimeters (10 to 24 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk--91 to 137 centimeters (36 to 54 inches); white (10YR 8/1) clay loam; light gray (10YR 7/2) moist; few fine prominent light yellowish brown (10YR 6/4) iron masses in the matrix; moderate medium prismatic structure parting to moderate fine subangular blocky; hard, friable; sodium adsorption ratio= 11; 30 percent calcium carbonate; violent effervescence; strongly alkaline; clear wavy boundary. (13 to 61 centimeters (5 to 24 inches) thick)" diff --git a/inst/extdata/OSD/L/LESHARA.json b/inst/extdata/OSD/L/LESHARA.json index c5f70828cd..5b8af0e5e5 100644 --- a/inst/extdata/OSD/L/LESHARA.json +++ b/inst/extdata/OSD/L/LESHARA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--38 to 48 centimeters (15 to 19 inches); dark gray (10YR 4/1) silt loam, very dark gray (10YR 3/1) moist; moderate medium granular structure; slightly hard, friable; violent effervescence (7 percent CaCo3); moderately alkaline; gradual smooth boundary. (Combined thickness of the A horizon is 25 to 56 centimeters (10 to 22 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--48 to 66 centimeters (19 to 26 inches); grayish brown (2.5Y 5/2) silt loam, dark grayish brown (2.5Y 4/2) moist; moderate medium granular structure; slightly hard, friable; common medium and fine distinct yellowish brown (10YR 5/4) iron masses; violent effervescence (7 percent CaCo3); moderately alkaline (pH 8.2); gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--66 to 94 centimeters (26 to 37 inches); light brownish gray (2.5Y 6/2) silt loam, grayish brown (2.5Y 5/2) moist; weak medium subangular blocky structure; slightly hard, friable; common fine distinct yellowish brown (10YR 5/4) iron masses; few white lime masses and small concretions; violent effervescence (10 percent CaCo3); slightly alkaline; clear smooth boundary. (Combined Bk horizon is 0 to 53 centimeters (0 to 21 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--94 to 130 centimeters (37 to 51 inches); light olive gray (5Y 6/2) silt loam, olive gray (5Y 5/2) moist; massive; slightly hard, friable; many fine prominent yellowish brown (10YR 5/4) iron masses; strong effervescence (10 percent CaCo3); slightly alkaline; clear smooth boundary. (25 to 38 centimeters (10 to 15 inches) thick)" diff --git a/inst/extdata/OSD/L/LESHO.json b/inst/extdata/OSD/L/LESHO.json index 76cd6c80ef..73f6361c94 100644 --- a/inst/extdata/OSD/L/LESHO.json +++ b/inst/extdata/OSD/L/LESHO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 10 inches; dark grayish brown (10YR 4/2) clay loam, very dark brown (10YR 2/2) moist; moderate medium granular structure; hard, friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--10 to 18 inches; grayish brown (10YR 5/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium granular structure; hard, friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of A horizons ranges from 7 to 20 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--18 to 32 inches; light brownish gray (10YR 6/2) clay loam, dark grayish brown (10YR 4/2) moist; common fine prominent reddish yellow (5YR 6/6) mottles; moderate medium granular structure; hard, friable, slightly sticky and slightly sticky; strong effervescence; moderately alkaline; weak stratification of texture and color; gradual wavy boundary. (8 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--32 to 60 inches; pale brown (10YR 6/3) fine sand and sand, yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky and nonplastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LETA.json b/inst/extdata/OSD/L/LETA.json index 41c70b8354..ef8e1d87ad 100644 --- a/inst/extdata/OSD/L/LETA.json +++ b/inst/extdata/OSD/L/LETA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; very dark gray (10YR 3/1) silty clay, gray (10YR 5/1) dry; weak fine granular structure; very firm, many fine roots; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--8 to 13 inches; very dark grayish brown (2.5Y 3/2) silty clay loam, grayish brown (2.5Y 5/2) dry; moderate medium subangular blocky structure; very firm, common fine roots; strong effervescence; slightly alkaline; clear smooth boundary. (Combined thickness of the A horizon is 10 to 24 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bg--13 to 25 inches; dark grayish brown (2.5Y 4/2) silty clay; moderate medium subangular blocky structure; very firm, few fine roots; few fine prominent dark yellowish brown (10YR 4/4) masses of iron accumulation throughout; strong effervescence; slightly alkaline; clear smooth boundary. (0 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--25 to 60 inches; stratified grayish brown (10YR 5/2) very fine sandy loam and silt loam; massive with bedding planes along horizontal surfaces of strata; common fine distinct dark yellowish brown (10YR 4/4) masses of iron accumulation throughout; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LETCHER.json b/inst/extdata/OSD/L/LETCHER.json index a7da761bcb..774728c820 100644 --- a/inst/extdata/OSD/L/LETCHER.json +++ b/inst/extdata/OSD/L/LETCHER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btnk--19 to 25 inches; dark grayish brown (10YR 4/2) sandy loam, very dark grayish brown (10YR 3/2) moist; weak very coarse prismatic structure; hard, very friable; common fine and medium accumulations of salt and carbonate; slight effervescence; strongly alkaline; clear smooth boundary. (0 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "BC--25 to 32 inches; grayish brown (10YR 5/2) sandy loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; hard, very friable; few fine striations and accumulations of carbonate; slight effervescence; strongly alkaline; abrupt smooth boundary. (0 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ab--32 to 40 inches; gray (10YR 5/1) loam, very dark gray (10YR 3/1) moist; weak medium subangular blocky structure; very hard, firm; few fine striations and accumulations of carbonate; slight effervescence; strongly alkaline; abrupt smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bkb--40 to 48 inches; dark gray (10YR 4/1) sandy loam, black (10YR 2/1) moist; weak fine and medium subangular blocky structure; very hard, friable; many fine striations and accumulations of carbonate; strong effervescence; strongly alkaline; abrupt smooth boundary. (Combined Ab and Bkb horizons are 0 to 20 inches thick.)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; light brownish gray (2.5Y 6/2) and light gray (2.5Y 7/2) sandy loam, dark grayish brown (10YR 4/2) moist; common fine faint mottles of reddish yellow (7.5YR 6/8) moist; massive; hard, friable; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/L/LEVASY.json b/inst/extdata/OSD/L/LEVASY.json index 24dc90adf4..111a8c826c 100644 --- a/inst/extdata/OSD/L/LEVASY.json +++ b/inst/extdata/OSD/L/LEVASY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; very dark gray (10YR 3/1) silty clay, dark gray (10YR 4/1) dry; weak fine subangular blocky structure parting to moderate fine granular; firm; few fine roots; slight effervescence; mildly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--6 to 17 inches; very dark grayish brown (2.5Y 3/2) silty clay, dark grayish brown (2.5Y 4/2) dry; moderate fine subangular blocky structure; firm; few fine roots; few fine prominent reddish brown (5YR 4/4) masses of iron accumulation in ped interiors; slight effervescence; mildly alkaline; clear smooth boundary. (Combined thickness of the A horizons is 10 to 24 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bg--17 to 29 inches; dark grayish brown (2.5Y 4/2) silty clay; weak fine subangular blocky structure; firm; few fine roots; few fine prominent reddish brown (5YR 4/4) masses of iron accumulation in ped interiors; dark gray (10YR 4/1) coatings on faces of peds; strong effervescence; mildly alkaline; abrupt smooth boundary. (0 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--29 to 60 inches; stratified grayish brown (2.5Y 5/2) and dark grayish brown (2.5Y 4/2) very fine sandy loam; massive; a 2 inch layer of very dark gray (10YR 3/1) silty clay (54 to 56 inches); few fine roots; very friable; common fine distinct gray (10YR 5/1) and dark yellowish brown (10YR 4/4) and few fine prominent reddish brown (5YR 4/4) masses of iron accumulation in ped interiors; violent effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/L/LEWELLEN.json b/inst/extdata/OSD/L/LEWELLEN.json index 61695abaa3..25d6cd6ff6 100644 --- a/inst/extdata/OSD/L/LEWELLEN.json +++ b/inst/extdata/OSD/L/LEWELLEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ak1--0 to 4 inches; dark grayish brown (10YR 4/2) loam; very dark gray (10YR 3/2) moist; moderate fine granular structure; soft, very friable; sodium adsorption ratio 17; 18 percent calcium carbonates; violent effervescence; strongly alkaline; abrupt wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ak2--4 to 8 inches; grayish brown (10YR 5/2) loam; dark grayish brown (10YR 4/2) moist; moderate fine granular structure; slightly hard, very friable; sodium adsorption ratio 39; 19 percent calcium carbonates; electrical conductivity= 9; violent effervescence; strongly alkaline; abrupt wavy boundary. (Combined thickness of the A horizon is 3 to 10 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "ACk--8 to 12 inches; light brownish gray (10YR 6/2) very fine sandy loam; grayish brown (10YR 5/2) moist; moderate fine granular structure; slightly hard, very friable; sodium adsorption ratio 35; 4 percent calcium carbonates; electrical conductivity= 6;violent effervescence; strongly alkaline; abrupt wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/L/LEX.json b/inst/extdata/OSD/L/LEX.json index 115c115b90..a04fd8e68d 100644 --- a/inst/extdata/OSD/L/LEX.json +++ b/inst/extdata/OSD/L/LEX.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 7 inches; gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; weak medium granular structure; hard, friable; many, medium roots; violent effervescence; slightly alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--7 to 9 inches; gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; moderate medium granular structure; hard, friable; common fine roots; violent effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--9 to 18 inches; gray (N 5/0) silty clay loam, very dark gray (N 3/0) moist; moderate fine and medium subangular blocky structure; hard, firm; common fine roots, few fine tubular pores; strong effervescence; slightly alkaline; gradual smooth boundary. (Combined thickness of A is 7 to 20 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--18 to 23 inches; light gray (2.5Y 7/2) fine sandy loam, grayish brown (2.5Y 5/2) moist; few small and medium prominent dark yellowish brown (10YR 4/4) iron masses in the soil matrix; massive; slightly hard, friable, few fine roots, few fine tubular pores; slight effervescence; slightly alkaline; abrupt smooth boundary. (5 to 18 inches thick)" diff --git a/inst/extdata/OSD/L/LEXSWORTH.json b/inst/extdata/OSD/L/LEXSWORTH.json index dec1575c71..602d619e89 100644 --- a/inst/extdata/OSD/L/LEXSWORTH.json +++ b/inst/extdata/OSD/L/LEXSWORTH.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--12 to 19 inches; gray (10YR 5/1) sandy clay loam, very dark grayish brown (10YR 4/2) moist; massive; violent effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--19 to 26 inches; coarse sandy loam, brown (10YR 5/3) moist; few fine distinct brown (7.5YR 4/4) redox features; massive; violent effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C3--26 to 33 inches; coarse sand, light yellowish brown (2.5Y 6/3) moist; single grained; violent effervescence; common medium distinct brown (7.5YR 4/4) redox features; slightly alkaline; abrupt wavy boundary." diff --git a/inst/extdata/OSD/L/LIENDRE.json b/inst/extdata/OSD/L/LIENDRE.json index eb01b6b6fb..691b80b852 100644 --- a/inst/extdata/OSD/L/LIENDRE.json +++ b/inst/extdata/OSD/L/LIENDRE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--58 to 108 centimeters (23 to 43 inches); brown (10YR 4/3) sandy clay loam, yellowish brown (10YR 5/4), dry; 60 percent sand; 24 percent clay; moderate medium angular blocky structure; friable, hard, moderately sticky, moderately plastic; few fine roots and few very fine roots; many fine tubular and common medium tubular and common very fine tubular pores; 10 percent distinct clay films on all faces of peds; 20 percent fine platy carbonate concretions on bottom of rock fragments and 6 percent fine dendritic carbonate masses lining pores; 5 percent subrounded strongly cemented gravel fragments and 5 percent subrounded strongly cemented cobble fragments; strong effervescence; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--108 to 160 centimeters (43 to 64 inches); dark yellowish brown (10YR 4/4) stratified sandy loam to very gravelly sandy loam, light yellowish brown (10YR 6/4), dry; 60 percent sand; 19 percent clay; weak medium subangular blocky structure parts to structureless single grain structure; loose, loose, slightly sticky, slightly plastic; many very fine interstitial pores; 20 percent fine platy carbonate masses around rock fragments; 2 percent subrounded strongly cemented cobble fragments and 8 percent subrounded strongly cemented gravel fragments; strong effervescence." diff --git a/inst/extdata/OSD/L/LIHUE.json b/inst/extdata/OSD/L/LIHUE.json index 3adba79899..39aaed2ed1 100644 --- a/inst/extdata/OSD/L/LIHUE.json +++ b/inst/extdata/OSD/L/LIHUE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1--0 to 6 inches; dusky red (2.5YR 3/2) silty clay, yellowish red (5YR 4/6) dry; cloddy, parting to weak fine and medium subangular blocky structure; very hard, firm, sticky and plastic; many roots; common very fine and fine pores; many black concretions; strong effervescence with hydrogen peroxide; strongly acid (pH 5.5); abrupt smooth boundary (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--6 to 12 inches; dusky red (2.5YR 3/2) silty clay, yellowish red (5YR 4/6) dry; massive very hard, friable, sticky and plastic; many roots; many very fine and fine pores; many very fine black concretions; strong effervescence with hydrogen peroxide; strongly acid (pH 5.5); abrupt smooth boundary (4 to 9 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "broken", "narrative": "Bo1--12 to 21 inches; dark reddish brown (2.5YR 3/4) silty clay, red (2.5YR 4/6) dry; moderate medium, fine, and very fine subangular blocky structure; hard, friable, sticky and plastic; many roots; many very fine and fine pores; many fine black concretions; moderate effervescence with hydrogen peroxide; nearly continuous glaze on surface of peds that look like clay films slightly acid (pH 6.3); clear broken boundary. (7 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bo2--21 to 27 inches; dark reddish brown (2.5YR 3/4) silty clay, red (2.5YR 4/6) dry; strong very fine subangular blocky structure; very hard, friable, sticky and plastic; many roots; many very fine and fine pores; nearly continuous glaze on peds; common black concretions; weak effervescence with hydrogen peroxide; few fine black manganese dioxide staining on peds; neutral (pH 6.6); clear smooth boundary (5 to 8 inches thick)" diff --git a/inst/extdata/OSD/L/LINDAAS.json b/inst/extdata/OSD/L/LINDAAS.json index 863b7088ed..e7456bab1b 100644 --- a/inst/extdata/OSD/L/LINDAAS.json +++ b/inst/extdata/OSD/L/LINDAAS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--27 to 37 inches; light brownish gray (2.5Y 6/2) silty clay loam, light gray (2.5Y 7/2) dry; few fine distinct very dark gray (10YR 3/1) and yellowish brown (10YR 5/4) redoximorphic concentrations; weak coarse prismatic structure; slightly hard, friable, sticky and plastic; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--37 to 60 inches; light olive gray (5Y 6/2) silt loam, light gray (5Y 7/2) dry; few fine distinct very dark gray (10YR 3/1) and many medium prominent strong brown (7.5YR 5/6) redoximorphic concentrations; weak very coarse prismatic structure parting to weak medium platy; slightly hard, friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LINDALE.json b/inst/extdata/OSD/L/LINDALE.json index b87ab63ef1..10ef823635 100644 --- a/inst/extdata/OSD/L/LINDALE.json +++ b/inst/extdata/OSD/L/LINDALE.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1ca--32 to 43 inches; light brown (7.5YR 6/4) very gravelly clay, brown (7.5YR 5/4) moist; massive; extremely hard, very firm; few fine roots; about 60 percent by volume of limestone gravel, cobbles, and stones; about 10 percent soft masses of calcium carbonate; few fine fragments of ironstone, moderately alkaline; strong effervescence; diffuse boundary. (6 to 20 inches thick)" diff --git a/inst/extdata/OSD/L/LINKVILLE.json b/inst/extdata/OSD/L/LINKVILLE.json index ce5d645fe6..46e8c25b16 100644 --- a/inst/extdata/OSD/L/LINKVILLE.json +++ b/inst/extdata/OSD/L/LINKVILLE.json @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--77 to 100 inches; stratified brown (10YR 5/3) sand and gravelly sand; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LINTON.json b/inst/extdata/OSD/L/LINTON.json index 26149d879e..40f90cafbc 100644 --- a/inst/extdata/OSD/L/LINTON.json +++ b/inst/extdata/OSD/L/LINTON.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--7 to 14 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; many fine roots; common fine pores; slight effervescence; neutral; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw2--14 to 17 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure; slightly hard, very friable, slightly sticky and slightly plastic; many fine roots; many fine pores; slight effervescence; slightly alkaline; clear boundary. (Combined Bw horizon 8 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--17 to 29 inches; light gray (2.5Y 7/2) silt loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure; slightly hard, very friable, slightly sticky and slightly plastic; common fine roots; common fine pores; common masses of carbonates; strong effervescence; slightly alkaline; clear boundary. (0 to 35 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--29 to 60 inches; light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LIONHEAD.json b/inst/extdata/OSD/L/LIONHEAD.json index 9de73dff3f..e2c5c7d4a6 100644 --- a/inst/extdata/OSD/L/LIONHEAD.json +++ b/inst/extdata/OSD/L/LIONHEAD.json @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--34 to 46 inches; yellowish brown (10YR 5/4) extremely gravelly sandy loam, dark brown (10YR 4/3) moist; weak fine subangular blocky structure; soft, very friable; few very fine, fine and medium roots; slight effervescence; few very fine soft lime accumulations; 35 percent pebbles, 30 percent cobbles; moderately alkaline (pH 8.0); gradual wavy boundary. (8 to 19 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely cobbly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--46 to 60 inches; light yellowish brown (10YR 6/4) extremely cobbly sandy loam, dark yellowish brown (10YR 4/4) moist; single grain; loose; few very fine roots; slight effervescence; few very fine soft lime accumulations; 20 percent pebbles, 60 percent cobbles; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/L/LISAM.json b/inst/extdata/OSD/L/LISAM.json index c427ccb3f9..c2ff704fa4 100644 --- a/inst/extdata/OSD/L/LISAM.json +++ b/inst/extdata/OSD/L/LISAM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 3 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure parting to strong fine granular; very hard, firm, sticky and very plastic; common very fine and fine roots; slight effervescence; moderately alkaline; clear wavy boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--3 to 9 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse and moderate medium subangular blocky structure parting to moderate fine angular blocky; extremely hard, firm, sticky and very plastic; few fine and medium roots; common fine pores; many fine gypsum crystals; few platy shale fragments; slight effervescence; moderately alkaline; clear wavy boundary. (5 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--9 to 15 inches; light olive gray (5Y 6/2) clay and partly weathered platy shale, olive gray (5Y 5/2) moist; weak coarse and fine subangular blocky structure parting to fine platy; extremely hard, firm, sticky and plastic; few very fine roots; common fine gypsum crystals; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 8 inches thick)" diff --git a/inst/extdata/OSD/L/LISCO.json b/inst/extdata/OSD/L/LISCO.json index a3f5c73543..908148bebc 100644 --- a/inst/extdata/OSD/L/LISCO.json +++ b/inst/extdata/OSD/L/LISCO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw1--4 to 7 inches; light brownish gray (10YR 6/2) very fine sandy loam, very dark grayish brown (10YR 3/2) moist; moderate coarse columnar structure; hard, friable; exchangeable sodium percentage greater than 15; strong effervescence; very strongly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--7 to 13 inches; light brownish gray (10YR 6/2) very fine sandy loam, very dark grayish brown (10YR 3/2) moist; moderate coarse prismatic structure; hard, friable; exchangeable sodium percentage greater than 15; moderately saline; strong effervescence; very strongly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw3--13 to 22 inches; light brownish gray (10YR 6/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure; slightly hard, very friable; exchangeable sodium percentage greater than 15; strongly saline; violent effervescence; very strongly alkaline; gradual smooth boundary. (Combined thickness of B horizon is 10 to 32 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--22 to 48 inches; light gray (10YR 7/2) fine sandy loam, grayish brown (10YR 5/2) moist; few distinct yellowish brown (10YR 5/4 moist) iron masses in the soil matrix; massive; slightly hard, very friable; exchangeable sodium percentage greater than 15; moderately saline; strong effervescence; very strongly alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--48 to 80 inches; very pale brown (10YR 7/3) loamy fine sand, light brownish gray (10YR 6/2) moist; massive; soft, very friable; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/L/LISMORE.json b/inst/extdata/OSD/L/LISMORE.json index 5a7ae6091a..67aabfef87 100644 --- a/inst/extdata/OSD/L/LISMORE.json +++ b/inst/extdata/OSD/L/LISMORE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bw2--24 to 32 inches; light olive brown (2.5Y 5/4) clay loam, dark grayish brown (2.5Y 4/2) moist; few fine faint mottles of light gray (10YR 6/1); weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few worm casts of dark gray (10YR 4/1); slight effervescence in spots; slightly alkaline; clear wavy boundary. (Combined 2Bw horizons is 10 to 24 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--32 to 48 inches; light brownish gray (2.5Y 6/2) clay loam, light olive brown (2.5Y 5/4) moist; common fine distinct mottles of light olive brown (2.5Y 5/6) and light gray (10YR 6/1) moist; weak medium and coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common fine accumulations of carbonate; violent effervescence; slightly alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--48 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, light olive brown (2.5Y 5/4) moist; common fine faint mottles of light yellowish brown (2.5Y 6/4), light olive brown (2.5Y 5/6), and light gray (10YR 6/1) moist; massive; hard, friable; few medium and fine accumulations of carbonate; few fine concretions of lime, violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LITIMBER.json b/inst/extdata/OSD/L/LITIMBER.json index c1ac070e62..15d42fa98c 100644 --- a/inst/extdata/OSD/L/LITIMBER.json +++ b/inst/extdata/OSD/L/LITIMBER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw2--9 to 17 inches; reddish brown (5YR 5/3) clay loam, reddish brown (5YR 4/4) moist; moderate medium prismatic structure; hard, friable, moderately sticky, moderately plastic; many fine and medium vertical tubular pores; common very fine roots; moderate effervescence; gradual boundary. (5 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--17 to 40 inches; pink (5YR 7/3) clay loam, reddish brown (5YR 5/3) moist; weak coarse prisms that separate to weak medium platy structure; hard, friable, slightly sticky, slightly plastic; common fine vertical tubular pores; common very fine roots; strong effervescence with many films and threads of soft segregated lime; gradual boundary. (10 to 30 inches thick)" diff --git a/inst/extdata/OSD/L/LITTLEMO.json b/inst/extdata/OSD/L/LITTLEMO.json index 06fdc5c728..9234df60a7 100644 --- a/inst/extdata/OSD/L/LITTLEMO.json +++ b/inst/extdata/OSD/L/LITTLEMO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--17 to 22 inches; light yellowish brown (2.5Y 6/4) loam, olive brown (2.5Y 4/4) moist; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine roots; violent effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--22 to 28 inches; light gray (2.5Y 7/2) clay loam, light yellowish brown (2.5Y 6/4) moist; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; few fine and medium irregularly shaped masses of carbonates; violent effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--28 to 34 inches; pale yellow (2.5Y 8/2) gravelly sandy clay loam, pale yellow (2.5Y 7/4) moist; single grain; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots; about 15 percent gravel; few fine irregularly shaped masses of carbonates on undersides of pebbles; violent effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--34 to 60 inches; light yellowish brown (2.5Y 6/4) very gravelly coarse sandy loam, olive brown (2.5Y 4/4) moist; single grain; loose, nonsticky and nonplastic; few very fine roots; about 40 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LITTLENAN.json b/inst/extdata/OSD/L/LITTLENAN.json index 8cc1b32339..0e3b05b806 100644 --- a/inst/extdata/OSD/L/LITTLENAN.json +++ b/inst/extdata/OSD/L/LITTLENAN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--3 to 14 inches; light brown (7.5YR 6/4) silty clay loam, brown (7.5YR 5/4) moist; strong coarse prismatic structure parting to strong medium subangular blocky; hard, very firm, moderately sticky and moderately plastic; common fine and very fine roots; few fine tubular pores; 10 percent gravel; moderately effervescent; carbonates are disseminated; strongly alkaline (pH 8.6); clear smooth boundary. (7 to 12 inches thick)" diff --git a/inst/extdata/OSD/L/LITTLESWAN.json b/inst/extdata/OSD/L/LITTLESWAN.json index 36dc2a7c0b..68e4a4cdaf 100644 --- a/inst/extdata/OSD/L/LITTLESWAN.json +++ b/inst/extdata/OSD/L/LITTLESWAN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--38 to 70 inches; olive gray (5Y 5/2) silt loam; massive; friable; few fine faint light gray (5Y 7/1) rounded masses of carbonate accumulation; common medium prominent strong brown (7.5YR 5/6) iron concentrations; few fine faint gray (5Y 6/1) iron depletions; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--70 to 80 inches; olive gray (5Y 5/2) silt loam; massive; friable; few fine distinct white (5Y 8/1) rounded masses of carbonate accumulation; common fine prominent dark yellowish brown (10YR 4/6) iron concentrations; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LITTLE_HORN.json b/inst/extdata/OSD/L/LITTLE_HORN.json index 87c8b12e50..4befea201e 100644 --- a/inst/extdata/OSD/L/LITTLE_HORN.json +++ b/inst/extdata/OSD/L/LITTLE_HORN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--12 to 18 inches; light brown (7.5YR 6/3) clay loam, brown (7.5YR 5/3) moist; moderate fine subangular blocky structure; slightly hard, friable, slightly sticky, moderately plastic; common very fine roots; many very fine and fine tubular pores; patches of clay films on surfaces of peds and on gravel in upper part of horizon; strong effervescence with lime disseminated and as lime flour coats on gravel; moderately alkaline (pH 8.3); clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Bk2--18 to 30 inches; very pale brown (10YR 7/3) clay loam, brown (10YR 5/3) moist; common medium prominent reddish brown mottles in lower part; massive; hard, friable; few roots; strong effervescence with accumulated lime disseminated; strongly alkaline (pH 8.6); clear irregular boundary. (Combined thickness of the Bk horizons is 10 to 20 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--30 to 35 inches; light brown (7.5YR 6/4) clay loam, brown (7.5YR 5/4) and reddish brown (2.5YR 4/4) moist; massive; hard, friable, slightly sticky, moderately plastic; strong effervescence; moderately alkaline (pH 8.4); abrupt wavy boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/L/LIVIA.json b/inst/extdata/OSD/L/LIVIA.json index 23f8ff9071..6ad3cb493e 100644 --- a/inst/extdata/OSD/L/LIVIA.json +++ b/inst/extdata/OSD/L/LIVIA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slighltly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkn1--114 to 140 cm (45 to 55 in); light olive brown (2.5Y 5/4) silty clay loam, light yellowish brown (2.5Y 6/4) dry; moderate medium subangular blocky structure; very hard, very firm; few fine and medium roots; few fine and medium pores; few fine dark concretions; few pitted concretions of calcium carbonate 1 to 5 mm in diameter; common gray (10YR 5/1) many medium and coarse prominent gray (10YR 5/1) vertically orientated iron depletionss; iron stains around former root channels; moderately sodic; moderately saline; slighltly effervescent; slightly alkaline; gradual smooth boundary. (25 to 46 cm [10 to 18 in] thick)" diff --git a/inst/extdata/OSD/L/LIVINGSTON.json b/inst/extdata/OSD/L/LIVINGSTON.json index b71452ad1a..3344eba4cc 100644 --- a/inst/extdata/OSD/L/LIVINGSTON.json +++ b/inst/extdata/OSD/L/LIVINGSTON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg -- 46 to 62 inches; dark gray (10YR 4/1) clay; moderate fine angular blocky structure and subangular blocky structure; very plastic, very sticky; few manganese patches; gray (10YR 6/1) segregated lime (5 to 15 mm. in diameter) and streaks of lime, slight effervescence; common medium prominent dark yellowish brown (10YR 4/4) masses of iron accumulation; slightly alkaline." diff --git a/inst/extdata/OSD/L/LIVONA.json b/inst/extdata/OSD/L/LIVONA.json index a6205cdcfc..5dbdd57d54 100644 --- a/inst/extdata/OSD/L/LIVONA.json +++ b/inst/extdata/OSD/L/LIVONA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk1--24 to 40 inches; light gray (2.5Y 7/2) clay loam, light yellowish brown (2.5Y 6/4) moist; weak coarse prismatic structure parting to moderate medium and fine subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; common fine pores; many medium masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk2--40 to 52 inches; light yellowish brown (2.5Y 6/4) loam, olive brown (2.5Y 4/4) moist; few medium distinct yellowish brown (10YR 5/6) mottles; weak coarse and fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; few fine pores; 2 percent coarse fragments; common white carbonates in threads and masses; strong effervescence; moderately alkaline; clear wavy boundary. (Combined 2Bk horizons 6 to 36 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--52 to 60 inches; pale yellow (2.5Y 7/4) loam, light olive brown (2.5Y 5/4) moist; few very fine distinct yellowish brown (10YR 5/6) mottles; massive; friable; 2 percent coarse fragments; few carbonates in masses and threads; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LIVONIA.json b/inst/extdata/OSD/L/LIVONIA.json index fd4b16bc15..064f9737e5 100644 --- a/inst/extdata/OSD/L/LIVONIA.json +++ b/inst/extdata/OSD/L/LIVONIA.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Cg1--124 to 152 cm; 65 percent grayish brown (2.5Y 5/2) and 35 percent gray (5Y 5/1) stratified silt loam to silty clay loam; moderate medium plates of geogenic origin; firm; many medium prominent light olive brown (2.5Y 5/6) masses of oxidized iron in matrix; slight effervescence; slightly alkaline, (pH 7.8); clear wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--152 to 203 cm (59.8 to 79.9 inches); dark gray (5Y 4/1) and gray (2.5Y 5/1) silt loam; massive; firm; strong effervescence; moderately alkaline, (pH 8.0)." diff --git a/inst/extdata/OSD/L/LOBURN.json b/inst/extdata/OSD/L/LOBURN.json index f609602d6b..7c068aacb1 100644 --- a/inst/extdata/OSD/L/LOBURN.json +++ b/inst/extdata/OSD/L/LOBURN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz1--16 to 24 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to weak medium and fine blocky; hard, firm, sticky and plastic; few fine roots; shiny surfaces on faces of peds; few fine accumulations of gypsum and other salts; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz2--24 to 36 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure; hard, firm, sticky and plastic; few fine accumulations of gypsum and other salts; few fine accumulations of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bkz horizons 8 to 25 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; light brownish gray (2.5Y 6/2) sandy clay loam, grayish brown (2.5Y 5/2) moist; massive; slightly hard, friable, sticky and plastic; few fine accumulations of gypsum and other salts; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LODESTONE.json b/inst/extdata/OSD/L/LODESTONE.json index 8357e475da..818a8bddf5 100644 --- a/inst/extdata/OSD/L/LODESTONE.json +++ b/inst/extdata/OSD/L/LODESTONE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss--8 to 24 inches, (20 to 60 cm); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; strong medium subangular blocky and strong coarse subangular blocky structure; very hard, very firm, , very sticky, very plastic; common very fine roots; common very fine low continuity tubular pores; few distinct pressure faces and slickensides; 10 percent dark yellowish brown (10YR 4/6), dry, and dark yellowish brown (10YR 4/6), moist; slight effervescence, by HCl, 1 normal; slightly alkaline, pH 7.6 by Phenol red; clear wavy boundary. (0 to 30 inches thick, 0 to 76 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss--24 to 30 inches, (60 to 75 cm); very dark gray (10YR 3/1) clay, very dark brown (10YR 2/2) moist; dark yellowish brown (10YR 4/4) and 45 percent yellowish brown (10YR 5/6) mottles; strong very coarse prismatic and strong coarse prismatic structure; very hard, very firm, moderately sticky, moderately plastic; common very fine roots; common very fine low continuity tubular pores; few distinct pressure faces and slickensides; strong effervescence, by HCl, 1 normal; CaC03 equivalent is 29 percent; moderately alkaline, pH 8.2 by Phenol red; clear wavy boundary. (5 to 30 inches thick, 13 to 76 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--30 to 31 inches, (75 to 76 cm); moderately cemented limestone bedrock; violent effervescence, by HCl, 1 normal." diff --git a/inst/extdata/OSD/L/LOHLER.json b/inst/extdata/OSD/L/LOHLER.json index 6c5a079ef7..cc0480bbfb 100644 --- a/inst/extdata/OSD/L/LOHLER.json +++ b/inst/extdata/OSD/L/LOHLER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse and medium subangular blocky structure parting to moderate fine granular; hard, firm, sticky and plastic; many fine roots; common fine pores; slight effervescence; slightly alkaline; abrupt smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--8 to 60 inches; light brownish gray (2.5Y 6/2) stratified silty clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm, sticky and plastic; common fine roots 8 to 30 inches, few fine 30 to 60 inches; common fine pores; some layers appear platy, but strong very fine angular blocky in other layers; 1/8 to 1/2 inch thick layers of light gray (2.5Y 7/2) silt below depths of 40 inches; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LOHMILLER.json b/inst/extdata/OSD/L/LOHMILLER.json index 7184187742..aec074c40d 100644 --- a/inst/extdata/OSD/L/LOHMILLER.json +++ b/inst/extdata/OSD/L/LOHMILLER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--8 to 60 inches; grayish brown (2.5Y 5/2) clay loam, stratified with layers of loam, fine sandy loam, and silty clay loam; dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm; thin bedding planes evident; common very fine roots; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LOHNES.json b/inst/extdata/OSD/L/LOHNES.json index 7b318ca307..71d09ee2d8 100644 --- a/inst/extdata/OSD/L/LOHNES.json +++ b/inst/extdata/OSD/L/LOHNES.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--47 to 60 inches; grayish brown (2.5Y 5/2) coarse sand, dark grayish brown (2.5Y 4/2) moist; common fine faint dark yellowish brown (10YR 4/4) redoximorphic concentrations in upper part, and common fine distinct brownish yellow (10YR 6/6) redoximorphic concentrations in lower part; single grain; loose, nonsticky and nonplastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LOMETA.json b/inst/extdata/OSD/L/LOMETA.json index bea3e96fa6..6a5c6c5c74 100644 --- a/inst/extdata/OSD/L/LOMETA.json +++ b/inst/extdata/OSD/L/LOMETA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--38 to 70 inches; strongly cemented conglomerate of round siliceous pebbles, cobbles and sand cemented with silica; slight effervescence." diff --git a/inst/extdata/OSD/L/LORAIN.json b/inst/extdata/OSD/L/LORAIN.json index 3b15589ae6..6f3ff37c52 100644 --- a/inst/extdata/OSD/L/LORAIN.json +++ b/inst/extdata/OSD/L/LORAIN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg -- 56 to 60 inches; dark gray (N 4/0) clay; massive; firm; few very thin layers of silty clay loam; weak effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/L/LORETTO.json b/inst/extdata/OSD/L/LORETTO.json index 8707865bd1..81a940068c 100644 --- a/inst/extdata/OSD/L/LORETTO.json +++ b/inst/extdata/OSD/L/LORETTO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--50 to 80 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist, massive; slightly hard, very friable; mildly alkaline; strong effervescence on lime concretions." diff --git a/inst/extdata/OSD/L/LOVELOCK.json b/inst/extdata/OSD/L/LOVELOCK.json index 8046d214f8..0fdf707363 100644 --- a/inst/extdata/OSD/L/LOVELOCK.json +++ b/inst/extdata/OSD/L/LOVELOCK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 8 cm, gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; weak thick platy structure; slightly hard, friable, slightly sticky and slightly plastic; many fine and medium roots; common fine tubular pores; 10 percent medium prominent olive (5Y 4/4), moist, masses of oxidized iron; strong effervescence; strongly alkaline (pH 8.8); clear smooth boundary. (0 to 25 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A2--8 to 18 cm, gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; weak coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine to coarse roots; many very fine to medium tubular pores; 10 percent medium prominent olive (5Y 4/4), moist, masses of oxidized iron; strong effervescence; strongly alkaline (pH 8.8); abrupt smooth boundary. (8 to 25 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Ckgb--76 to 152 cm; brown (10YR 5/3) stratified silt loam to clay, brown (10YR 4/3), dry; massive; hard, friable, moderately sticky and moderately plastic; few very fine roots; few very fine tubular pores; black (5Y 2.5/1), moist, manganese masses; 1 percent fine mollusk shells and 25 percent medium carbonate masses; strong effervescence; strongly alkaline (pH 9.0)." diff --git a/inst/extdata/OSD/L/LOWE.json b/inst/extdata/OSD/L/LOWE.json index 3ce4118e52..1b29cbc8e2 100644 --- a/inst/extdata/OSD/L/LOWE.json +++ b/inst/extdata/OSD/L/LOWE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) loam, very dark gray (10YR 3/1) dry; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; strong effervescence; 5 percent calcium carbonate equivalent; moderately alkaline; abrupt smooth boundary. (7 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--8 to 15 inches; gray (10YR 5/1) and very dark gray (10YR 3/1) clay loam, gray (10YR 6/1) and dark gray (10YR 4/1) dry; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; about 20 percent worm casts; many fine accumulations of carbonate; violent effervescence; 15 percent calcium carbonate equivalent; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkg1--15 to 28 inches; gray (5Y 5/1) loam, light gray (5Y 7/2) dry; few fine distinct black (5Y 2/1) and olive brown (2.5Y 4/3) mottles; weak medium and coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; about 5 percent very dark gray (5Y 3/1) worm casts; violent effervescence; 26 percent calcium carbonate equivalent; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkg2--28 to 32 inches; dark gray (5Y 4/1) loam, gray (5Y 5/1) dry; few fine distinct black (5Y 2/1) mottles; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; strong effervescence; 23 percent calcium carbonate equivalent; moderately alkaline; gradual smooth boundary. (Combined Bk horizon is 10 to 30 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Akb--32 to 42 inches; very dark gray (5Y 3/1) sandy loam, dark gray (5Y 4/1) dry; weak coarse subangular blocky structure; soft, very friable; common fine accumulations of carbonate; strong effervescence; 8 percent calcium carbonate equivalent; slightly alkaline; gradual smooth boundary. (0 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--42 to 56 inches; olive gray (5Y 5/2) stratified sandy loam with a few strata of loamy sand, light olive gray (5Y 6/2) dry; massive; soft, very friable; common fine coats of carbonate; strong effervescence; 13 percent calcium carbonate equivalent; slightly alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--56 to 60 inches; olive gray (5Y 4/2) stratified loam and sandy loam, gray (5Y 5/1) dry; few fine prominent light olive brown (2.5Y 5/6) and distinct black (5Y 2/1) mottles; massive, hard, friable, slightly sticky and slightly plastic; many fine and medium coats of carbonate; strong effervescence; 15 percent calcium carbonate equivalent; slightly alkaline." diff --git a/inst/extdata/OSD/L/LOWRY.json b/inst/extdata/OSD/L/LOWRY.json index d41cdf0eed..469df4a752 100644 --- a/inst/extdata/OSD/L/LOWRY.json +++ b/inst/extdata/OSD/L/LOWRY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--14 to 21 inches; grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, very friable; few fine accumulations of carbonate; slight effervescence; moderately alkaline; clear wavy boundary. (Combined Bw horizon is 6 to 20 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--21 to 34 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, very friable; common fine and few coarse accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--34 to 51 inches; light brownish gray (10YR 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure; slightly hard, very friable; many medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizon is 14 to 30 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--51 to 60 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, very friable; a few fine striations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LOX.json b/inst/extdata/OSD/L/LOX.json index 57009c855e..7d7a8e0607 100644 --- a/inst/extdata/OSD/L/LOX.json +++ b/inst/extdata/OSD/L/LOX.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cn3--64 to 152 cm; light brownish gray (10YR 6/2) very gravelly sandy loam, grayish brown (10YR 5/2) moist; massive; slightly hard, very friable, nonsticky and nonplastic; many very fine interstitial pores; 45 percent gravel; slightly effervescent to strongly effervescent; very strongly alkaline (pH 9.6+)." diff --git a/inst/extdata/OSD/L/LUALUALEI.json b/inst/extdata/OSD/L/LUALUALEI.json index a41d6bed35..dc82d611f1 100644 --- a/inst/extdata/OSD/L/LUALUALEI.json +++ b/inst/extdata/OSD/L/LUALUALEI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.1, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 1 inch; very dark grayish brown (10YR 3/2) clay, very dark gray (10YR 3/1) moist; strong fine and very fine granular structure; very hard, firm, very sticky and very plastic; many fine roots few light-colored sand grains; vertical cracks up to 2 1/2 inches wide; strong effervescence with hydrogen peroxide; neutral (pH 7.1); abrupt smooth boundary. (1/2 to 1 1/2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--1 to 10 inches; very dark grayish brown (10YR 3/2) clay, very dark gray (10YR 3/1) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm, very sticky and very plastic; many fine roots; many fine tubular pores; some organic litter within the cracks; strong effervescence with hydrogen peroxide; neutral (pH 7.2); gradual smooth boundary. (8 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ACss--10 to 22 inches; very dark grayish brown (10YR 3/2) moist and dry clay; moderate coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm, very sticky and very plastic; many fine roots; many fine tubular pores; common slickensides; few black specks; few grains of coral sand; strong effervescence with hydrogen peroxide; neutral (pH 7.2); clear smooth boundary. (10 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--22 to 30 inches; very dark grayish brown (10YR 3/2) moist and dry clay; moderate medium and coarse subangular blocky structure; many weakly grooved slickensides; hard, firm, very sticky and very plastic; common fine and medium roots, mainly matted between cleavage planes; few fine and very fine tubular pores; common black stains in pores and in dendritic pattern on faces of peds; few light-colored sand grains; common shiny specks; strong effervescence with hydrogen peroxide; neutral (pH 6.8); gradual smooth boundary. (7 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 5.6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Cly--30 to 49 inches; very dark grayish brown (10YR 3/2) moist and dry clay; strong medium and coarse subangular blocky structure; many deeply grooved slickensides; hard, firm, very sticky and very plastic; few fine roots matted between faces of peds; few fine tubular pores; many fine and medium gypsum crystals; common black stains in pores and on peds; common shiny specks; few light-colored sand grains; strong effervescence with hydrogen peroxide; moderately acid (pH 5.6); abrupt smooth boundary. (17 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 5.8, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2y--49 to 60 inches; very dark grayish brown (10YR 3/2) moist and dry clay; strong coarse subangular blocky structure; many deeply grooved slickensides; extremely hard, very firm, very sticky and very plastic; few fine roots between peds; few fine tubular pores; common medium and coarse gypsum crystals; few shiny specks; strong effervescence with hydrogen peroxide; moderately acid (pH 5.8)." diff --git a/inst/extdata/OSD/L/LUANA.json b/inst/extdata/OSD/L/LUANA.json index b4882189f8..99892dc888 100644 --- a/inst/extdata/OSD/L/LUANA.json +++ b/inst/extdata/OSD/L/LUANA.json @@ -204,7 +204,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC--27 to 60 inches; yellow (10YR 7/6) channery fine sandy loam; massive; friable; few roots; soft limestone fragments comprise about 25 percent by volume; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LUBBOCK.json b/inst/extdata/OSD/L/LUBBOCK.json index 5c4153fd18..04c51ffeab 100644 --- a/inst/extdata/OSD/L/LUBBOCK.json +++ b/inst/extdata/OSD/L/LUBBOCK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--61 to 107 centimeters (24 to 42 inches); grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; hard, friable; few fine roots; common accumulations of lime in fine soft rounded masses; slight effervescence; moderately alkaline; gradual smooth boundary. (30 to 61 centimeters (12 to 24 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--107 to 130 centimeters (42 to 51 inches); light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; weak medium granular structure to massive; hard, friable; common accumulations of lime in fine soft rounded masses; slight effervescence; moderately alkaline; clear smooth boundary. (15 to 41 centimeters (6 to 16 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ab--130 to 200 centimeters (51 to 79 inches); gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; weak medium granular structure to massive; hard, friable; few soft masses of lime; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LUDDEN.json b/inst/extdata/OSD/L/LUDDEN.json index 4cca159d72..893703cba4 100644 --- a/inst/extdata/OSD/L/LUDDEN.json +++ b/inst/extdata/OSD/L/LUDDEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; black (10YR 2/1) clay, dark gray (N 4/0) dry; moderate medium subangular blocky structure parting to moderate very fine angular blocky; extremely hard, firm, sticky and very plastic; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--5 to 14 inches; black (10YR 2/1) clay, dark gray (N 4/0) dry; moderate medium angular blocky structure; extremely hard, firm, sticky and very plastic; slight effervescence; slightly alkaline; gradual smooth boundary. (Combined A horizons thickness 5 to 20 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--14 to 30 inches; black (10YR 2/1) clay, dark gray (N 4/0) dry; moderate medium angular blocky structure; extremely hard, firm, sticky and very plastic; common gypsum crystals in the lower part; common medium masses of carbonate; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cg1--30 to 46 inches; dark gray (5Y 4/1) clay, dark gray (N 4/0) dry; massive with varves; extremely hard, firm, sticky and very plastic; many medium masses of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--46 to 60 inches; very dark gray (5Y 3/1) clay, gray (5Y 5/1) dry; massive with varves; extremely hard, firm, sticky and very plastic; common snail shells; common coarse masses of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/L/LUNDY.json b/inst/extdata/OSD/L/LUNDY.json index dabf5896f5..0438317597 100644 --- a/inst/extdata/OSD/L/LUNDY.json +++ b/inst/extdata/OSD/L/LUNDY.json @@ -89,7 +89,7 @@ "cf_class": "channery", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; brown (10YR 4/3) channery silt loam, dark brown (10YR 3/3) moist; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and few fine roots; 25 percent limestone channers 1 to 6 inches long, mainly surface mantle; violent effervescence; secondary calcium carbonates are on limestone fragments, slightly alkaline (pH 7.4); clear smooth boundary. (3 to 11 inches thick)" diff --git a/inst/extdata/OSD/L/LUTE.json b/inst/extdata/OSD/L/LUTE.json index 1df8a6bfb5..afe535d518 100644 --- a/inst/extdata/OSD/L/LUTE.json +++ b/inst/extdata/OSD/L/LUTE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btknz1--3 to 6 inches; very dark grayish brown (10YR 3/2) sandy clay loam, grayish brown (10YR 5/2) dry; moderate coarse columnar structure parting to weak medium blocky; extremely hard, firm, sticky and plastic; gray (10YR 6/1) dry coats on tops of columns; few faint clay films on ped faces; few fine and medium accumulations of carbonate; few fine accumulations of salts; strong effervescence; very strongly alkaline; clear smooth boundary. (2 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btknz2--6 to 10 inches; brown (10YR 5/3) sandy clay loam, light brownish gray (10YR 6/2) dry; common medium distinct dark grayish brown (10YR 4/2) and dark yellowish brown (10YR 4/4) mottles; weak coarse blocky structure parting to moderate medium blocky; very hard, firm; sticky and plastic; few faint clay films on ped faces; few to common fine accumulations of carbonate; common fine accumulations of salts; strong effervescence; very strongly alkaline; gradual smooth boundary. (3 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BC--10 to 18 inches; brown (10YR 5/3) fine sandy loam, pale brown (10YR 6/3) dry; common fine faint brown (10YR 4/3) redoximorphic concentrations; weak coarse blocky structure; hard, friable; few fine accumulations of carbonate; strong effervescence; very strongly alkaline; gradual smooth boundary. (0 to 9 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--18 to 25 inches; grayish brown (10YR 5/2) very fine sandy loam, stratified with thin lenses of silt and clay, light gray (10YR 7/2) dry; common medium faint brown (10YR 5/3) redoximorphic concentrations; massive; hard, very friable; strong effervescence; very strongly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--25 to 43 inches; light brownish gray (10YR 6/2) and yellowish brown (10YR 5/4) loamy sand stratified with thin lenses of silt and clay, light gray (10YR 7/2) and pale brown (10YR 6/3) dry; massive; hard, very friable; common fine accumulations of carbonate; strong effervescence; very strongly alkaline; abrupt wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--43 to 60 inches; grayish brown (10YR 5/2) very fine sandy loam stratified with thin lenses of silt and clay, light gray (10YR 7/2) dry; massive; hard, very friable; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/L/LYNCH.json b/inst/extdata/OSD/L/LYNCH.json index 307d79f9aa..761d16734e 100644 --- a/inst/extdata/OSD/L/LYNCH.json +++ b/inst/extdata/OSD/L/LYNCH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 4 inches; dark grayish brown (10YR 4/2) silty clay, very dark grayish brown (10YR 4/2) moist; weak fine granular structure; slightly hard friable; many fine and medium roots; strong effervescence mildly alkaline; abrupt smooth boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--4 to 8 inches; grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; weak coarse subangular blocky structure parting to weak medium and fine subangular; hard, firm but crumbly; many very fine and few fine roots; strong effervescence mildly alkaline; abrupt wavy boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BA--8 to 14 inches; light olive brown (2.5Y 5/4) silty clay, olive brown (2.5Y 4/4) moist; weak coarse subangular blocky structure parting to moderate medium and fine angular blocky; hard, firm; few fine and medium roots; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw--14 to 28 inches; light yellowish brown to light olive brown (2.5Y 5/4) clay; olive brown (2.5Y 4/4) moist; weak coarse prismatic structure parting to moderate fine angular blocky; very hard, very firm; few fine roots; strong effervescence; moderately alkaline; smooth boundary. (6 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--28 to 33 inches; light yellowish brown (2.5Y 6/4) clay; light olive brown (2.5Y 5/4) moist; massive; hard, firm; few very fine roots moving between parallel shale plates; many fine shale fragments; common lime and gypsum crystals interspersed with clay; strong effervescence mildly alkaline; gradual smooth boundary. (3 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--33 to 60 inches; pale yellow (2.5Y 7/4) bedded shale; light olive brown (2.5Y 5/4) moist; massive breaking to moderate medium and coarse platy fragments; hard, firm; few very fine roots between parallel shale plates; many lime and gypsum and lime crystals in seams; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/L/LYNNDYL.json b/inst/extdata/OSD/L/LYNNDYL.json index 41d8f246cc..b39310cb3e 100644 --- a/inst/extdata/OSD/L/LYNNDYL.json +++ b/inst/extdata/OSD/L/LYNNDYL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 5 inches; light gray (10YR 7/2) loamy sand, grayish brown (10YR 5/2) moist; weak thin platy structure; soft, very friable; many very fine and fine roots; many very fine vesicular pores; 25 percent gravel on the surface, 5 percent gravel in the horizon; moderately effervescent; carbonates are disseminated; moderately alkaline (pH 8.2); clear smooth boundary. (3 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--14 to 36 inches; light gray (10YR 7/2) loamy sand, brown (10YR 5/3) moist; massive; loose; common very fine roots; many very fine irregular pores; 5 percent gravel; moderately effervescent; carbonates are disseminated; very strongly alkaline (pH 9.4) abrupt smooth boundary. (10 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C--36 to 40 inches; very pale brown (10YR 8/2) sandy loam, pale brown (10YR 6/3) moist; massive; soft, friable, slightly sticky and slightly plastic; moderately effervescent, carbonates are disseminated; very strongly alkaline (pH 9.6); abrupt smooth boundary. (0 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Cy--40 to 60 inches; light gray (10YR 7/1) loamy sand, grayish brown (10YR 5/2) moist; single grain; loose; few very fine roots; common very fine interstitial pores; common fine filaments of gypsum; moderately effervescent; carbonates are disseminated; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/M/MACE.json b/inst/extdata/OSD/M/MACE.json index fd04d026e2..d8b4a43f5d 100644 --- a/inst/extdata/OSD/M/MACE.json +++ b/inst/extdata/OSD/M/MACE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BCkb--46 to 58 centimeters (18 to 23 inches); light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; slightly hard, very friable; many worm casts and channels 3 to 10 millimeters in diameter; common films and threads of calcium carbonate; violent effervescence; moderately alkaline; abrupt wavy boundary. (10 to 20 centimeters (4 to 8 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--58 to 76 centimeters (23 to 30 inches); light gray (10YR 7/2) silt loam, grayish brown (10YR 5/2) moist; massive; slightly hard, very friable; many soft white masses of calcium carbonate; violent effervescence; moderately alkaline; abrupt wavy boundary. (10 to 20 centimeters (4 to 8 inches) thick)" diff --git a/inst/extdata/OSD/M/MACHUELO.json b/inst/extdata/OSD/M/MACHUELO.json index 886eb2cada..88b8af1f3b 100644 --- a/inst/extdata/OSD/M/MACHUELO.json +++ b/inst/extdata/OSD/M/MACHUELO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; dark grayish brown (2.5YR 4/2) clay with few fine distinct yellowish brown, strong brown and gray mottles; moderate fine and medium granular structure; firm, slightly sticky, plastic; many fine roots; common fine volcanic fragments; strong effervescence, abrupt smooth boundary. (6 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1g--8 to 16 inches; dark gray (10YR 4/1) clay with few fine distinct greenish gray, few fine distinct light gray and few fine distinct yellowish brown mottles; weak medium and coarse subangular blocky structure to massive; firm, slightly sticky, plastic; many fine roots, common fine volcanic fragments; common fine limestone fragments; few shell fragments; strong effervescence; abrupt smooth boundary. (8 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2g--16 to 21 inches; dark gray (5Y 4/1) clay with common fine distinct olive yellow, few fine faint gray, and few fine distinct dark grayish brown mottles; weak medium subangular blocky structure to massive; firm, slightly sticky, plastic; common fine roots; common fine volcanic fragments; few fine limestone fragments; strong effervescence; clear smooth boundary. (4 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C3g--21 to 29 inches; greenish gray (5GY 5/1) clay with many fine prominent yellowish brown, common fine prominent olive yellow, few fine distinct bluish gray, few fine distinct dark bluish gray mottles; massive; firm, slightly sticky, plastic; few fine roots; few fine volcanic fragments; few fine limestone fragments; few fine shell fragments; slight effervescence; clear wavy boundary. (6 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C4g--29 to 37 inches; light olive brown (2.5YR 5/6), greenish gray (5BG 5/1), and dark bluish gray (5BG 4/1) rubbed color gray (5Y 5/1) clay; massive; firm, sticky, plastic; common fine volcanic fragments; few fine limestone fragments; few shell fragments; water table at 32 inches (82 cm); strong effervescence; clear wavy boundary. (6 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5g--37 to 60 inches; olive (5Y 5/4), dark greenish gray (5BG 4/1), gray (5Y 5/1) and light olive brown (2.5Y 5/4), rubbed color dark greenish gray (5GY 4/1), clay, massive; firm, sticky, plastic; few fine volcanic fragments; few fine limestone fragments; few lime splotches; strong effervescence." diff --git a/inst/extdata/OSD/M/MACIVER.json b/inst/extdata/OSD/M/MACIVER.json index 88afbb115e..bcd51475aa 100644 --- a/inst/extdata/OSD/M/MACIVER.json +++ b/inst/extdata/OSD/M/MACIVER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--23 to 30 inches; light yellowish brown (2.5Y 6/4) very gravely clay loam, light olive brown (2.5Y 5/4) moist; weak fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; many very fine and fine roots; few very fine and fine tubular pores; 35 percent gravel and 10 percent cobbles; many medium segregated masses of calcium carbonate; violent effervescent; moderately alkaline (pH 8.4); gradual wavy boundary." diff --git a/inst/extdata/OSD/M/MACKEN.json b/inst/extdata/OSD/M/MACKEN.json index 3d83099015..55ae36e210 100644 --- a/inst/extdata/OSD/M/MACKEN.json +++ b/inst/extdata/OSD/M/MACKEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg1--26 to 39 inches; olive gray (5Y 4/2) silty clay, gray (5Y 5/1) dry; few fine distinct strong brown (7.5YR 5/8) redox concentrations; weak medium and fine subangular blocky structure; very hard, firm, sticky and plastic; few fine accumulations and striations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg2--39 to 60 inches; light olive gray (5Y 6/2) silty clay loam, light gray (5Y 7/2) dry; massive; hard, friable, slightly sticky and slightly plastic; common medium and fine accumulations of carbonate; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MACKINAC.json b/inst/extdata/OSD/M/MACKINAC.json index 6d8d68abc3..8d934a5d5d 100644 --- a/inst/extdata/OSD/M/MACKINAC.json +++ b/inst/extdata/OSD/M/MACKINAC.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--30 to 60 inches; pinkish gray (7.5YR 6/2) loam; common fine distinct pink (5YR 7/3), gray (10YR 6/10), and reddish yellow (7.5YR 6/6) mottles; massive; friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MADELIA.json b/inst/extdata/OSD/M/MADELIA.json index 99d7966dfc..8399122837 100644 --- a/inst/extdata/OSD/M/MADELIA.json +++ b/inst/extdata/OSD/M/MADELIA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "NA", "topography": "NA", "narrative": "BCg2--94 to 152 cm (37 to 60 inches); olive gray (5Y 5/2) silt loam; many fine prominent yellowish brown (10YR 5/8) mottles; weak medium platy structure; friable; slightly alkaline; strong effervescent. . [Combined thickness of BCg horizon is 0 to 97 cm (0 to 38 inches)]" diff --git a/inst/extdata/OSD/M/MADRAS.json b/inst/extdata/OSD/M/MADRAS.json index 111224f68c..a680cd042e 100644 --- a/inst/extdata/OSD/M/MADRAS.json +++ b/inst/extdata/OSD/M/MADRAS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Crk--23 to 27 inches; consolidated gravel, cobble, and sand sediments of the Deschutes Formation, moderately effervescent with carbonates along fractures. (2 to 6 inches thick) (See Remarks)" diff --git a/inst/extdata/OSD/M/MAGNUS.json b/inst/extdata/OSD/M/MAGNUS.json index ee3473786c..9ba74cab91 100644 --- a/inst/extdata/OSD/M/MAGNUS.json +++ b/inst/extdata/OSD/M/MAGNUS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; grayish brown (2.5Y 5/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; strong fine granular structure; hard, friable, few large and common fine roots; many fine pores; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--7 to 15 inches; dark grayish brown (2.5Y 4/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; weak coarse prismatic and moderate and strong medium and very fine angular blocky structure; very hard, firm; common roots; many fine pores; black (10YR 2/1) moist thin layers; slight effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A2--15 to 26 inches; dark gray (10YR 4/1) silty clay, very dark gray (10YR 3/1) crushed, black (10YR 2/1) moist; moderate coarse prismatic and strong medium and fine angular blocky structure; very hard, firm; common fine pores; shiny pressure faces on surface of peds; few small carbonate nodules; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined A horizons 16 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--26 to 36 inches; grayish brown (2.5Y 5/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; weak coarse prismatic and strong medium angular blocky structure; very hard, firm; shiny pressure faces on vertical faces of prisms; common fine carbonate nodules; slight effervescence; moderately alkaline; gradual wavy boundary. (8 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC--36 to 54 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; moderate medium and fine angular blocky structure; very hard, firm; a few vertical cracks with pressure faces; common fine carbonate nodules, slight effervescence; moderately alkaline; gradual boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--54 to 60 inches; light brownish gray (2.5Y 6/2) and light yellowish brown (2.5Y 6/4) stratified silty clay, silt loam and silty clay loam, olive brown (2.5Y 4/4) and dark grayish brown (2.5Y 4/2) moist; massive; firm; few medium carbonate nodules; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MAHANA.json b/inst/extdata/OSD/M/MAHANA.json index 67fa739606..2931880ff9 100644 --- a/inst/extdata/OSD/M/MAHANA.json +++ b/inst/extdata/OSD/M/MAHANA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 7 inches; dark yellowish brown (10YR 3/4) silty clay loam, dark reddish brown (2.5YR 3/4) dry; strong fine and very fine subangular blocky structure; very hard, friable, sticky and plastic many roots moderate effervescence with hydrogen peroxide; moderately acid (pH 6.0); clear wavy boundary. (6 to 10 inches thick)" diff --git a/inst/extdata/OSD/M/MAHONEY.json b/inst/extdata/OSD/M/MAHONEY.json index 793541dcdf..5da5783bb8 100644 --- a/inst/extdata/OSD/M/MAHONEY.json +++ b/inst/extdata/OSD/M/MAHONEY.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--13 to 21 inches; grayish brown (2.5Y 5/2) silty clay loam, light gray (2.5Y 7/2) dry; weak medium prismatic structure parting to moderate fine and medium subangular blocky structure; slightly hard, very friable; many medium roots and many very fine roots; many very fine pores; 20 percent calcium carbonate equivalent; violent effervescence; strongly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--21 to 31 inches; light olive brown (2.5Y 5/3) silt loam, pale yellow (2.5Y 7/3) dry; many fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations and common fine distinct gray (10YR 6/1) redoximorphic depletions; weak medium prismatic structure parting to moderate fine and medium subangular blocky structure; slightly hard, very friable; common very fine roots; many very fine pores; 15 percent calcium carbonate equivalent; violent effervescence; strongly alkaline; clear wavy boundary. (Combined thickness of the Bk horizons is 12 to 30 inches thick)" diff --git a/inst/extdata/OSD/M/MAITLAND.json b/inst/extdata/OSD/M/MAITLAND.json index 9dc963a974..10dd23a082 100644 --- a/inst/extdata/OSD/M/MAITLAND.json +++ b/inst/extdata/OSD/M/MAITLAND.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck2--135 to 152 cm; pale brown (10YR 6/3) and light yellowish brown (10YR 6/4) loam, brown (10YR 5/3) and dark yellowish brown (10YR 4/4) moist; massive; hard, very friable, nonsticky and nonplastic; strong effervescence; many coatings of carbonate on coarse fragments;common fine and medium soft masses; slightly alkaline." diff --git a/inst/extdata/OSD/M/MAKALAPA.json b/inst/extdata/OSD/M/MAKALAPA.json index 6b44d8d304..5a560a028e 100644 --- a/inst/extdata/OSD/M/MAKALAPA.json +++ b/inst/extdata/OSD/M/MAKALAPA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1--0 to 2 inches; very dark grayish brown (10YR 3/2) clay, very dark gray (10YR 3/1) moist; strong very fine and fine granular structure; very hard, firm, very sticky and very plastic; many fine and very fine roots; few fine fragments of coral; strong effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; slightly alkaline (pH 7.4); abrupt smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--2 to 8 inches; very dark grayish brown (10YR 3/2) dry and moist clay; moderate fine and very fine granular structure and moderate coarse subangular blocky structure; hard, firm, very sticky and very plastic; many fine roots; common fine and very fine interstitial and tubular pores; few fine fragments of coral; strong effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; slightly alkaline (pH 7.7); abrupt smooth boundary. (6 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--8 to 20 inches; very dark grayish brown (10YR 3/2) dry and moist clay; 4 by 18 inches parallelepiped structural units part to weak medium subangular blocky structure; common to many slickensides; very hard, firm, very sticky and very plastic; many fine and medium roots; few to common fine and very fine tubular and interstitial pores; common fine sand grains; few angular fragments of rock; slight effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; slightly alkaline (pH 7.8); gradual smooth boundary. (10 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ckss1--20 to 30 inches; very dark grayish brown (10YR 3/2) dry and moist clay; parallelepiped structural units 1 to 2 inches thick and 2 to 8 inches long; many distinct slickensides; very hard, very firm, very sticky and very plastic, common fine roots, mainly matted on faces of peds, few within peds; few very fine tubular pores; few tuff fragments; slight effervescence with hydrogen peroxide; strong effervescence with hydrochloric acid; moderately alkaline (pH 7.9); clear wavy boundary. (8 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ckss2--30 to 38 inches; very dark grayish brown (10YR 3/2) dry and moist silty clay; moderate fine and medium blocky and subangular blocky structure; common distinct slickensides; slightly hard, firm, very sticky and very plastic; few fine roots; few fine tubular pores; many very pale brown (10YR 7/3) dry pebble-size tuff fragments; slight effervescence with hydrogen peroxide; strong effervescence with hydrochloric acid; moderately alkaline (pH 7.9); clear smooth boundary. (4 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck--38 inches; highly decomposed light gray (10YR 7/2) and dark grayish brown (10YR 4/2) volcanic tuff; strong effervescence with hydrochloric acid." diff --git a/inst/extdata/OSD/M/MAKAWAO.json b/inst/extdata/OSD/M/MAKAWAO.json index 242642f88e..763084c207 100644 --- a/inst/extdata/OSD/M/MAKAWAO.json +++ b/inst/extdata/OSD/M/MAKAWAO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 4 inches; dark reddish brown (5YR 3/3) silty clay, reddish brown (5YR 4/4) dry; strong very fine subangular blocky structure; hard, firm, sticky and plastic; many roots; many very fine pores; slight effervescence with hydrogen peroxide; strongly acid (pH 5.5); clear wavy boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap2--4 to 9 inches; dark reddish brown (5YR 3/3) silty clay, yellowish red (5YR 4/6) dry; strong very fine subangular blocky structure; hard, firm, sticky, plastic, and weakly smeary; many roots; common fine pores; slight effervescence with hydrogen peroxide; moderately acid (pH 6.0); abrupt wavy boundary. (3 to 7 inches thick)" diff --git a/inst/extdata/OSD/M/MAKAWELI.json b/inst/extdata/OSD/M/MAKAWELI.json index 08068fb4fe..36c623964a 100644 --- a/inst/extdata/OSD/M/MAKAWELI.json +++ b/inst/extdata/OSD/M/MAKAWELI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 18 centimeters (0 to 7 inches); dusky red (10R 3/2) silty clay loam, dark red (10R 3/6) dry; weak very fine, fine and medium granular structure; hard, friable, moderately sticky and moderately plastic; many very fine and fine roots; many very fine and fine irregular pores; many very fine black concretions; moderately magnetic; 2 percent charcoal from burning cane; violent effervescence with hydrogen peroxide; slightly acid (pH 6.1); clear smooth boundary. (15 to 20 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--18 to 31 centimeters (7 to 12 inches); dusky red (10R 3/3) silty clay loam, material of dusky red (10R 3/2) mixed by tillage, dusky red (10R 3/4) dry; weak medium and coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; many very fine roots; common very fine and fine tubular pores; many very fine black concretions, moderately magnetic; 2 percent charcoal; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear smooth boundary. (10 to 15 centimeters inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--31 to 64 centimeters (12 to 25 inches); dusky red (10R 3/4) silty loam, red (10R 4/6) dry; weak coarse prismatic structure; slightly hard, very friable, slightly sticky and moderately plastic; common very fine roots; many very fine and fine medium tubular pores; common very fine black concretions; moderately magnetic; black manganese dioxide staining along root channels; strong effervescence with hydrogen peroxide; neutral (pH 7.0); clear smooth boundary. (28 to 38 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--64 to 91 centimeters (25 to 36 inches); dusky red (10R 3/4) silty clay loam, dark red (10R 3/6) dry; weak coarse prismatic structure parting to weak fine, medium and coarse subangular blocky, with pockets of moderate very fine subangular blocky; slightly hard, friable, slightly sticky and moderately plastic; common very fine roots; many very fine and fine and common medium tubular pores; few very fine black concretions; patchy glazed surfaces on peds that appear like pressure surfaces; root channels are lined with black manganese dioxide staining; moderately magnetic; slight effervescence with hydrogen peroxide; neutral (pH 7.3); gradual wavy boundary. (23 to 33 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.1, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw3--91 to 152 centimeters (36 to 60 inches); dusky red (10R 3/3) silty clay loam, dark red (10R 3/6) dry; weak medium and fine subangular blocky structure with pockets of moderate medium subangular blocky; slightly hard, friable, slightly sticky and moderately plastic; few fine and medium roots that tend to be confined between faces of peds; many very fine and fine tubular pores; few very fine black manganese dioxide concretions; common very fine weathered mineral particles that tend to impart a gritty feel; few glazed coatings on surfaces of peds that appear to be pressure faces; 5 percent stones; slight effervescence with hydrogen peroxide; neutral (pH 7.1)." diff --git a/inst/extdata/OSD/M/MAKENA.json b/inst/extdata/OSD/M/MAKENA.json index 5fbfab7b7c..36c8fd6732 100644 --- a/inst/extdata/OSD/M/MAKENA.json +++ b/inst/extdata/OSD/M/MAKENA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2ca--34 to 44 inches; dark yellowish brown (10YR 3/4) silt loam, yellowish brown (10YR 5/4) dry; massive; soft, very friable; common fine and medium roots; few fine pores; some small cinders; 10 to 20 percent cobble size Aa lava fragments; strong effervescence with hydrochloric acid; moderately alkaline (pH 8.2); clear wavy boundary. (10 to 12 inches thick)" diff --git a/inst/extdata/OSD/M/MAKIKI.json b/inst/extdata/OSD/M/MAKIKI.json index 09abc2156c..834c88685e 100644 --- a/inst/extdata/OSD/M/MAKIKI.json +++ b/inst/extdata/OSD/M/MAKIKI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap1--0 to 10 inches; dark brown (7.5YR 3/2) clay loam, dark brown (7.5YR 4/2) dry; moderate very fine and fine granular structure; very hard, firm, very sticky and very plastic; many fine and medium roots; common very fine and fine interstitial pores; common fine highly weathered fragments of basalt; slight effervescence with hydrogen peroxide; strongly acid (pH 5.5); gradual smooth boundary. (8 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--10 to 20 inches; dark brown (7.5YR 3/2) clay loam, dark brown (7.5YR 4/4) dry; moderate coarse subangular blocky structure; hard, firm, very sticky and very plastic; many fine and medium roots; common very fine, fine and few coarse tubular pores; common fine highly weathered fragments of basalt and cinders; slight effervescence with hydrogen peroxide; strongly acid (pH 5.5); clear smooth boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/M/MAKOTI.json b/inst/extdata/OSD/M/MAKOTI.json index 3fe65b02e9..e8d5a17494 100644 --- a/inst/extdata/OSD/M/MAKOTI.json +++ b/inst/extdata/OSD/M/MAKOTI.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--19 to 26 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to weak very fine subangular blocky; slightly hard, friable, slightly sticky and nonplastic; few fine roots; common very fine and fine pores; violent effervescence; mildly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--26 to 34 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure parting to weak very fine subangular blocky; slightly hard, friable, slightly sticky and nonplastic; few fine roots; common very fine and fine pores; violent effervescence; mildly alkaline; gradual wavy boundary. (Combined Bk horizons 10 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--34 to 46 inches; olive yellow (2.5Y 6/6) stratified silt loam and very fine sandy loam, grayish brown (2.5Y 5/2) moist; many medium distinct gray (5Y 5/1) moist mottles; massive; slightly hard, friable, slightly sticky and nonplastic; few fine roots; common very fine and fine pores; fine rounded masses of carbonates; strong effervescence; mildly alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--46 to 60 inches; light brownish gray (2.5Y 6/2) stratified silty clay loam and very fine sandy loam, olive brown (2.5Y 4/4) moist; many medium distinct grayish brown (2.5Y 5/2) moist mottles; massive; slightly hard, firm, slightly sticky and slightly plastic; few very fine and fine pores; medium rounded masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MALA.json b/inst/extdata/OSD/M/MALA.json index 8683e4b2f1..1abacb5ea3 100644 --- a/inst/extdata/OSD/M/MALA.json +++ b/inst/extdata/OSD/M/MALA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--89 to 102 centimeters (35 to 40 inches); very dark gray (5YR 3/1) stratified silty clay; dark gray (5YR 4/1) dry; massive; hard, very friable, very sticky and very plastic; many very fine roots; few very fine irregular pores; stratified with few coral sand grains; very slight effervescence with hydrogen peroxide; slightly alkaline (pH 7.4); abrupt smooth boundary. (10 to 20 centimeters {4 to 8 inches} thick)" diff --git a/inst/extdata/OSD/M/MALTESE.json b/inst/extdata/OSD/M/MALTESE.json index 594c3df280..5c80785530 100644 --- a/inst/extdata/OSD/M/MALTESE.json +++ b/inst/extdata/OSD/M/MALTESE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btkn--16 to 20 inches; light yellowish brown (2.5Y 6/3) silty clay, olive brown (2.5Y 4/3) moist; moderate medium prismatic structure parting to moderate medium angular blocky; very hard, very firm, sticky and plastic; few very fine roots; common very fine tubular pores; common distinct clay films on faces of peds; common fine irregularly shaped masses of carbonates; violent effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkny--20 to 33 inches; light yellowish brown (2.5Y 6/3) silty clay loam, olive brown (2.5Y 4/3) moist; moderate medium prismatic structure parting to moderate medium angular blocky; very hard, very firm, sticky and plastic; few very fine roots; common very fine tubular pores; common distinct clay films on faces of peds; many fine and medium irregularly shaped nests of gypsum; few fine rounded masses of carbonates; strong effervescence; strongly alkaline; gradual wavy boundary. (Combined Btkn horizons 0 to 37 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCy--33 to 45 inches; light olive brown (2.5Y 5/3) silty clay loam, olive brown (2.5Y 4/3) moist; weak medium subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few very fine tubular pores; common fine irregularly shaped nests of gypsum; slight effervescence; strongly alkaline; gradual wavy boundary. (0 to 25 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--45 to 60 inches; light olive gray (5Y 6/2) silty clay loam, olive gray (5Y 4/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic ; few fine irregularly shaped nests of gypsum; slight effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/M/MAMALA.json b/inst/extdata/OSD/M/MAMALA.json index 37592f004a..5f340adb65 100644 --- a/inst/extdata/OSD/M/MAMALA.json +++ b/inst/extdata/OSD/M/MAMALA.json @@ -89,7 +89,7 @@ "cf_class": "cobbly", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 20 centimeters (0 to 8 inches); dark reddish brown (5YR 3/3) cobbly silty clay loam, dark reddish brown (5YR 3/4) dry; moderate fine and medium subangular blocky structure; hard, firm, sticky and plastic; compacted by recent cultivation; few fine, medium and coarse roots; few fine tubular pores; 5 percent gravel, 10 percent cobbles and 5 percent stones from coral fragments;; strong effervescence with hydrogen peroxide; neutral (pH 6.7); abrupt smooth boundary. (15 to 25 centimeters {6 to 10 inches} thick)" @@ -112,7 +112,7 @@ "cf_class": "cobbly", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "broken", "narrative": "Bw--20 to 48 centimeters (8 to 19 inches); dark reddish brown (2.5YR 3/4) cobbly silty clay loam, dark red (2.5YR 3/6) dry; weak coarse and medium subangular blocky structure; slightly hard, friable, slightly sticky and plastic; common fine and medium roots; common very fine, fine and medium tubular pores; common 1/16 to 1/4 inch worm casts and holes coated with organic stains; 15 percent gravel, 10 percent cobbles, and 5 percent stones from coral fragments; strong effervescence with hydrogen peroxide; slightly alkaline; (pH 7.5); abrupt broken boundary. (10 to 28 centimeters {4 to 11 inches} thick)" diff --git a/inst/extdata/OSD/M/MANAWA.json b/inst/extdata/OSD/M/MANAWA.json index bdf03d610c..6f5b24043d 100644 --- a/inst/extdata/OSD/M/MANAWA.json +++ b/inst/extdata/OSD/M/MANAWA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--76 to 152 cm (30 to 60 inches); reddish brown (5YR 4/4) silty clay; weak coarse subangular blocky structure; firm; few fine distinct reddish gray (5YR 5/2) iron depletions in the matrix; few dolomite gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MANDAN.json b/inst/extdata/OSD/M/MANDAN.json index 73506d7894..6215329907 100644 --- a/inst/extdata/OSD/M/MANDAN.json +++ b/inst/extdata/OSD/M/MANDAN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A2--13 to 20 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; hard, very friable, slightly sticky and slightly plastic; common roots; many fine pores; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined A horizons 12 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--20 to 29 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure parting to weak subangular blocky; hard, very friable, slightly sticky and slightly plastic; common fine roots; many fine pores; few masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (7 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk --29 to 38 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic and subangular blocky structure; hard, very friable, slightly sticky and slightly plastic; few fine roots; common very fine pores; common masses of carbonates; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BCk--38 to 47 inches; light brownish gray (2.5Y 6/2) silt loam, grayish brown (2.5Y 5/2) moist; massive; hard, very friable, slightly sticky and slightly plastic; few fine roots; few small pebbles with carbonate crusts on undersides are near base of horizon; common fine masses of carbonates; violent effervescence; strongly alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C2--56 to 60 inches; dark brown (10YR 3/3) fine sandy loam; violent effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/M/MANFRED.json b/inst/extdata/OSD/M/MANFRED.json index 3553a7580f..de5a18ed18 100644 --- a/inst/extdata/OSD/M/MANFRED.json +++ b/inst/extdata/OSD/M/MANFRED.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "A--0 to 10 inches; very dark gray (N 3/0) silty clay loam, black (5Y 2/1) moist; moderate medium and fine subangular blocky structure; very hard, firm, sticky and plastic; many roots; a layer of muck 1 inch in thickness covers the surface; slight effervescence; moderately alkaline; abrupt irregular boundary. (4 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Btg--10 to 13 inches; dark gray (5Y 4/1) silty clay loam, dark olive gray (5Y 3/2) moist; few fine distinct olive brown (2.5Y 4/4) mottles; strong fine angular blocky structure; very hard, firm, very sticky and very plastic; clay films on faces of peds; strong effervescence; moderately alkaline; clear irregular boundary. (3 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg--13 to 23 inches; light olive gray (5Y 6/2) sandy clay loam, olive gray (5Y 5/2) moist; many fine prominent yellowish brown (10YR 5/6) mottles; weak medium angular blocky structure parting to moderate fine granular; very hard, friable, sticky and plastic; few iron and manganese concretions; about 5 percent by volume fine gravel; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCg--23 to 30 inches; light olive gray (5Y 6/2) sandy clay loam, olive gray (5Y 5/2) moist; many fine prominent yellowish brown mottles (10YR 5/6); weak medium angular blocky structure parting to moderate fine granular; friable; strong effervescence; few iron and manganese concretions; about 5 percent by volume gravel; moderately alkaline; clear wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--30 to 48 inches; light gray (5Y 6/1) clay loam, olive gray (5Y 5/2) moist; many fine prominent yellowish brown (10YR 5/6) mottles; massive; very hard, firm, sticky and plastic; about 5 percent by volume fine gravel; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--48 to 60 inches; light yellowish brown (2.5Y 6/4) clay loam, olive brown (2.5Y 4/4) moist; common fine prominent gray (N 5/0) mottles; massive; very hard, firm, sticky and plastic, strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MANNING.json b/inst/extdata/OSD/M/MANNING.json index 48b6a38a6a..b8bf095709 100644 --- a/inst/extdata/OSD/M/MANNING.json +++ b/inst/extdata/OSD/M/MANNING.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--18 to 25 inches; light brownish gray (2.5Y 6/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, very friable, slightly sticky and nonplastic; few roots; common fine pores; about 10 percent gravel; violent effervescence; common fine masses of carbonates; moderately alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--25 to 40 inches; light yellowish brown (2.5Y 6/4) sand and gravel, olive brown (2.5Y 4/3) moist; single grain; loose; few fine roots; about 25 percent gravel coarser than 3/4 inch; few cobbles; thin coating of carbonates on undersides of some pebbles and cobbles; strong effervescence in upper part and slight effervescence in lower part; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--40 to 60 inches; light brownish gray (2.5Y 6/2) sand and strata of fine gravel, dark grayish brown (2.5Y 4/2) moist; single grain; loose; about 10 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MANTADOR.json b/inst/extdata/OSD/M/MANTADOR.json index 39f35a9bd8..261b4e7e9e 100644 --- a/inst/extdata/OSD/M/MANTADOR.json +++ b/inst/extdata/OSD/M/MANTADOR.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--8 to 30 centimeters; black (10YR 2/1) very fine sandy loam, very dark gray (10YR 3/1) dry; moderate medium subangular blocky structure; very friable; many very fine roots; slight effervescence in lower part in places; neutral; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--30 to 51 centimeters; very dark grayish brown (10YR 3/2) fine sandy loam, dark grayish brown (10YR 4/2) dry; common medium distinct dark brown (7.5YR 3/2) and common medium faint dark grayish brown (10YR 4/2) redoximorphic concentrations; weak coarse prismatic and weak medium subangular blocky structure; very friable; common very fine roots; krotovina up to 7 cm in diameter in places; slight effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--51 to 69 centimeters; dark brown (10YR 3/3) fine sandy loam, brown (10YR 5/3) dry; common medium distinct dark brown (7.5YR 3/2) and few fine distinct brown (7.5YR 5/2) redoximorphic concentrations; weak coarse angular blocky and weak medium subangular blocky structure; very friable; common very fine roots; very dark gray (7.5YR 3/1) masses of iron-manganese; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--69 to 86 centimeters; very dark grayish brown (10YR 3/2) fine sandy loam, grayish brown (10YR 5/2) dry; common coarse distinct dark brown (7.5YR 3/2) redoximorphic concentrations; weak coarse prismatic and weak medium subangular blocky structure; very friable; very friable; common medium rounded black (10YR 2/1) masses of iron-manganese; common grayish brown (10YR 5/2) masses of lime; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--86 to 100 centimeters; light yellowish brown (2.5Y 6/4) very fine sandy loam, pale yellow (2.5Y 8/4) dry; many prominent dark brown (7.5YR 3/4) redoximorphic concentrations; weak coarse prismatic and weak medium subangular blocky structure; very friable; very friable; common extremely coarse light yellowish brown (2.5Y 6/3) masses of lime on vertical faces of peds; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--100 to 150 centimeters; light olive brown (2.5Y 5/4) very fine sandy loam, pale yellow (2.5Y 7/4) dry; many fine and medium prominent dark brown (7.5YR 3/4) redoximorphic concentrations; massive; very friable; common fine and medium black (N 2/0) masses of iron-manganese; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--150 to 200 centimeters; gray (2.5Y 5/1) very fine sandy loam, light gray (2.5Y 7/1) dry; common coarse prominent strong brown (7.5YR 5/6) redoximorphic concentrations; massive; very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MANVEL.json b/inst/extdata/OSD/M/MANVEL.json index 950c0fd4ea..4c68d87323 100644 --- a/inst/extdata/OSD/M/MANVEL.json +++ b/inst/extdata/OSD/M/MANVEL.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--64 to 124 centimeters 25 to 49 inches; pale brown (10YR 6/3) silt loam, yellowish brown (10YR 5/4), moist; moderate fine prismatic structure; moderately hard, friable, slightly sticky and slightly plastic; few very fine roots; 8 percent medium distinct irregular carbonate masses in matrix; violent effervescence, 13 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); gradual wavy boundary. (48 to 76 cm (19 to 30 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--124 to 200 centimeters (49 to 79 inches); very pale brown (10YR 7/4) silt loam, brownish yellow (10YR 6/6), moist; weak coarse subangular blocky structure; moderately hard, friable, slightly sticky and slightly plastic; 2 percent fine distinct irregular carbonate masses in matrix; violent effervescence, 35 percent calcium carbonate equivalent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/M/MANZANILLO.json b/inst/extdata/OSD/M/MANZANILLO.json index 8dbb91ec58..c9c050c8cd 100644 --- a/inst/extdata/OSD/M/MANZANILLO.json +++ b/inst/extdata/OSD/M/MANZANILLO.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 2 inches; brown (10YR 5/3), gravelly sandy loam, dark brown (10YR 3/3) moist; weak medium platy and weak fine subangular blocky structure; soft, friable, slightly sticky and slightly plastic; 25 percent limestone gravel and 8 percent igneous cobbles; strong effervescence; slightly alkaline; abrupt smooth boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "very abrupt", "topography": "wavy", "narrative": "Bk--2 to 13 inches; brown (10YR 4/3), extremely gravelly sandy clay loam, dark brown (10YR 3/3) moist; weak fine subangular blocky structure; slightly hard, firm, slightly sticky and slightly plastic; 4 percent distinct carbonate coats on rock fragments; 35 percent limestone gravel, 30 percent igneous gravel; violent effervescence; slightly alkaline; very abrupt wavy boundary. (8 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "very abrupt", "topography": "wavy", "narrative": "Bkkm--13 to 16 inches; white (10YR 8/1) moderately cemented petrocalcic, light gray (10YR 7/1) moist; massive; moderately cemented by carbonates; high excavation difficulty; 5 percent igneous gravel and 60 percent limestone gravel; violent effervescence; moderately alkaline; very abrupt wavy boundary. (2 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--16 to 22 inches; pale brown (10YR 6/3) strongly cemented fanglomerate bedrock, brown (10YR 5/3) moist; very high excavation difficulty; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MARIANO.json b/inst/extdata/OSD/M/MARIANO.json index 31b3174290..5a8230f37b 100644 --- a/inst/extdata/OSD/M/MARIANO.json +++ b/inst/extdata/OSD/M/MARIANO.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bkny1--51 to 62 inches; light brown (7.5YR 6/3) extremely gravelly sandy loam, brown (7.5YR 5/3) moist; massive; loose, loose, nonsticky and nonplastic; few fine roots matted around stones; many hard masses of carbonate throughout; moderately effervescent; 23 percent calcium carbonate; 6 percent gypsum; SAR, 20; 55 percent gravel, 20 percent cobbles, and 5 percent stones; moderately alkaline (pH 8.2); gradual wavy boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/M/MARIAVILLE.json b/inst/extdata/OSD/M/MARIAVILLE.json index 294e4f8006..fe72d766fd 100644 --- a/inst/extdata/OSD/M/MARIAVILLE.json +++ b/inst/extdata/OSD/M/MARIAVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 5 inches; dark grayish brown (10YR 4/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; slightly hard, friable; many medium and fine roots; few fine lime concretions; 5 percent calcium carbonate equivalent; slight effervescence; slightly alkaline; clear smooth boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "ACk--5 to 12 inches; light olive brown (2.5Y 5/4) silty clay loam, olive brown (2.5Y 4/4) moist; weak medium prismatic structure parting to weak fine subangular blocky; hard, friable; many fine and medium roots; 9 percent calcium carbonate equivalent; strong effervescence; moderately alkaline; clear irregular boundary. (3 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--12 to 17 inches; light yellowish brown (2.5Y 6/4) silty clay loam; light olive brown (2.5Y 5/4) moist; massive; weak fine and medium subangular blocky siltstone fragments; hard, firm; few to common very fine and fine roots; few fine lime accumulations; 10 percent calcium carbonate equivalent; violent effervescence; moderately alkaline; clear smooth boundary. (3 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cr1--17 to 22 inches; light yellowish brown (2.5Y 6/4) siltstone, light olive brown (2.5Y 5/4) moist; massive; fine and medium angular blocky siltstone fragments; hard, firm; few very fine and fine roots; common fine soft lime accumulations interspersed in pores and between bedding planes; 12 percent calcium carbonate equivalent; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr2--22 to 80 inches; light yellowish brown (2.5Y 6/4) siltstone; light olive brown (2.5Y 5/4) moist; few to common fine distinct black (10YR 2/1) mottles dispersed throughout the matrix; massive; medium and coarse angular blocky siltstone fragments; very hard, firm; few fine soft lime accumulations; 12 percent calcium carbonate equivalent; few dark concretions of Fe and Mn oxides; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MARISSA.json b/inst/extdata/OSD/M/MARISSA.json index aa08541f94..6595e19e2b 100644 --- a/inst/extdata/OSD/M/MARISSA.json +++ b/inst/extdata/OSD/M/MARISSA.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--127 to 152 cm (50 to 60 inches); light yellowish brown (2.5Y 6/4) silt loam; massive; friable; many yellowish brown (10YR 5/8) masses of oxidized iron in the matrix; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MARLAKE.json b/inst/extdata/OSD/M/MARLAKE.json index 4dba7e0768..45989f50b1 100644 --- a/inst/extdata/OSD/M/MARLAKE.json +++ b/inst/extdata/OSD/M/MARLAKE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--5 to 23 centimeters (2 to 9 inches); very dark gray (10YR 3/1) fine sandy loam, gray (10YR 5/1) dry; weak fine and medium granular structure; soft, very friable; many fine and very fine roots throughout; few fine snail shells and snail shell fragments throughout; strong effervescence; moderately alkaline; abrupt smooth boundary. [15 to 23 centimeters (6 to 9 inches) thick]" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ACg--23 to 41 centimeters (9 to 16 inches); very dark gray (10YR 3/1) loamy fine sand, gray (10YR 5/1) dry; stratified with olive gray (5Y 5/2) sand, light olive gray (5Y 6/2) dry; common medium distinct olive (5Y 4/4) moist and light olive brown (2.5Y 5/6) moist iron masses in the matrix; weak medium and coarse subangular blocky structure; soft, very friable; common fine and very fine roots throughout; slight effervescence; slightly alkaline; clear smooth boundary. [0 to 38 centimeters (0 to 15 inches) thick]" diff --git a/inst/extdata/OSD/M/MARMARTH.json b/inst/extdata/OSD/M/MARMARTH.json index 301eb59093..a442224378 100644 --- a/inst/extdata/OSD/M/MARMARTH.json +++ b/inst/extdata/OSD/M/MARMARTH.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--19 to 25 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; moderate medium prismatic structure parting to moderate medium angular blocky; hard, friable, sticky and slightly plastic; few roots; few medium pores; common masses of carbonate; violent effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--25 to 35 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; weak coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine roots; few pores; few fine masses of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 5 to 19 inches thick)" diff --git a/inst/extdata/OSD/M/MARTILLO.json b/inst/extdata/OSD/M/MARTILLO.json index 6f49c3374f..ccc2125d36 100644 --- a/inst/extdata/OSD/M/MARTILLO.json +++ b/inst/extdata/OSD/M/MARTILLO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A--0 to 4 inches; light brown (7.5YR 6/3) clay loam, brown (7.5YR 4/3) moist; weak; abrupt medium granular structure; friable, hard, moderately sticky, moderately plastic; many fine and many medium roots; 2 percent tuff gravel; slight effervescence; moderately alkaline smooth boundary (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bn1--4 to 12 inches; brown (7.5YR 5/3) clay, dark brown (7.5YR 3/3) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; firm, very hard, very sticky, very plastic; many fine and many medium roots; 2 percent tuff gravel; strong effervescence; moderately alkaline; abrupt wavy boundary (4 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bn2--12 to 17 inches; brown (7.5YR 5/4) clay, dark brown (7.5YR 3/3) moist; weak medium subangular blocky structure; firm, very hard, very sticky, very plastic; common fine and common medium roots; 5 percent tuff gravel; strong effervescence; moderately alkaline; clear wavy boundary (4 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bn3--17 to 23 inches; light brown (7.5YR 6/4) clay, brown (7.5YR 5/4) moist; moderate fine and medium subangular blocky structure; firm, very hard, very sticky, very plastic; common fine tubular pores; 10 percent tuff gravel; strong effervescence; moderately alkaline; clear wavy boundary (6 to 17 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bnz--23 to 34 inches; brown (7.5YR 5/4) loam, dark brown (7.5YR 3/4) moist; weak fine and medium subangular blocky structure; firm, very hard, moderately sticky, moderately plastic; common very fine tubular pores; 5 percent carbonate masses; 10 percent tuff gravel; strong effervescence; moderately alkaline; gradual wavy boundary (8 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bknz1--34 to 44 inches; brown (7.5YR 5/4) loam, brown (7.5YR 4/4) moist; weak fine and medium subangular blocky structure; firm, very hard, moderately sticky, moderately plastic; common very fine tubular pores; 5 percent carbonate masses; 12 percent tuff gravel; violent effervescence; moderately alkaline; gradual wavy boundary (7 to 14 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bknz2--44 to 55 inches; brown (7.5YR 5/4) loam, brown (7.5YR 4/4) moist; weak fine and medium subangular blocky structure; firm, very hard, moderately sticky, moderately plastic; common very fine tubular pores; 5 percent carbonate masses; 10 percent tuff gravel; strong effervescence; moderately alkaline; gradual wavy boundary (7 to 16 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2B'n1--55 to 64 inches; brown (7.5YR 5/4) loam, brown (7.5YR 4/4) moist; weak fine and medium subangular blocky structure; firm, very hard, moderately sticky, moderately plastic; common very fine tubular pores; 2 percent carbonate masses; 1 percent tuff cobbles and 5 percent tuff gravel; strong effervescence; moderately alkaline; gradual wavy boundary (8 to 40 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "3B'n2--64 to 72 inches; reddish brown (2.5YR 5/4) clay loam, reddish brown (2.5YR 4/4) moist; weak fine subangular blocky structure; firm, very hard, moderately sticky, moderately plastic; 5 percent carbonate masses; a pebble band composed of coarse subrounded igneous gravel occurs at base of horizon; strong effervescence; moderately alkaline; clear wavy boundary (6 to 20 inches thick)" @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3CBkn--72 to 80 inches; light reddish brown (5YR 6/4) silty clay loam, reddish brown (5YR 5/4) moist; weak fine subangular blocky structure; firm, very hard, moderately sticky, moderately plastic; many fine roots and many medium roots; 8 percent carbonate masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MARTINSON.json b/inst/extdata/OSD/M/MARTINSON.json index 812ad8ccb2..902113f10f 100644 --- a/inst/extdata/OSD/M/MARTINSON.json +++ b/inst/extdata/OSD/M/MARTINSON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "but effervescent", "distinctness": "clear", "topography": "irregular", "narrative": "Btss--18 to 24 inches; yellowish brown (10YR 5/4) clay, yellowish brown (10YR 5/6) moist; strong fine and medium angular blocky structure with some wedges present; extremely hard, very firm, very sticky and very plastic; no roots visible; few very fine tubular pores; common slickensides and pressure cutans on faces of wedge-shaped peds; brown (10YR 5/3) clay films on faces of peds; matrix is noneffervescent but effervescent in spots; slightly alkaline (pH 7.4); clear irregular boundary. (4 to 12 inches thick)" diff --git a/inst/extdata/OSD/M/MASCHETAH.json b/inst/extdata/OSD/M/MASCHETAH.json index 8277962fd4..35787d903f 100644 --- a/inst/extdata/OSD/M/MASCHETAH.json +++ b/inst/extdata/OSD/M/MASCHETAH.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "diffuse", "topography": "irregular", "narrative": "Bk2--13 to 19 inches; light gray (2.5Y 7/2) silty clay loam, light olive brown (2.5Y 5/3) moist; weak medium prismatic structure parting to moderate fine and medium blocks; hard, friable, sticky and slightly plastic; common very fine roots; many very fine tubular pores; moderately effervescent; many fine and medium masses of lime; moderately alkaline; diffuse irregular boundary." diff --git a/inst/extdata/OSD/M/MASSANETTA.json b/inst/extdata/OSD/M/MASSANETTA.json index 4c48950e3e..0c624248d5 100644 --- a/inst/extdata/OSD/M/MASSANETTA.json +++ b/inst/extdata/OSD/M/MASSANETTA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 11 inches; very dark grayish brown (10YR 3/2) silt loam; moderate medium granular structure; friable; common fine roots; 5 percent secondary lime concretions up to 1/4 inch in size; strong effervescence; slightly alkaline; clear smooth boundary. (7 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--11 to 16 inches; dark gray (10YR 4/1) clay loam; moderate medium granular structure; friable; few fine roots; 10 percent secondary lime and shell fragments up to 1/2 inch in size; common worm casts and channels; strong effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--16 to 25 inches; gray (10YR 5/1) clay loam; moderate fine granular structure; very friable; few fine roots; 10 percent secondary lime and shell fragments up to 1/3 inch in size; yellowish brown (10YR 5/8) worm casts and soil material filling old root channels; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bw horizon is 6 to 28 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--25 to 35 inches; dark gray (10YR 4/1) loam; massive; very friable; few fine roots; 20 percent secondary lime and shell fragments up to 1/2 inch in size; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--35 to 54 inches; gray (10YR 5/1) loam; massive; very friable; 25 percent secondary lime and shell fragments up to 1/2 inch in size; yellowish brown (10YR 5/6) coatings along root channels; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--54 to 64 inches; gray (10YR 6/1) silt loam; massive; 20 percent secondary lime and shell fragments less than 1/4 inch in size; common fine and medium distinct yellowish brown (10YR 5/6) soft masses of iron accumulation; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C4--64 to 80 inches; yellowish brown (10YR 5/8) clay; massive; 3 percent secondary lime concretions less than 1/4 inches in size; many medium distinct dark gray (10YR 4/1) iron depletions; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MATCHWOOD.json b/inst/extdata/OSD/M/MATCHWOOD.json index 2faeb27807..70aea556b1 100644 --- a/inst/extdata/OSD/M/MATCHWOOD.json +++ b/inst/extdata/OSD/M/MATCHWOOD.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Cd1--94 to 127 centimeters; reddish brown (5YR 5/4) silty clay loam; weak medium and coarse angular blocky structure, and weak very coarse angular blocky structure; firm; common continuous prominent white (7.5YR 8/1) carbonate coats on all faces of peds and common continuous prominent gray (N 6/0) silt coats on all faces of peds; common medium and coarse prominent spherical strongly cemented carbonate nodules; about 5 percent gravel; violent effervescence; strongly alkaline (pH 9.0); gradual wavy boundary. (28 to 43 centimeters thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cd2--127 to 203 centimeters; reddish brown (5YR 4/3) silty clay loam; massive; common continuous prominent gray (N 6/0) silt coats on vertical faces of peds; about 2 percent gravel; violent effervescence; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/M/MAUVAIS.json b/inst/extdata/OSD/M/MAUVAIS.json index bb25247d43..643b3faa52 100644 --- a/inst/extdata/OSD/M/MAUVAIS.json +++ b/inst/extdata/OSD/M/MAUVAIS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; black (10YR 2/1) loam, dark gray (10YR 4/1) dry; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; about 2 percent gravel; strong effervescence; slightly alkaline; clear smooth boundary. (1 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--2 to 50 inches; grayish brown (2.5Y 5/2) loam, light gray (2.5Y 7/2) dry; few fine prominent dark reddish brown (2.5YR 3/4) and many medium and coarse prominent yellowish brown (10YR 5/6) mottles; massive; hard, friable, sticky and plastic; common light brownish gray (2.5Y 6/2) along vertical partings; about 2 percent gravel; few fine rounded manganese concretions; few fine nests of gypsum; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 55 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--50 to 60 inches; dark grayish brown (2.5Y 4/2) loam, light brownish gray (2.5Y 6/2) dry; few fine prominent dark reddish brown (2.5YR 3/4) and common fine distinct olive brown (2.5Y 4/4) mottles; massive; hard, friable, sticky, and plastic; few fine rounded manganese concretions; few fine concentrations of gypsum; about 2 percent gravel; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MAWER.json b/inst/extdata/OSD/M/MAWER.json index 7e40cb4715..a231b001f1 100644 --- a/inst/extdata/OSD/M/MAWER.json +++ b/inst/extdata/OSD/M/MAWER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--22 to 60 inches; light gray (10YR 7/2) sand and gravel, pale brown (10YR 6/3) moist; single grained; loose; violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MAX.json b/inst/extdata/OSD/M/MAX.json index 8889a8821f..7a2d71d22d 100644 --- a/inst/extdata/OSD/M/MAX.json +++ b/inst/extdata/OSD/M/MAX.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--16 to 26 inches; olive brown (2.5Y 4/4) loam, light yellowish brown (2.5Y 6/4) dry; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, firm, sticky and plastic; few very fine roots; about 5 percent gravel; disseminated carbonates throughout; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--26 to 37 inches; light olive brown (2.5Y 5/4) loam, light yellowish brown (2.5Y 6/4) dry; weak coarse subangular blocky structure; hard, firm, sticky and plastic; few very fine roots; about 5 percent gravel; few fine irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined Bk horizons 6 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--37 to 60 inches; light olive brown (2.5Y 5/4) loam, light yellowish brown (2.5Y 6/4) dry; massive; hard, firm, sticky and plastic; few very fine roots; about 5 percent gravel; few fine irregularly shaped masses of carbonates; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MAZUMA.json b/inst/extdata/OSD/M/MAZUMA.json index e684a5f815..9c8090aff2 100644 --- a/inst/extdata/OSD/M/MAZUMA.json +++ b/inst/extdata/OSD/M/MAZUMA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A2--4 to 20 cm; pale brown (10YR 6/3) fine sandy loam, brown (10YR 4/3) moist; weak thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; few very fine and fine tubular pores; slightly effervescent, very few strongly effervescent spots; strongly alkaline (pH 9.0); clear smooth boundary. (5 to 25 cm thick)" diff --git a/inst/extdata/OSD/M/MCCLURE.json b/inst/extdata/OSD/M/MCCLURE.json index 0d29830eb9..16bbe76810 100644 --- a/inst/extdata/OSD/M/MCCLURE.json +++ b/inst/extdata/OSD/M/MCCLURE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--19 to 24 inches; pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; weak medium prismatic structure parting to moderate medium subangular blocky; hard, firm, sticky and plastic; few fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk2--24 to 34 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, very firm, sticky and plastic; common medium soft accumulations of carbonate; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk3--34 to 46 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure; very hard, very firm, sticky and plastic; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 16 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--46 to 60 inches; light brownish gray (2.5Y 6/2) silty clay, grayish brown (2.5Y 5/2) moist; massive; hard, firm, sticky and plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MCCONAUGHY.json b/inst/extdata/OSD/M/MCCONAUGHY.json index 7dd70836a5..81965f56ed 100644 --- a/inst/extdata/OSD/M/MCCONAUGHY.json +++ b/inst/extdata/OSD/M/MCCONAUGHY.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--33 to 43 centimeters (13 to 17 inches); brown (10YR 5/3) loam, brown (10YR 4/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable; slight effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--43 to 56 centimeters (17 to 22 inches); pale brown (10YR 6/3) very fine sandy loam, brown (10YR 5/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bw horizon is 15 to 30 centimeters (6 to 12 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--56 to 86 centimeters (22 to 34 inches); very pale brown (10YR 7/3) loam, brown (10YR 5/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable; few small soft white accumulations of carbonates; violent effervescence; strongly alkaline; gradual wavy boundary. (15 to 36 centimeters (6 to 14 inches) thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "C1--86 to 102 centimeters (34 to 40 inches); very pale brown (10YR 7/3) very fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard, friable; few small soft white accumulations of carbonates; strong effervescence; moderately alkaline; diffuse wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--102 to 152 centimeters (40 to 60 inches); very pale brown (10YR 7/3) very fine sandy loam, brown (10YR 5/3) moist; massive; slightly hard, friable; few small soft white accumulations of carbonates; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/M/MCCOOK.json b/inst/extdata/OSD/M/MCCOOK.json index 2a18bceed6..6535d45117 100644 --- a/inst/extdata/OSD/M/MCCOOK.json +++ b/inst/extdata/OSD/M/MCCOOK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 15 centimeters (0 to 6 inches); grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, very friable; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--15 to 38 centimeters (6 to 15 inches); grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak coarse prismatic structure; soft, very friable; slight effervescence; slightly alkaline; abrupt smooth boundary. (Combined thickness of A horizons is 25 to 51 centimeters (10 to 20 inches).)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--38 to 79 centimeters (15 to 31 inches); light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to weak medium and fine granular; soft, very friable; strong effervescence; moderately alkaline; clear smooth boundary. (15 to 46 centimeters (6 to 18 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--79 to 97 centimeters (31 to 38 inches); light brownish gray (10YR 6/2) silt loam, grayish brown (10YR 5/2) moist; massive; soft, very friable; fine stratification in upper part; strong effervescence; moderately alkaline; gradual smooth boundary. (13 to 51 centimeters (5 to 20 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--97 to 203 centimeters (38 to 80 inches); light gray (10YR 7/2) very fine sandy loam, grayish brown (10YR 5/2) moist; massive; soft, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MCCRACKEN.json b/inst/extdata/OSD/M/MCCRACKEN.json index 1413e9cb99..ef0b1841c5 100644 --- a/inst/extdata/OSD/M/MCCRACKEN.json +++ b/inst/extdata/OSD/M/MCCRACKEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--0 to 7 inches (0 to 19 cm); brown (7.5YR 5/4), sandy clay loam, brown (7.5YR 4/4) moist; 22 percent clay; weak medium subangular blocky structure; firm, moderately hard, moderately sticky, moderately plastic; few very fine roots throughout; common very fine interstitial pores; 10 percent gravel; violent effervescence; strongly alkaline, pH 8.6; abrupt smooth boundary." diff --git a/inst/extdata/OSD/M/MCCULIGAN.json b/inst/extdata/OSD/M/MCCULIGAN.json index 82f746deb2..bfcf074eb1 100644 --- a/inst/extdata/OSD/M/MCCULIGAN.json +++ b/inst/extdata/OSD/M/MCCULIGAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 18 centimeters (0 to 7 inches); gray (10YR 5/1) loam; very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; soft; very friable; sodium adsorption ratio 9; strong effervescence; moderately alkaline; abrupt smooth boundary. (15 to 23 centimeters (6 to 9 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "ACg--18 to 30 centimeters (7 to 12 inches); stratified grayish brown (10YR 5/2) loam and dark grayish brown (10YR 4/2) very fine sandy loam; dark gray (10YR 4/1) and very dark gray (10YR 3/1) moist; few fine prominent yellowish brown (10YR 5/6) iron masses in the matrix; weak medium subangular blocky structure; slightly hard; friable; sodium adsorption ratio 8; electrical conductivity 4 mmhos/cm; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 25 centimeters (0 to 10 inches) thick)" diff --git a/inst/extdata/OSD/M/MCDONALDSVILLE.json b/inst/extdata/OSD/M/MCDONALDSVILLE.json index 6c478a9690..83e0d8270a 100644 --- a/inst/extdata/OSD/M/MCDONALDSVILLE.json +++ b/inst/extdata/OSD/M/MCDONALDSVILLE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2C1--30 to 36 inches; olive (5Y 4/3) loamy sand, light olive gray (5Y 6/2) dry; many fine prominent light gray (5Y 7/1) and distinct dark gray (5Y 4/1) and dark brown (7.5YR 3/2) mottles; single grain; slightly hard, slightly sticky and nonplastic; few shale pebbles; few masses of segregated carbonates; slight effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--36 to 60 inches; olive (5Y 5/3) loamy sand, light gray (5Y 7/2) and pale yellow (5Y 7/3) dry; many fine distinct dark yellowish brown (10YR 4/4) mottles; single grain; few shale pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MCGREW.json b/inst/extdata/OSD/M/MCGREW.json index c97603e165..0b48736206 100644 --- a/inst/extdata/OSD/M/MCGREW.json +++ b/inst/extdata/OSD/M/MCGREW.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 20 centimeters (0 to 8 inches); light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak medium granular structure; slightly hard, friable; violent effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--20 to 25 centimeters (8 to 10 inches); light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure; slightly hard, friable; violent effervescence; slightly alkaline; clear smooth boundary. (Combined thickness of A horizon is 20 to 43 centimeters (8 to 17 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--25 to 71 centimeters (10 to 28 inches); light gray (2.5Y 7/2) stratified very fine sandy loam, fine sandy loam, and loamy very fine sand, grayish brown (2.5Y 5/2) moist; many medium distinct yellowish brown (10YR 5/6) moist iron masses in matrix; massive; soft, very friable; slight effervescence; moderately alkaline; clear smooth boundary. (30 to 58 centimeters (12 to 23 inches) thick)" diff --git a/inst/extdata/OSD/M/MCKEEN.json b/inst/extdata/OSD/M/MCKEEN.json index 9084e83cc4..18ecaab89d 100644 --- a/inst/extdata/OSD/M/MCKEEN.json +++ b/inst/extdata/OSD/M/MCKEEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; very dark grayish brown (10YR 3/2) loam, grayish brown (10YR 5/2) dry; moderate very fine and fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and common fine roots; common very fine pores; very slight effervescence; slightly alkaline; clear smooth boundary. (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--2 to 12 inches; stratified dark grayish brown (2.5Y 4/2) loam, light brownish gray (2.5Y 6/2) dry; many fine faint grayish brown (2.5Y 5/2) redox depletions and many fine prominent yellowish brown (10YR 5/8) redox concentrations; moderate medium and fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine and few fine roots; common very fine pores; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ab--12 to 15 inches; very dark grayish brown (2.5Y 3/2) silty clay, grayish brown (2.5Y 5/2) dry; few fine prominent yellowish brown (10YR 5/8) redox concentrations; strong fine subangular blocky structure; hard, firm, very sticky and very plastic; few very fine and fine roots; few very fine pores; slight effervescence; slightly alkaline; clear smooth boundary. (0 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--15 to 23 inches; stratified olive gray (5Y 4/2) silty clay loam, olive gray (5Y 5/2) dry; few fine prominent dark yellowish brown (10YR 4/4) redox concentrations; massive; hard, firm, sticky and plastic; few very fine and fine roots; few very fine pores; slight effervescence; slightly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg2--23 to 45 inches; stratified dark olive gray (5Y 3/2) and olive gray (5Y 4/2) loam, olive gray (5Y 5/2) and light olive gray (5Y 6/2) dry; common fine distinct gray (5Y 5/1) redox depletions and common fine prominent dark yellowish brown (10YR 4/4) redox concentrations; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; few very fine pores; slight effervescence; slightly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg3--45 to 54 inches; stratified olive gray (5Y 4/2) loam, olive gray (5Y 5/2) dry; many fine faint gray (5Y 5/1) redox depletions and many fine prominent dark yellowish brown (10YR 4/4) redox concentrations; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; few very fine pore; slight effervescence; slightly alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg4--54 to 60 inches; stratified olive gray (5Y 4/2) loamy fine sand, light olive gray (5Y 6/2) dry; common fine faint gray (5Y 5/1) redox depletions and common fine prominent dark yellowish brown (10YR 4/4) redox concentrations; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; few very fine pores; very slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MCKELVIE.json b/inst/extdata/OSD/M/MCKELVIE.json index f5fbb01661..b568544c7a 100644 --- a/inst/extdata/OSD/M/MCKELVIE.json +++ b/inst/extdata/OSD/M/MCKELVIE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--36 to 80 inches; light gray (2.5Y 7/2) sand, light brownish gray (2.5Y 6/2) moist; single grain; loose; few fine foots; about 5 percent by volume of soft calcareous sandstone fragments ranging from 1/2 to 3 inches in size; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MCKENZIE.json b/inst/extdata/OSD/M/MCKENZIE.json index a65fd03fad..442568414b 100644 --- a/inst/extdata/OSD/M/MCKENZIE.json +++ b/inst/extdata/OSD/M/MCKENZIE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ag--0 to 3 inches; dark gray (5Y 4/1) clay, gray (5Y 5/1) dry; weak fine blocky structure; extremely hard, very firm, very sticky and very plastic; common roots; a crust of light gray (5Y 6/1) dry is on the surface; slight effervescence; strongly alkaline; gradual boundary. (0 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bg--3 to 24 inches; dark gray (5Y 4/1) clay, gray (5Y 6/1) dry; weak very coarse (8 to 36 inches across) prismatic structure; extremely hard, very firm, very sticky and plastic; few roots; few fine carbonate nodules; strong effervescence; strongly alkaline; diffuse boundary. (3 to 25 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg1--24 to 44 inches; dark gray (5Y 4/1) clay, gray and light gray (5Y 5/1 and 6/1) dry; massive but breaks into weak blocks on drying; extremely hard, very firm, very sticky and plastic; few roots; few slickensides; strong effervescence; strongly alkaline." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--44 to 60 inches; olive gray (5Y 4/2) clay, light olive gray (5Y 6/2) dry; a few brown iron accumulations; massive; extremely hard, very firm; few fine salt and carbonate nodules; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/M/MCKNIGHT.json b/inst/extdata/OSD/M/MCKNIGHT.json index b8cad77fd3..f4790f74a1 100644 --- a/inst/extdata/OSD/M/MCKNIGHT.json +++ b/inst/extdata/OSD/M/MCKNIGHT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2CBk--36 to 43 inches; 80 percent greenish gray (5GY 6/1) and 20 percent red (2.5YR 4/6) silty clay loam, 80 percent greenish gray (5GY 5/1) and 20 percent dark red (2.5YR 3/6), moist; 60 percent massive and 40 percent weak medium prismatic structure; firm, hard; few fine and very fine roots; common fine pores; common carbonate coats on ped faces; 2 percent angular moderately cemented 5 to 76 millimeter claystone fragments and about 35% by volume noncemented claystone fragments; slight effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Ck--43 to 52 inches; 50 percent red (2.5YR 4/6) and 50 percent greenish gray (5GY 6/1) highly fractured claystone, 50 percent dark red (2.5YR 3/6) and 50 percent greenish gray (5GY 5/1), moist; moderate excavation difficulty; few fine and very fine roots around fragments; few fine pores; common carbonate coats along fractures; 6 percent angular moderately cemented 5 to 76 millimeter claystone fragments; slight effervescence; moderately alkaline; gradual smooth boundary. (0 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cd--52 to 95 inches; 80 percent red (2.5YR 4/6) and 20 percent greenish gray (5GY 6/1) noncemented calcareous claystone bedrock, fractured at intervals of 4 to less than 18 inches, 80 percent dark red (2.5YR 3/6) and 20 percent greenish gray (5GY 5/1), moist; high excavation difficulty; 2 percent angular moderately cemented 5 to 76 millimeter claystone fragments; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MCRAE.json b/inst/extdata/OSD/M/MCRAE.json index e371c8171e..3a3b9f41e3 100644 --- a/inst/extdata/OSD/M/MCRAE.json +++ b/inst/extdata/OSD/M/MCRAE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1ca--11 to 34 inches; pale olive (5Y 6/3) loam, olive (5Y 5/3) moist; very weak coarse prismatic structure in upper part, becoming massive and stratified in lower part; hard, friable, slightly sticky, slightly plastic; moderate effervescence with few seams and soft nodules of segregated lime; gradual boundary. (20 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--34 to 60 inches; pale olive (5Y 6/3) loam, olive (5Y 5/3) moist; massive; slightly hard, friable, slightly sticky, slightly plastic; moderate effervescence." diff --git a/inst/extdata/OSD/M/MEDBURN.json b/inst/extdata/OSD/M/MEDBURN.json index 17048a8fa1..4d3a9519ff 100644 --- a/inst/extdata/OSD/M/MEDBURN.json +++ b/inst/extdata/OSD/M/MEDBURN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 10 cm; pale brown (10YR 6/3) very fine sandy loam, dark brown (10YR 3/3) moist; moderate fine granular structure; soft, friable, slightly sticky, slightly plastic; common very fine roots; 10 percent gravel; slight effervescence, carbonate, finely disseminated (3 percent calcium carbonate equivalent); moderately alkaline (pH 8.4); clear smooth boundary. (3 to 28 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--20 to 38 cm; light yellowish brown (10YR 6/4) fine sandy loam, yellowish brown (10YR 5/4) moist; weak medium subangular blocky structure; soft, very friable, slightly sticky; common very fine roots; common very fine pores; 5 percent gravel; strong effervescence, carbonate, finely disseminated (10 percent calcium carbonate equivalent); strongly alkaline (pH 8.6); clear smooth boundary. (8 to 36 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--38 to 61 cm; very pale brown (10YR 7/3) fine sandy loam, brown (10YR 5/3) moist; massive; soft, very friable, slightly sticky, slightly plastic; common very fine roots; few fine pores; 5 percent gravel; strong effervescence, carbonate, finely disseminated (10 percent calcium carbonate equivalent); strongly alkaline (pH 8.7); clear smooth boundary. (15 to 46 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--61 to 81 cm; very pale brown (10YR 7/3) fine sandy loam, brown (10YR 5/3) moist; massive; soft, friable, slightly sticky and slightly plastic; few very fine roots; few fine pores; 5 percent gravel; strong effervescence, carbonate, finely disseminated (11 percent calcium carbonate equivalent); strongly alkaline (pH 8.9); clear smooth boundary (20 to 64 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C4--81 to 104 cm; very pale brown (10YR 7/3) sandy loam, brown (10YR 4/3), moist; massive; friable, soft, slightly sticky, slightly plastic; few very fine roots; 20 percent gravel; strong effervescence, carbonate, finely disseminated (7 percent calcium carbonate equivalent); strongly alkaline, pH 8.8; clear smooth boundary. (0 to 33 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--104 to 152 cm; very pale brown (10YR 7/3) loam, brown (10YR 4/3), moist; massive; friable, soft, slightly sticky, slightly plastic; strong effervescence, carbonate, finely disseminated (7 percent calcium carbonate equivalent); strongly alkaline, pH 8.2." diff --git a/inst/extdata/OSD/M/MEDLIN.json b/inst/extdata/OSD/M/MEDLIN.json index 6176fb213a..3180594a5d 100644 --- a/inst/extdata/OSD/M/MEDLIN.json +++ b/inst/extdata/OSD/M/MEDLIN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 6 inches; grayish brown (10YR 5/2) silty clay, dark grayish brown (10YR 4/2) moist; moderate fine subangular blocky and granular structure; extremely hard, very firm, sticky and plastic; many fine roots; few fine pebbles of quartz; common fine concretions of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (4 to 20 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bssk1--6 to 30 inches; grayish brown (10YR 5/2) silty clay, dark grayish brown (10YR 4/2) moist; moderate fine and medium blocky structure; extremely hard, very firm, sticky and plastic; few fine roots; few fine pebbles of quartz; common concretions of calcium carbonate; few fine slickensides below 26 inches; strong effervescence; moderately alkaline; gradual wavy boundary. (8 to 28 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bssk2--30 to 49 inches; grayish brown (2.5Y 5/2) silty clay, common fine distinct yellowish brown (10YR 5/6) mottles, dark grayish brown (2.5Y 4/2) moist; moderate coarse blocky structure; extremely hard, very firm, sticky and plastic; few fine roots; common coarse slickensides; common vertical streaks of brown clay; about 10 percent soft masses and concretions of calcium carbonate; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--49 to 70 inches; grayish brown (2.5YR 5/2) marly silty clay, common fine distinct yellowish brown (10YR 5/6) and gray (10YR 6/1) mottles, dark grayish brown (2.5Y 4/2) moist; massive; extremely hard, very firm, slightly sticky and plastic; about 20 percent soft masses and concretions of calcium carbonate; few fine black concretions; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MEGUIN.json b/inst/extdata/OSD/M/MEGUIN.json index fdddf48b34..4f3f6c2620 100644 --- a/inst/extdata/OSD/M/MEGUIN.json +++ b/inst/extdata/OSD/M/MEGUIN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 14 cm (0 to 6 in); dark gray (10YR 4/1) silty clay loam, very dark gray (10YR 3/1), moist; weak fine and medium subangular blocky structure and weak medium granular structure; slightly hard, friable; common fine roots and many very fine roots; common fine tubular and many fine and medium interstitial pores; strong effervescence; neutral; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--14 to 45 cm (6 to 18 in); dark gray (10YR 4/1) silty clay loam, very dark gray (10YR 3/1), moist; moderate medium subangular blocky structure; slightly hard, friable; many very fine roots; common fine tubular and many very fine tubular pores; 1 percent shell fragments; strong effervescence; neutral; gradual smooth boundary. (Combined thickness of the A horizon is 20 to 51 cm [8 to 20 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--45 to 74 cm (18 to 29 in) light yellowish brown (10YR 6/4)loam, yellowish brown (10YR 5/4), moist; weak medium and coarse subangular blocky structure; slightly hard, very friable; common fine roots and many very fine roots; many very fine tubular pores; 1 percent fine distinct yellowish brown (10YR 5/6) masses of oxidized iron with sharp boundaries lining pores; 1 percent shell fragments; violent effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--74 to 104 cm (29 to 41 in); pale brown (10YR 6/3)loam, brown (10YR 5/3), moist; moderate medium and coarse subangular blocky structure; slightly hard, friable; many very fine roots; common fine tubular and many very fine tubular pores; 1 percent fine faint dark yellowish brown (10YR 4/4) masses of oxidized iron with clear boundaries in matrix; 1 percent shell fragments; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw3--104 to 126 cm (41 to 50 in); light brownish gray 10YR 6/2)clay loam, grayish brown (10YR 5/2), moist; weak medium subangular blocky structure; slightly hard, friable; common very fine roots; common very fine tubular pores; 2 percent fine and medium distinct dark yellowish brown (10YR 4/6) masses of oxidized iron with clear boundaries in matrix; 1 percent shell fragments; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw4--126 to 155 cm (50 to 61 in); light gray (10YR 7/2) clay loam, grayish brown (10YR 5/2), moist; moderate medium and coarse subangular blocky structure; hard, firm; common very fine roots; common very fine tubular pores; 1 percent fine distinct dark yellowish brown (10YR 3/4) masses of oxidized iron with sharp boundaries lining pores and 1 percent fine black (10YR 2/1) iron-manganese masses with sharp boundaries in matrix surrounding redox concentrations; strong effervescence; slightly alkaline; clear wavy boundary. (Combined thickness of the Bw horizons is 99 to 152 cm [39 to 60 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bssb--155 to 203 cm (61 to 80 in); gray (10YR 5/1) clay,dark gray (10YR 4/1), moist; weak medium wedge structure parting to moderate medium subangular blocky structure; very hard, very firm; common very fine roots; common very fine tubular pores; 15 percent prominent slickensides (pedogenic) on all faces of peds; 1 percent fine distinct dark yellowish brown (10YR 3/4) iron-manganese masses with sharp boundaries on faces of peds; 1 percent fine carbonate nodules; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MEHURIN.json b/inst/extdata/OSD/M/MEHURIN.json index 41ac08f80b..c5a9a6e70e 100644 --- a/inst/extdata/OSD/M/MEHURIN.json +++ b/inst/extdata/OSD/M/MEHURIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--21 to 29 inches; olive brown (2.5Y 4/4) clay loam; common fine prominent yellowish brown (10YR 5/6) iron concentrations and common fine distinct grayish brown (2.5Y 5/2) iron depletions; weak medium subangular blocky structure; friable; few fine roots; common light brownish gray (2.5Y 6/2) lime accumulations; 2 percent gravel; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--29 to 60 inches; olive brown (2.5Y 4/4) clay loam; many fine prominent yellowish brown (10YR 5/6) iron concentrations and gray (5Y 5/1) iron depletions; massive; friable; few light brownish gray (2.5Y 6/2) lime accumulations; few yellowish red (5YR 4/6) iron coatings on ped faces; 3 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MEKINOCK.json b/inst/extdata/OSD/M/MEKINOCK.json index 62dbb814c9..3b9e07c70e 100644 --- a/inst/extdata/OSD/M/MEKINOCK.json +++ b/inst/extdata/OSD/M/MEKINOCK.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btyz--11 to 16 inches; very dark grayish brown (2.5Y 3/2) clay, dark grayish brown (2.5Y 4/2) dry; strong coarse prismatic structure parting to strong medium and fine angular blocky; very hard, very firm, very sticky and very plastic; few very fine roots confined to ped faces; common distinct clay films on faces of peds; common fine masses of salt and gypsum; slight effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/M/MELADO.json b/inst/extdata/OSD/M/MELADO.json index 8fe13af392..8a537a299e 100644 --- a/inst/extdata/OSD/M/MELADO.json +++ b/inst/extdata/OSD/M/MELADO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "An--0 to 4 inches; yellowish brown (10YR 5/4) silty clay, brown (10YR 5/3) moist; weak medium platy structure parting to weak medium subangular blocky; hard, very firm, very sticky and very plastic; strong effervescence; moderately alkaline; gradual smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bnyz1--4 to 10 inches; brown (10YR 5/3) silty clay, brown (10YR 4/3) moist; weak medium platy and weak coarse prismatic structure parting to weak fine and medium subangular blocky; hard, very firm, very sticky and very plastic; 1 percent gypsum crystals; 1 percent fine threadlike white (10YR 8/1) salt masses; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bnyz2--10 to 22 inches; brown (10YR 5/3) silty clay, brown (10YR 4/3) moist; weak coarse prismatic structure parting to weak fine subangular blocky; hard, very firm, very sticky and very plastic; 6 percent gypsum crystals; 5 percent fine threadlike white (10YR 8/1) salt masses; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bnyz3--22 to 35 inches; brown (10YR 5/3) silty clay, brown (10YR 4/3) moist; weak coarse prismatic structure parting to weak coarse and medium subangular blocky; hard, very firm, very sticky and very plastic; 5 percent gypsum crystals; 2 percent fine threadlike white (10YR 8/1) salt masses; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bnyz4--35 to 44 inches; brown (10YR 5/3) silty clay, brown (10YR 4/3), moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, very firm; very sticky and very plastic; 4 percent gypsum crystals; 3 percent fine threadlike white (10YR 8/1) salt crystals; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Byz horizon is 14 to 79 inches)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCnyz--44 to 61 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4), moist; weak medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; 3 percent gypsum crystals; 2 percent fine threadlike white (10YR 8/1) salt masses; common thin bedding planes; strong effervescence; strongly alkaline; clear wavy boundary. (7 to 21 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cnyz--61 to 87 inches; brown (10YR 5/3) clay, brown (10YR 4/3) moist; moderate medium subangular blocky structure; hard, very firm, very sticky and very plastic; 5 percent fine irregular white (10YR 8/1) gypsum masses; 1 percent fine irregular white (10YR 8/1) gypsum crystals; common thin bedding planes; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/M/MENDELTNA.json b/inst/extdata/OSD/M/MENDELTNA.json index 55fb2e0a91..a52e309214 100644 --- a/inst/extdata/OSD/M/MENDELTNA.json +++ b/inst/extdata/OSD/M/MENDELTNA.json @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cf--16 to 26 inches; olive gray (5Y 4/2) gravelly clay loam; slightly alkaline (pH 7.8); 25 percent subangular gravel; weakly effervescent; disseminated lime; frozen on August 23, 1983." diff --git a/inst/extdata/OSD/M/MENTO.json b/inst/extdata/OSD/M/MENTO.json index 219dbc741d..9bf418f78a 100644 --- a/inst/extdata/OSD/M/MENTO.json +++ b/inst/extdata/OSD/M/MENTO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--14 to 23 inches; grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate medium blocky structure; hard, firm; few fine roots; many soft medium-sized carbonate accumulations; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bt horizon ranges from 8 to 20 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCk--23 to 31 inches; pale brown (10YR 6/3) silty clay loam, brown (10YR 4/3) moist; weak medium subangular blocky structure; hard, firm; few very fine roots; few coarse root channels filled with darker colored soil material; soft carbonate accumulations common but fewer and smaller than horizon above; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--31 to 41 inches; pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; massive; hard, friable; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C2--41 to 67 inches; white (10YR 8/2) clay loam, grading to gravelly clay loam, light gray (10YR 7/2) moist; massive; porous; hard, friable; sand and gravel are mostly chalk or limestone; violent effervescence; moderately alkaline; abrupt smooth boundary. (0 to 28 inches thick)" diff --git a/inst/extdata/OSD/M/MERCERCAVE.json b/inst/extdata/OSD/M/MERCERCAVE.json index d98b5e96af..673f4be83b 100644 --- a/inst/extdata/OSD/M/MERCERCAVE.json +++ b/inst/extdata/OSD/M/MERCERCAVE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--140 to 200 cm; indurated marble bedrock; strong effervescence, by HCL, 1 normal." diff --git a/inst/extdata/OSD/M/METIGOSHE.json b/inst/extdata/OSD/M/METIGOSHE.json index c633fe6f14..e900a5f5ee 100644 --- a/inst/extdata/OSD/M/METIGOSHE.json +++ b/inst/extdata/OSD/M/METIGOSHE.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2BC--11 to 17 inches; dark grayish brown (10YR 4/2) gravelly loamy coarse sand, grayish brown (10YR 5/2) dry; weak medium subangular blocky structure; soft, friable, nonsticky and nonplastic; few fine roots; about 25 percent gravel; slight effervescence; mildly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--17 to 60 inches; grayish brown (10YR 5/2) gravelly coarse sand, light brownish gray (10YR 6/2) dry; single grain; loose, nonsticky and nonplastic; about 30 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/METRE.json b/inst/extdata/OSD/M/METRE.json index 38e0231977..ba1fda36fc 100644 --- a/inst/extdata/OSD/M/METRE.json +++ b/inst/extdata/OSD/M/METRE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bss1--4 to 10 inches; gray (10YR 5/1) clay, very dark grayish brown (2.5Y 3/2) moist; weak coarse blocky structure; extremely hard, extremely firm, very sticky and very plastic; cracks 1/2 to 1 inch wide; few intersecting slickensides; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bss2--10 to 17 inches; gray (10YR 5/1) clay, dark gray (10YR 4/1) moist; weak coarse blocky structure; extremely hard, extremely firm, very sticky and very plastic; cracks 1/2 to 1 inch wide; few intersecting slickensides; common tongues of very dark grayish brown (2.5Y 3/2); few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined Bss horizons is 10 to 22 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--17 to 22 inches; dark gray (10YR 4/1) and light gray (10YR 7/2) clay, dark gray (10YR 4/1) and light brownish gray (10YR 6/2) moist; weak coarse blocky structure; extremely hard, extremely firm, very sticky and very plastic; cracks 1/2 inch wide; many medium and fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (4 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--22 to 30 inches; light gray (2.5Y 7/2), white (2.5Y 8/2), and grayish brown (2.5Y 5/2) silty clay, light gray (2.5Y 7/2) and dark grayish brown (2.5Y 4/2) moist; weak coarse blocky structure parting to weak very fine blocky; very hard, very firm, sticky and plastic; few dark colored tongues 1/4 inch wide; few medium accumulations of carbonates; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--30 to 60 inches; white (2.5Y 8/2) and gray (10YR 5/1) soft mudstone; strong effervescence." diff --git a/inst/extdata/OSD/M/MIDDLEHILL.json b/inst/extdata/OSD/M/MIDDLEHILL.json index 9fa86d4abc..5a2eadc874 100644 --- a/inst/extdata/OSD/M/MIDDLEHILL.json +++ b/inst/extdata/OSD/M/MIDDLEHILL.json @@ -158,7 +158,7 @@ "cf_class": "extremely stony", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--41 to 61 cm; yellowish brown (10YR 5/4) extremely stony loamy coarse sand, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; many very fine tubular pores; 60 percent stones, 15 percent cobbles, 10 percent gravel; slightly effervescent matrix, underside of rock fragments 50 to 75 percent coated with strongly effervescent carbonates; moderately alkaline (pH 8.0); abrupt wavy boundary. (10 to 28 cm thick)" diff --git a/inst/extdata/OSD/M/MIDFIELD.json b/inst/extdata/OSD/M/MIDFIELD.json index 7bbf0882a8..cd50e32972 100644 --- a/inst/extdata/OSD/M/MIDFIELD.json +++ b/inst/extdata/OSD/M/MIDFIELD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btk1--101 to 131 cm (40 to 52 in); yellowish red (5YR 5/6) silty clay loam, reddish yellow (5YR 6/6) dry; weak coarse prismatic structure parting to moderate medium subangular blocky structure; very hard, firm; common very fine roots between peds; few very fine tubular pores; 4 percent prominent dark gray (5YR 4/1) clay films on surfaces of peds; very few very fine mica flakes; 2 percent white (10YR 8/1) fine calcium carbonate masses and 6 percent white (10YR 8/1) fine calcium carbonate nodules; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the 2Btk horizons is 23 to 102 cm [9 to 40 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btk2--131 to 203 cm (52 to 80 in); yellowish red (5YR 5/6) silt loam, reddish yellow (5YR 6/6) dry; weak coarse prismatic structure parting to moderate medium subangular blocky structure; very hard, firm; common very fine roots between peds; few very fine tubular pores; 2 percent prominent dark reddish gray (5YR 4/2) clay films on surfaces of peds; very few very fine mica flakes; 2 percent white (10YR 8/1) fine calcium carbonate masses and 4 percent white (10YR 8/1) fine calcium carbonate nodules; slight effervescence; neutral; gradual wavy boundary." diff --git a/inst/extdata/OSD/M/MILLBORO.json b/inst/extdata/OSD/M/MILLBORO.json index df62bde21c..e08d581378 100644 --- a/inst/extdata/OSD/M/MILLBORO.json +++ b/inst/extdata/OSD/M/MILLBORO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt2--33 to 48 centimeters (13 to 19 inches); grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate fine and very fine subangular blocky; very hard, firm, sticky and plastic; many tongues 1 to 3 centimeters (1/4 to 1 inch) wide of dark grayish brown (10YR 4/2); strong effervescence; slightly alkaline; clear smooth boundary. [Combined Bt horizons are 20 to 61 centimeters (8 to 24 inches)thick.]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkss1--48 to 71 centimeters (19 to 28 inches); grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium blocky; extremely hard, very firm, very sticky and very plastic; many tongues 1 to 3 centimeters (1/4 to 1 inch) wide of dark grayish brown (10YR 4/2); many pressure faces and common slickensides; common medium accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss2--71 to 91 centimeters (28 to 36 inches); grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; moderate medium and coarse blocky structure; extremely hard, very firm, very sticky and very plastic; many tongues 1 to 3 centimeters (1/4 to 1 inch) wide of dark grayish brown (10YR 4/2); many pressure faces and common slickensides; many fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. [Combined Bkss horizons are 0 to 51 centimeters (0 to 20 inches) thick.]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--91 to 109 centimeters (36 to 43 inches); grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, very firm, very sticky and very plastic; few 1/4 inch tongues of dark grayish brown (10YR 4/2); few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ckz--109 to 142 centimeters (43 to 56 inches); light yellowish brown (2.5Y 6/4) silty clay, olive brown (2.5Y 4/4) moist; massive; hard, firm, sticky and plastic; few 1 centimeter (1/4 inch)wide tongues of dark grayish brown (10YR 4/2); many fine accumulations of carbonate and salts; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C'--142 to 152 centimeters (56 to 60 inches); light yellowish brown (2.5Y 6/4) silty clay, olive brown (2.5Y 4/4) moist; massive; hard, firm, sticky and plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MINATARE.json b/inst/extdata/OSD/M/MINATARE.json index ab5730f195..e978b46df0 100644 --- a/inst/extdata/OSD/M/MINATARE.json +++ b/inst/extdata/OSD/M/MINATARE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btn1--3 to 7 inches; light brownish gray (10YR 6/2) clay loam, dark grayish brown (10YR 4/2) moist; moderate medium columnar structure parting to weak medium subangular blocky; hard, firm, sticky; exchangeable sodium percentage = 94; few thin films on faces of peds; violent effervescence; very strongly alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btn2--7 to 20 inches; light brownish gray (10YR 6/2) clay, dark grayish brown (10YR 4/2) moist; weak medium columnar structure parting to weak medium subangular blocky; very hard, very sticky; exchangeable sodium percentage = 96; common thin films on faces of peds; violent effervescence; very strongly alkaline; clear smooth boundary. (Combined thickness of Bt horizon is 16 to 30 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkn1--20 to 26 inches; light gray (10YR 7/2) clay loam, grayish brown (10YR 5/2) moist; weak medium subangular blocky structure; hard, firm, sticky; exchangeable sodium percentage = 110; few soft masses and fine concretions of carbonates; violent effervescence; very strongly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkn2--26 to 33 inches; light gray (10YR 7/2) clay loam, grayish brown (10YR 5/2) moist; few common reddish brown iron masses (5YR 4/4 moist) in the matrix in the lower part; moderate medium subangular blocky structure; very hard, very firm; exchangeable sodium percentahe = 76; few soft masses and fine concretions of carbonates; violent effervescence; very strongly alkaline; abrupt, wavy boundary." diff --git a/inst/extdata/OSD/M/MINCHEY.json b/inst/extdata/OSD/M/MINCHEY.json index 7c73697305..6951f8411d 100644 --- a/inst/extdata/OSD/M/MINCHEY.json +++ b/inst/extdata/OSD/M/MINCHEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk2--20 to 32 inches; very pale brown (10YR 8/3) sandy clay loam, very pale brown (10YR 7/3) moist; massive; hard, firm, slightly sticky and slightly plastic; few fine and medium roots; few fine pores; 5 percent gravel; very strongly effervescent (44 percent calcium carbonate equivalent), carbonate coats on bottom surfaces of rock fragments, carbonates are finely disseminated in matrix and fine carbonate nodules; moderately alkaline (pH 8.2); diffuse wavy boundary. (5 to 15 inches thick)" diff --git a/inst/extdata/OSD/M/MINGO.json b/inst/extdata/OSD/M/MINGO.json index 25715f99b7..6905d08111 100644 --- a/inst/extdata/OSD/M/MINGO.json +++ b/inst/extdata/OSD/M/MINGO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--20 to 29 inches; reddish brown (5YR 4/3) clay, dark reddish brown (5YR 3/3) moist; moderate medium and coarse blocky structure; very hard, very firm; common thin patchy clay films mainly on vertical surfaces of peds; few fine fragments of ironstone; slight effervescence; moderately alkaline; clear wavy boundary. (9 to 15 inches thick)" diff --git a/inst/extdata/OSD/M/MINNEISKA.json b/inst/extdata/OSD/M/MINNEISKA.json index cf9c826097..d17f34969c 100644 --- a/inst/extdata/OSD/M/MINNEISKA.json +++ b/inst/extdata/OSD/M/MINNEISKA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ap--0 to 10 inches; very dark brown (10YR 2/2) fine sandy loam, dark grayish brown (10YR 4/2) dry; weak very fine subangular blocky structure; very friable; strong effervescence; slightly alkaline. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--10 to 60 inches; stratified very dark grayish brown (10YR 3/2), very dark brown (10YR 2/2), and light olive brown (2.5Y 5/3) fine sandy loam, loam, loamy fine sand, and fine sand; laminated (weak thin to thick platy layers); very friable in some parts and loose in other parts; slight effervescence in some parts to strong effervescence in other parts; slightly alkaline." diff --git a/inst/extdata/OSD/M/MINNETONKA.json b/inst/extdata/OSD/M/MINNETONKA.json index 01c3dad415..78a8cb3721 100644 --- a/inst/extdata/OSD/M/MINNETONKA.json +++ b/inst/extdata/OSD/M/MINNETONKA.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--35 to 60 inches; olive gray (5Y 5/2) silty clay loam; common fine distinct olive (5Y 5/6) mottles; moderate very fine subangular blocky structure; friable; few black clayey fillings in old roots channels in upper part; a few soft black concretions; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/M/MINNEWASTA.json b/inst/extdata/OSD/M/MINNEWASTA.json index 99d53c6ecd..a8fb94684d 100644 --- a/inst/extdata/OSD/M/MINNEWASTA.json +++ b/inst/extdata/OSD/M/MINNEWASTA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--4 to 9 inches; grayish brown (2.5Y 5/2) coarse sand, light brownish gray (2.5Y 6/2) dry; single grain; loose; common fine roots; slight effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--9 to 16 inches; dark grayish brown (2.5Y 4/2) sand, grayish brown (2.5Y 5/2) dry; few fine prominent yellowish brown (10YR 5/6) mottles; single grain; loose; few fine roots; strong effervescence; strongly alkaline; clear wavy boundary. (Combined C horizon thickness is 4 to 18 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Cg1--16 to 22 inches; olive gray (5Y 5/2) sandy clay loam, light gray (5Y 7/2) dry; common medium prominent brownish yellow (10YR 6/6) redox concentrations; massive; very hard, firm, sticky and plastic; few fine roots; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--22 to 60 inches; gray (5Y 5/1) clay loam, light gray (5Y 7/2) dry; many coarse prominent yellowish brown (10YR 5/6) redox concentrations; massive; very hard, firm, sticky and plastic; about 5 percent pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MINNEWAUKAN.json b/inst/extdata/OSD/M/MINNEWAUKAN.json index c901992e8c..fac4cd793d 100644 --- a/inst/extdata/OSD/M/MINNEWAUKAN.json +++ b/inst/extdata/OSD/M/MINNEWAUKAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 3 inches; black (10YR 2/1) loamy fine sand, dark gray (10YR 4/1) dry; weak fine subangular blocky and granular structure; soft, very friable, slightly sticky and nonplastic; many roots; about 1 percent gravel; slight effervescence; slightly alkaline; abrupt smooth boundary. (1 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--3 to 5 inches; dark grayish brown and very dark grayish brown (2.5Y 4/2 and 2.5Y 3/2) loamy coarse sand, grayish brown (2.5Y 5/2) dry; single grained; nonsticky and nonplastic; many roots; about 15 percent gravel; slight effervescence; slightly alkaline; clear smooth boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--5 to 16 inches; dark grayish brown with olive brown (2.5Y 4/2 with 2.5Y 4/4) loamy sand, light brownish gray (2.5Y 6/2) dry; many fine distinct dark yellowish brown (10YR 4/4) mottles; weak coarse prismatic structure parting to weak medium subangular blocky; soft, very friable, slightly sticky and nonplastic; few roots; about 1 percent gravel; slight effervescence; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--16 to 28 inches; olive gray and olive (5Y 4/2 and 5Y 4/3) loamy sand, light gray and light olive gray (5Y 6/1 and 5Y 6/2) dry; very weak coarse prismatic structure; slightly sticky and nonplastic; few fine roots; about 10 percent pebbles; about 30 percent of sand and pebbles are shale fragments; few fine masses of carbonate; slight effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg2--28 to 36 inches; olive gray and gray (5Y 5/2 and 5Y 5/1) fine sand, light gray (5Y 7/2) dry; single grained; nonsticky and nonplastic; about 1 percent gravel; slight effervescence; slightly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--36 to 50 inches; dark brown (10YR 3/3) fine sand, brown (10YR 4/3 and 10YR 5/3) dry; single grained; nonsticky and nonplastic; few small iron and manganese concretions; slight effervescence; moderately alkaline." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg4--50 to 60 inches; olive (5Y 4/3) fine sand, pale olive (5Y 6/3) dry; single grained; nonsticky and nonplastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MINOT.json b/inst/extdata/OSD/M/MINOT.json index acbf5b33e9..0f1051e68e 100644 --- a/inst/extdata/OSD/M/MINOT.json +++ b/inst/extdata/OSD/M/MINOT.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss1-- 21 to 63 cm, brown (10YR 4/3) silty clay, brown (10YR 5/3) dry; weak medium prismatic structure parting to moderate medium subangular blocky structure; firm, moderately hard; moderately sticky and moderately plastic; few very fine roots throughout; few very fine low-continuity tubular pores; slight effervescence; few intersecting slickensides; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss2-- 63 to 98 cm; olive brown (2.5Y 4/3) silty clay, light olive brown (2.5Y 5/3) dry; weak medium prismatic structure parting to moderate medium subangular blocky structure; firm, moderately hard; moderately sticky and moderately plastic; few very fine roots throughout; few very fine low-continuity tubular pores; slight effervescence; few intersecting slickensides; moderately alkaline; clear wavy boundary. (Combined thickness of the Bss horizons ranges from 25 to 175 cm)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1-- 98 to 127 cm; olive brown (2.5Y 4/3) silty clay, light olive brown (2.5Y 5/3) dry; weak coarse prismatic structure parting to moderate medium subangular blocky structure; firm, moderately hard; moderately sticky and moderately plastic; 5 percent soft masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2-- 127 to 157 cm; dark grayish brown (2.5Y 4/2) silty clay, grayish brown (2.5Y 5/2) dry; 2 percent fine distinct dark yellowish brown (10YR 4/4) redoximorphic concentrations and 2 percent fine faint dark gray (10YR 4/1) redoximorphic depletions; weak coarse prismatic structure parting to moderate medium subangular blocky structure; firm, moderately hard; moderately sticky and moderately plastic; 5 percent soft masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Bk horizons is 0 to 90cm)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--157 to 200 cm; dark grayish brown (2.5Y 4/2) silty clay, grayish brown (2.5Y 5/2) dry; 4 percent medium prominent dark yellowish brown (10YR 4/6) redoximorphic concentrations and 2 percent fine faint dark gray (10YR 4/1) redoximorphic depletions; massive; firm, moderately hard; moderately sticky and moderately plastic; thin lenses of very fine sand; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MINWELLS.json b/inst/extdata/OSD/M/MINWELLS.json index 6d92f35f9e..df18dcfbf1 100644 --- a/inst/extdata/OSD/M/MINWELLS.json +++ b/inst/extdata/OSD/M/MINWELLS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--117 to 145 cm (46 to 57 in); yellowish red (5YR 5/6) sandy clay loam, yellowish red (5YR 4/6) moist with red (2.5YR 4/6) coatings on exteriors of the peds; weak fine subangular blocky structure; few fine roots along the faces of prisms; few medium and coarse pores, common fine pores; few medium rounded siliceous pebbles; common threads, films and soft bodies of calcium carbonate on faces of the prisms; weak effervescence; moderately alkaline; clear wavy boundary. (25 to 51 cm [10 to 20 in] thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--145 to 180 cm (57 to 71 in); yellowish red (5YR 5/6) gravelly sandy clay loam, yellowish red (5YR 4/6) moist; weak fine subangular blocky structure; hard, firm; few fine roots; few fine tubes and pores; the upper part contains an estimated 30 percent rounded siliceous pebbles and angular sandstone, limestone, and chert fragments up to 3 cm (1 in) in diameter, the lower part contains approximately 50 percent by volume of pebbles; moderately alkaline; strong effervescence; gradual wavy boundary. (0 to 76 cm [0 to 30 in] thick)" @@ -227,7 +227,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Ck1--180 to 203 cm (71 to 80 in); red (2.5YR 5/8) very gravelly sand, red (2.5YR 4/8) moist; massive; hard, friable; few fine roots in upper part; estimated 60 percent rounded siliceous pebbles and angular limestone and chert fragments from 2 to 102 mm (4 in) in diameter; the underside of the larger coarse fragments contain pendants and coatings of calcium carbonate; lower 8 cm (3 in) of the horizon is partially cemented together with calcium carbonate; moderately alkaline; strong effervescence; clear wavy boundary. (23 to 76 cm [9 to 30 in] thick)" @@ -250,7 +250,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Ck2--203 to 224 cm (80 to 88 in); reddish yellow (5YR 7/6) very gravelly sand, reddish yellow (5YR 6/6) moist; massive to single grained; loose; estimated 60 percent fragments of limestone, sandstone and rounded siliceous pebbles; the underside of the larger fragments are coated with calcium carbonate; moderately alkaline; strong effervescence." diff --git a/inst/extdata/OSD/M/MIRANDA.json b/inst/extdata/OSD/M/MIRANDA.json index 9c3467d697..0d9d196867 100644 --- a/inst/extdata/OSD/M/MIRANDA.json +++ b/inst/extdata/OSD/M/MIRANDA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkz--16 to 30 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct strong brown (7.5YR 5/8) moist redox concentrations; weak coarse blocky structure; hard, firm, sticky and plastic; common fine accumulations of salts; common fine accumulations of carbonate; strong effervescence; strongly alkaline; clear smooth boundary. (6 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--30 to 38 inches; pale yellow (2.5Y 7/4) clay loam, light olive brown (2.5Y 5/4) moist; few fine distinct strong brown (7.5YR 5/8) moist redox concentrations and common medium distinct light gray (10YR 7/1) moist redox depletions; massive; hard, firm, sticky and plastic; common fine streaks of salt and gypsum; common medium accumulations of carbonate; strong effervescence; strongly alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--38 to 60 inches; pale yellow (2.5Y 7/4) clay loam, light olive brown (2.5Y 5/4) moist; few fine distinct strong brown (7.5YR 5/8) moist redox concentrations and many fine distinct light gray (10YR 7/1) moist redox depletions; massive; hard, firm, sticky and plastic; few fine streaks of gypsum; common medium accumulations of carbonate; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/M/MIRASOL.json b/inst/extdata/OSD/M/MIRASOL.json index c63d895311..e926167cad 100644 --- a/inst/extdata/OSD/M/MIRASOL.json +++ b/inst/extdata/OSD/M/MIRASOL.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkqm--41 to 48 cm (16 to 19 in); light yellowish brown (2.5Y 6/4) strongly cemented duripan, light olive brown (2.5Y 5/4) moist; massive; with plates 12 to 25 mm (1/4 to 1 in) thick that have patchy coating of calcium carbonate; extremely hard, extremely firm; many fine and medium roots matted on top of laminar cap; laminar cap is 6 to 12 mm (1/4 to 1/2 in) thick; many fine and very fine roots matted on top of laminar cap; violently effervescent along laminar cap; duripan material is noneffervescent; moderately alkaline; clear wavy boundary. (thickness of the Bkqm horizon is 5 to 10 cm [2 to 4 in])" diff --git a/inst/extdata/OSD/M/MISERY.json b/inst/extdata/OSD/M/MISERY.json index 467f1fdb33..62488f7eaf 100644 --- a/inst/extdata/OSD/M/MISERY.json +++ b/inst/extdata/OSD/M/MISERY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 60 inches; reddish brown (2.5YR 4/4) loam; massive; friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MISSLER.json b/inst/extdata/OSD/M/MISSLER.json index 4aa2c550a9..60b6f91313 100644 --- a/inst/extdata/OSD/M/MISSLER.json +++ b/inst/extdata/OSD/M/MISSLER.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B2--13 to 24 inches; grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate medium granular structure; hard, firm; few fine roots and pores; few worm casts; slight effervescence; moderately alkaline; gradual smooth boundary. (7 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--24 to 60 inches; pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; weak medium granular structure; hard, firm; many pores; few threads of lime; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MITCHELL.json b/inst/extdata/OSD/M/MITCHELL.json index b0e553a6d2..e9f30a0fa4 100644 --- a/inst/extdata/OSD/M/MITCHELL.json +++ b/inst/extdata/OSD/M/MITCHELL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 23 centimeters (0 to 9 inches); light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium granular structure; slightly hard, friable; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--23 to 28 centimeters (9 to 11 inches); light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure; slightly hard, friable; strong effervescence; moderately alkaline; abrupt smooth boundary. (Combined thickness of the A horizon is 10 to 30 centimeters (4 to 12 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--28 to 48 centimeters (ll to 19 inches); light gray (10YR 7/2) silt loam, grayish brown (10YR 5/2) moist; weak medium subangular blocky structure; slightly hard, friable; violent effervescence; moderately alkaline; clear smooth boundary. (8 to 30 centimeters (3 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cl--48 to 74 centimeters (l9 to 29 inches); very pale brown (10YR 8/2) silt loam; light brownish gray (10YR 6/2) moist; weak coarse subangular blocky structure; slightly hard, friable; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--74 to 152 centimeters (29 to 60 inches); very pale brown (10YR 8/2) silt loam, light brownish gray (10YR 6/2) moist; massive; soft, very friable; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MIVIDA.json b/inst/extdata/OSD/M/MIVIDA.json index 250245032e..1bc736feef 100644 --- a/inst/extdata/OSD/M/MIVIDA.json +++ b/inst/extdata/OSD/M/MIVIDA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--7 to 16 inches (19 to 41 cm); reddish yellow (5YR 6/6) very fine sandy loam, yellowish red (5YR 4/6) moist; weak medium subangular blocky structure; slightly hard, very friable; common very fine and fine and few medium roots; few fine tubular pores; moderately effervescent, 6 percent calcium carbonate equivalent, carbonates are disseminated; strongly alkaline (pH 8.5); clear smooth boundary. (6 to 21 inches/15 to 53 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw2--16 to 22 inches (41 to 56 cm); reddish yellow (5YR 6/6) very fine sandy loam, yellowish red (5YR 4/6) moist; moderate medium subangular blocky structure; hard, friable; few very fine and fine roots; common very fine and few fine pores; moderately effervescent, 5 percent calcium carbonate equivalent, carbonates are disseminated; strongly alkaline (pH 8.6); abrupt wavy boundary. (0 to 18 inches/0 to 46 cm thick)" diff --git a/inst/extdata/OSD/M/MOBRIDGE.json b/inst/extdata/OSD/M/MOBRIDGE.json index 730b23a6e1..45537b05c1 100644 --- a/inst/extdata/OSD/M/MOBRIDGE.json +++ b/inst/extdata/OSD/M/MOBRIDGE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--25 to 30 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure parting to weak medium and coarse subangular blocky; hard, friable, slightly sticky and slightly plastic; few fine accumulations of carbonate; strong effervescence; slightly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--30 to 42 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; few fine distinct mottles of yellowish brown (10YR 5/6) moist; weak coarse subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common medium and few coarse accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined Bk horizon is 8 to 36 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--42 to 60 inches; light brownish gray (2.5Y 6/2) silty clay loam, containing very thin laminae of very fine sand and silt, dark grayish brown (2.5Y 4/2) moist; common fine distinct mottles of yellowish brown (10YR 5/6) and few fine distinct mottles of gray (10YR 5/1) moist; massive; hard, friable, slightly sticky and slightly plastic; few fine accumulations of carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MODKIN.json b/inst/extdata/OSD/M/MODKIN.json index 09e2275254..18a6d10652 100644 --- a/inst/extdata/OSD/M/MODKIN.json +++ b/inst/extdata/OSD/M/MODKIN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--28 to 32 inches; white (10YR 8/2) sandy loam, light brownish gray (10YR 6/2) moist; massive; hard, friable; few very fine and fine roots; 10 percent basalt pebbles; violent effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary. (4 to 25 inches thick)" diff --git a/inst/extdata/OSD/M/MOKULEIA.json b/inst/extdata/OSD/M/MOKULEIA.json index dd2d74b01e..de54f5a72a 100644 --- a/inst/extdata/OSD/M/MOKULEIA.json +++ b/inst/extdata/OSD/M/MOKULEIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap--0 to 16 inches; very dark grayish brown (10YR 3/2) clay loam, dark grayish brown (10YR 4/2) dry; moderate very fine and fine granular and subangular blocky structure; hard, firm, sticky and plastic; common fine roots; many very fine and fine interstitial pores, few fine and very fine tubular pores; common worm holes and casts; about 25 percent coral sand; slight effervescence with hydrogen peroxide; violent effervescence with hydrochloric acid; neutral (pH 7.2); abrupt wavy boundary. (10 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "IIC1--16 to 22 inches; dark brown (10YR 4/3) loamy sand, brown (10YR 5/3) dry; massive; soft, slightly hard; common fine roots; porous, few chunks of reef limestone; about 80 percent coral sand; violent effervescence with hydrochloric acid; moderately alkaline (pH 8.2); abrupt smooth boundary. (6 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC2--22 to 50 inches; light gray (10YR 7/2) dry and moist coral sand; single grained; loose; few fine roots; porous; few chunks of coral; violent effervescence with hydrochloric acid; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/M/MOLINE.json b/inst/extdata/OSD/M/MOLINE.json index 33d87f805f..94ac30ba42 100644 --- a/inst/extdata/OSD/M/MOLINE.json +++ b/inst/extdata/OSD/M/MOLINE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "2B2--52 to 65 inches; reddish brown (2.5YR 4/4) clay; strong medium and coarse subangular blocky structure; very firm; many gray (10YR 6/1) calcium carbonate concretions; moderately effervescent; slightly alkaline; gradual wavy boundary. (Combined thickness of the B and 2B horizons is 15 to 51 inches.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2BC--65 to 75 inches; reddish brown (2.5YR 4/4) clay, with several thin (less than 1 cm) olive gray (5Y 5/2) bands of silt loam in the lower part; weak coarse subangular blocky structure; firm; moderately effervescent; slightly alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Cg--75 to 100 inches; light brownish gray (2.5Y 6/2) silt loam; massive; friable; many coarse prominent brownish yellow (10YR 6/8) masses of iron accumulation; moderately effervescent; slightly alkaline." diff --git a/inst/extdata/OSD/M/MOLOKAI.json b/inst/extdata/OSD/M/MOLOKAI.json index 298ff03719..a3d6f6d53d 100644 --- a/inst/extdata/OSD/M/MOLOKAI.json +++ b/inst/extdata/OSD/M/MOLOKAI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.4, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 18 cm (0 to 7 inches); dark reddish brown (2.5YR 3/4) silty clay loam, dark red (2.5YR 3/6) dry; weak very fine, fine and medium granular structure; slightly hard, friable, slightly sticky and moderately plastic; many roots; many interstitial pores; many very fine black concretions that effervesce with hydrogen peroxide; strong effervescence with hydrogen peroxide; extremely acid (pH 4.4); clear wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 4.6, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--18 to 38 cm (7 to 15 inches); dark reddish brown (2.5YR 3/4) silty clay loam, dark red (2.5YR 3/6) dry; weak medium and coarse subangular blocky structure parting to moderate fine and very fine granular; slightly hard, friable, slightly sticky and moderately plastic; common roots; common very fine tubular and interstitial pores; common fine black concretions; violent effervescence with hydrogen peroxide; very strongly acid (pH 4.6); clear smooth boundary. (Combined thickness of the A horizon ranges from 15 to 23 cm (8 to 9 inches thick)." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bto1--38 to 89 cm (15 to 35 inches); dark reddish brown (2.5YR 3/4) silty clay loam, red (2.5YR 4/6) dry; weak coarse prismatic structure parting to weak coarse subangular blocky; slightly hard, friable, moderately sticky and moderately plastic; many very fine and fine tubular pores; few shiny patchy faces on prisms; common fine black concretions; strong effervescence with hydrogen peroxide; slightly acid (pH 6.5); gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bto2--89 to 163 cm (35 to 64 inches); dark reddish brown (2.5YR 3/4) silty clay loam, red (2.5YR 4/6) dry; weak coarse prismatic structure parting to strong very fine and fine subangular blocky; moderately compact in place, slightly hard, firm, moderately sticky and moderately plastic; many very fine and common fine tubular pores; common patchy pressure faces on peds; common patchy clay films on faces of peds; few very fine black concretions; moderate effervescence with hydrogen peroxide; neutral (pH 6.6); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bto3--163 to 183 cm (64 to 72 inches); dark reddish brown (5YR 3/3) clay loam, dark reddish brown (5YR 3/4) dry; moderate fine and very fine subangular blocky and angular blocky structure; slightly hard, friable, slightly sticky and moderately plastic; common very fine and fine tubular pores; thin patchy clay films on peds; red (2.5YR 4/6) clay films lining larger pores; common hard earthy lumps; few very fine black concretions; slight effervescence with hydrogen peroxide; neutral (pH 6.6). (Combination thickness of the Bo horizons is 36 to 76 cm (14 to 30 inches) thick)." diff --git a/inst/extdata/OSD/M/MONDAMIN.json b/inst/extdata/OSD/M/MONDAMIN.json index 377a759784..b00650d215 100644 --- a/inst/extdata/OSD/M/MONDAMIN.json +++ b/inst/extdata/OSD/M/MONDAMIN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--13 to 21 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to moderate medium and coarse blocky and subangular blocky; hard, firm, sticky and plastic; common tongues (1/4 to 1 inch wide) of dark grayish brown (10YR 4/2), very dark brown (10YR 2/2) moist; many very fine striations and few fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--21 to 35 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium and coarse subangular blocky; hard, firm, sticky and plastic; few tongues (1/4 to 1/2 inch wide) of dark grayish brown (10YR 4/2), very dark brown (l0YR 2/2) moist; common medium and coarse accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--35 to 43 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; many fine distinct mottles of light gray (10YR 7/1) and brownish yellow (10YR 6/6); weak fine subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizon is 16 to 39 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--43 to 55 inches; light gray (2.5Y 7/2) and light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; many medium distinct mottles of light gray (10YR 7/1) and brownish yellow (10YR 6/6); massive; slightly hard, very friable, slightly sticky and slightly plastic; thin lenses of very fine sand and fine sand; slight effervescence; moderately alkaline; clear wavy boundary. (0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--55 to 60 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; common fine distinct mottles of light gray (10YR 7/1) and brownish yellow (10YR 6/6); massive; slightly hard, very friable, slightly sticky and slightly plastic; thin lenses of very fine sand and fine sand; common medium accumulations of gypsum; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MONIA.json b/inst/extdata/OSD/M/MONIA.json index b2d21fb870..24d9fb4401 100644 --- a/inst/extdata/OSD/M/MONIA.json +++ b/inst/extdata/OSD/M/MONIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 28 cm (0 to 11 in); dark brown (7.5YR 3/4) loamy fine sand, brown (7.5YR 4/4) moist; single grained; loose, nonsticky, nonplastic; many fine roots; slight effervescence; slightly alkaline; clear smooth boundary. (20 to 38 cm [8 to 15 in] thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--28 to 50 cm (11 to 20 in); brown (7.5YR 5/3), brown (7.5YR 4/3) moist; fine sandy loam; weak fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common fine and medium roots; few fine tubular pores; 5 percent carbonates, finely disseminated throughout; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--50 to 100 cm (20 to 39 in); light brown (7.5YR 6/4) brown (7.5YR 5/3) moist; fine sandy loam; weak fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common fine and few medium roots; few fine tubular pores; 10 percent carbonate, finely disseminated throughout and 8 percent medium irregular carbonate masses throughout; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk3--100 to 140 cm (39 to 55 in); brown (7.5YR 6/4), brown (7.5YR 5/4) moist; moderate medium subangular blocky structure; hard, firm, moderately sticky, moderately plastic; few fine roots; few fine tubular pores; 10 percent carbonate, finely disseminated throughout and 12 percent medium irregular carbonate masses throughout; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk5--185 to 203 centimeters (73 to 80 inches); reddish yellow (7.5YR 6/6), strong brown (7.5YR 5/6), moist; clay loam; weak, medium subangular blocky structure; very hard, very firm, very sticky, very plastic; few very fine roots; 10 percent carbonate, finely disseminated throughout and 12 percent medium irregular carbonate masses throughout, violent effervescence; moderately alkaline." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk4--140 to185cm (55 to 73 inches); reddish yellow (7.5YR 6/6), strong brown (7.5YR 5/6), moist; sandy clay loam; moderate medium subangular blocky structure, hard, firm, moderately sticky, moderate plastic; few fine roots; 10 percent carbonate, finely disseminated throughout and 22 percent medium irregular carbonate masses throughout; violent effervescence; moderately alkaline; clear smooth boundary. (165 to 183 cm [64 to 72 in] thick)" diff --git a/inst/extdata/OSD/M/MONOWI.json b/inst/extdata/OSD/M/MONOWI.json index 649308a091..b8e1975a92 100644 --- a/inst/extdata/OSD/M/MONOWI.json +++ b/inst/extdata/OSD/M/MONOWI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 10 centimeters; dark grayish brown (10YR 4/2) silty clay, dark grayish brown (10YR 4/2) moist; weak fine granular structure; slightly hard friable; many fine and medium roots; strong effervescence; moderately alkaline; abrupt smooth boundary. (8 to 15 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--10 to 20 centimeters; grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; weak coarse subangular blocky structure parting to weak medium and fine subangular; hard, firm; many very fine and few fine roots; strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 20 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BA--20 to 36 centimeters; light olive brown (2.5Y 5/4) silty clay, olive brown (2.5Y 4/4) moist; weak coarse subangular blocky structure parting to moderate medium and fine angular blocky; hard, firm; few fine and medium roots; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 15 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw--36 to 71 centimeters; light yellowish brown to light olive brown (2.5Y 5/4) clay; olive brown (2.5Y 4/4) moist; weak coarse prismatic structure parting to moderate fine angular blocky; very hard, very firm; few fine roots; strong effervescence; moderately alkaline; smooth boundary. (15 to 38 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--71 to 84 centimeters; light yellowish brown (2.5Y 6/4) clay; light olive brown (2.5Y 5/4) moist; massive; hard, firm; few very fine roots moving between parallel shale plates; many fine shale fragments; common carbonate masses and gypsum crystals interspersed with clay; strong effervescence; moderately alkaline; gradual smooth boundary. (8 to 38 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--84 to 200 centimeters; pale yellow (2.5Y 7/4) bedded shale; light olive brown (2.5Y 5/4) moist; massive breaking to moderate medium and coarse platy fragments; hard, firm; few very fine roots between parallel shale plates; many carbonate masses and gypsum and carbonate crystals in seams; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MOODY.json b/inst/extdata/OSD/M/MOODY.json index 44e6e78542..1fe1c8dd9e 100644 --- a/inst/extdata/OSD/M/MOODY.json +++ b/inst/extdata/OSD/M/MOODY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--35 to 48 inches; light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; few fine prominent yellowish brown (10YR 5/6) redox concentrations and gray (5Y 6/1) redox depletions; weak coarse subangular blocky structure; slightly hard, friable; common fine and medium accumulations of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (8 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; very pale brown (10YR 7/4) silt loam, light olive brown (2.5Y 5/4) moist; few fine prominent gray (5Y 6/1) redox depletions, yellowish brown (10YR 5/6) and very dark brown (10YR 2/2) redox concentrations; massive; slightly hard, friable; few fine accumulations of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MORBENCH.json b/inst/extdata/OSD/M/MORBENCH.json index e4a7b24e98..5e0ac654e6 100644 --- a/inst/extdata/OSD/M/MORBENCH.json +++ b/inst/extdata/OSD/M/MORBENCH.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bq--127 to 152 cm; pale brown (10YR 6/3) very gravelly sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; many very fine, fine and medium interstitial pores; 40 percent gravel and 5 percent cobbles; 15 percent weak discontinuous silica cementation; strongly effervescent with noneffervescent spots; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/M/MOREAU.json b/inst/extdata/OSD/M/MOREAU.json index 249fbd22cd..db8cf5c721 100644 --- a/inst/extdata/OSD/M/MOREAU.json +++ b/inst/extdata/OSD/M/MOREAU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap--0 to 6 inches; dark grayish brown (2.5Y 4/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; weak fine granular structure; slightly hard, friable, very sticky and very plastic; few very fine roots; slight effervescence; slightly alkaline; abrupt wavy boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--6 to 13 inches; light olive brown (2.5Y 5/3) silty clay, olive brown (2.5Y 4/3) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm, very sticky and very plastic; few very fine roots; 1 to 2 inch wide cracks filled with A material throughout; strong effervescence; slightly alkaline; clear wavy boundary. (0 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--13 to 27 inches; light yellowish brown (2.5Y 6/3) silty clay, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, firm, very sticky and very plastic; 1 to 2 inch wide cracks filled with A material in upper 10 inches; common medium irregularly shaped masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--27 to 35 inches; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure; slightly hard, firm, very sticky and very plastic; common olive yellow (2.5Y 6/6) iron stains; about 50 percent fine fragments of unweathered shale; few medium irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--35 to 60 inches; light olive gray (5Y 6/2) soft shale, olive gray (5Y 4/2) moist; common olive yellow (2.5Y 6/6) iron stains between bedrock laminations; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MORITZ.json b/inst/extdata/OSD/M/MORITZ.json index 33fdc72621..8d8b9a007b 100644 --- a/inst/extdata/OSD/M/MORITZ.json +++ b/inst/extdata/OSD/M/MORITZ.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 9 inches; black (10YR 2/1) loam, dark gray (10YR 4/1) dry; weak medium and fine granular structure; slightly hard, friable; slightly sticky and slightly plastic; few very fine roots; strong effervescence (10 percent calcium carbonate equivalent); slightly alkaline; abrupt smooth boundary. (7 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "ABk--9 to 13 inches; very dark gray (10YR 3/1) and grayish brown (2.5Y 5/2) clay loam, dark gray (10YR 4/1) and light brownish gray (2.5Y 6/2) dry; weak medium subangular blocky structure; slightly hard, friable; slightly sticky and slightly plastic; few very fine roots; common fine vesicular and tubular pores; many medium and coarse soft accumulations of carbonate; violent effervescence (30 percent calcium carbonate equivalent); moderately alkaline; abrupt irregular boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--13 to 26 inches; grayish brown (2.5Y 5/2) loam, light brownish gray (2.5Y 6/2) dry; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable; slightly sticky and slightly plastic; few very fine roots; many fine vesicular and tubular pores; many fine soft accumulations of carbonate; violent effervescence (30 percent calcium carbonate equivalent); moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--26 to 44 inches; light olive brown (2.5Y 5/3) loam, light brownish gray (2.5Y 6/2) dry; few fine prominent yellowish brown (10YR 5/6) mottles; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable; slightly sticky and slightly plastic; common fine vesicular and tubular pores; many fine soft accumulations of carbonate; violent effervescence (25 percent calcium carbonate equivalent); moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk3--44 to 54 inches; olive (5Y 5/3) loam, light olive gray (5Y 6/2) dry; common fine distinct olive brown (2.5Y 4/4) mottles; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable; common fine vesicular and tubular pores; many fine soft accumulations of carbonate; violent effervescence (15 percent calcium carbonate equivalent); moderately alkaline; abrupt wavy boundary. (Combined thickness of the Bk horizons is 5 to 50 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--54 to 63 inches; olive gray (5Y 5/2) stratified loam and sandy loam; light olive gray (5Y 6/2) dry; common fine prominent light olive brown (2.5Y 5/6) mottles; massive; slightly hard, very friable; few fine vesicular and tubular pores; common fine accumulations of carbonate; strong effervescence (10 percent calcium carbonate equivalent); moderately alkaline; abrupt smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Ab--63 to 70 inches; very dark gray (5Y 3/1) silty clay loam, dark gray (5Y 4/1) dry; common fine prominent olive brown (2.5Y 4/4) mottles; moderate medium prismatic structure parting to fine and medium subangular blocky; hard, firm; slightly sticky and slightly plastic; few fine vesicular pores; few fine accumulations of carbonate; strong effervescence (5 percent calcium carbonate equivalent); moderately alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C--70 to 87 inches; olive gray (5Y 4/2) silty clay loam, light olive gray (5Y 6/2) dry; common fine prominent olive brown (2.5Y 4/4) mottles; massive; hard, friable; slightly sticky and slightly plastic; few fine vesicular and tubular pores; few fine accumulations of carbonate; strong effervescence (10 percent calcium carbonate equivalent); moderately alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/M/MORPH.json b/inst/extdata/OSD/M/MORPH.json index 01bd024f08..318a75349e 100644 --- a/inst/extdata/OSD/M/MORPH.json +++ b/inst/extdata/OSD/M/MORPH.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC--33 to 40 inches; grayish brown (2.5Y 5/2) sandy loam; few medium faint light olive brown (2.5Y 5/4) mottles; weak coarse and very coarse subangular blocky structure; friable; common roots; few distinct clay films; slight effervescence; mildly alkaline; clear wavy boundary. (0 to 11 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--40 to 60 inches; stratified light brownish gray (2.5Y 6/2 and 6/1) and grayish brown (2.5Y 5/2) silt loam, very fine sandy loam, and loamy fine sand; common medium faint light olive brown (2.5Y 5/4) and prominent yellowish brown (10YR 5/6 and 5/8) mottles; massive; friable; many light gray (2.5Y 7/2) and white (2.5Y 8/2) soft rounded masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MORSET.json b/inst/extdata/OSD/M/MORSET.json index aafc80e804..9dcbbb424a 100644 --- a/inst/extdata/OSD/M/MORSET.json +++ b/inst/extdata/OSD/M/MORSET.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk2--18 to 33 inches, very pale brown (10YR 8/2) loam, light gray (10YR 7/2) moist; massive; very hard, firm, slightly sticky, slightly plastic; 10 percent gravel; visible secondary calcium carbonate occurring mostly as finely divided marl-like forms permeating the entire horizon; calcium carbonate equivalent approximately 30 percent; violent effervescence; strongly alkaline (pH 8.6); diffuse wavy boundary. (6 to 24 inches thick)" diff --git a/inst/extdata/OSD/M/MORTON.json b/inst/extdata/OSD/M/MORTON.json index 586b515e1e..1bb0edca18 100644 --- a/inst/extdata/OSD/M/MORTON.json +++ b/inst/extdata/OSD/M/MORTON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--15 to 18 inches; light olive brown (2.5Y 5/4) silty clay loam, dark grayish brown (2.5Y 4/2) moist; few very dark grayish brown (10YR 3/2) moist coatings on faces of peds; moderate medium subangular blocky structure; hard, friable; common roots; many fine pores; few faint clay films on faces of peds; few masses of carbonates; slight effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--18 to 33 inches; light gray (2.5Y 7/2) loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; hard, friable; few fine roots; common fine pores; many large masses of carbonates; violent effervescence; moderately alkaline; clear smooth boundary. (Combined Bk horizons 2 to 20 inches thick)" diff --git a/inst/extdata/OSD/M/MOSBY.json b/inst/extdata/OSD/M/MOSBY.json index 57f5093d6e..370b134926 100644 --- a/inst/extdata/OSD/M/MOSBY.json +++ b/inst/extdata/OSD/M/MOSBY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A1--0 to 3 inches; light yellowish brown (2.5Y 6/3) silty clay loam, olive brown (2.5Y 4/3) moist; moderate fine granular structure: hard, very friable, sticky and plastic; strong effervescence; clear boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B2--3 to 25 inches; pale yellow (5Y 7/3) heavy silty clay loam, pale olive and olive (5Y 6/3 and 5/3) moist; weak medium and coarse prismatic structure; very hard, friable, sticky and plastic; strong effervescence; a few shale chips in lower part; clear boundary. (18 to 28 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "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)" diff --git a/inst/extdata/OSD/M/MOSHER.json b/inst/extdata/OSD/M/MOSHER.json index 0b14ec6f7a..540f6f1bd6 100644 --- a/inst/extdata/OSD/M/MOSHER.json +++ b/inst/extdata/OSD/M/MOSHER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Btnz--16 to 33 inches; grayish brown (10YR 5/2) clay loam, very dark grayish brown (2.5Y 3/2) moist; moderate medium blocky and subangular blocky structure; very hard, friable, sticky and plastic; common fine accumulations of salts in the upper part, few in the lower part; slight effervescence; strongly alkaline; clear irregular boundary. (0 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--33 to 55 inches; white (10YR 8/1) silty clay loam, light gray (10YR 7/2) moist; weak coarse subangular blocky; hard, friable, sticky and plastic; common fine accumulations of carbonates and salts; strong effervescence; strongly alkaline; gradual wavy boundary. (5 to 36 inches)" diff --git a/inst/extdata/OSD/M/MOSTVAL.json b/inst/extdata/OSD/M/MOSTVAL.json index 3beee3f629..a160ff3770 100644 --- a/inst/extdata/OSD/M/MOSTVAL.json +++ b/inst/extdata/OSD/M/MOSTVAL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 5 cm; dark gray (10YR 4/1) mucky loam, black (10YR 2/1) moist; weak fine and medium granular structure; soft, very friable, nonsticky and nonplastic; many very fine and fine roots; common very fine interstitial pores; strong effervescence; moderately alkaline (pH 8.0); clear smooth boundary. (5 to 8 cm thick)" diff --git a/inst/extdata/OSD/M/MOTT.json b/inst/extdata/OSD/M/MOTT.json index 379e099312..49a101dc61 100644 --- a/inst/extdata/OSD/M/MOTT.json +++ b/inst/extdata/OSD/M/MOTT.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--46 to 60 inches; light gray (2.5Y 7/2) loamy coarse sand, grayish brown (2.5Y 5/2) moist; massive; slightly hard, loose, nonsticky and nonplastic; few small masses of carbonate; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/M/MOTTLAND.json b/inst/extdata/OSD/M/MOTTLAND.json index 7c5fb7c1be..26033ba3a9 100644 --- a/inst/extdata/OSD/M/MOTTLAND.json +++ b/inst/extdata/OSD/M/MOTTLAND.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; very dark grayish brown (10YR 3/2) loam, dark grayish brown (10YR 4/2) dry; weak fine granular structure; friable; violent effervescence; moderately alkaline; abrupt smooth boundary. (7 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--7 to 11 inches; yellowish brown (10YR 5/6) loam; weak fine subangular structure; friable; soft limestone fragments comprise about 12 percent by volume; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 11 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--11 to 60 inches; yellowish brown (10YR 5/6) channery fine sandy loam; massive; friable; roots common to 20 inches and few to 48 inches; soft limestone fragments comprise about 20 percent by volume; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MOUNDHAVEN.json b/inst/extdata/OSD/M/MOUNDHAVEN.json index 0973e6d276..b9c5244678 100644 --- a/inst/extdata/OSD/M/MOUNDHAVEN.json +++ b/inst/extdata/OSD/M/MOUNDHAVEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap--0 to 14 inches; brown (10YR 4/3) sandy loam, pale brown (10YR 6/3) dry; weak medium granular structure; friable; many fine roots; strong effervescence; mildly alkaline; abrupt wavy boundary. (8 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--19 to 26 inches; stratified yellowish brown (10YR 5/6) sand and brown (10YR 4/3) sandy loam, 80 percent is sand strata; weak medium granular structure in sandy loam and single grain in sand; friable in sandy loam and loose in sand; many fine roots; strong effervescence, moderately alkaline; abrupt smooth boundary. (3 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C3--26 to 32 inches; yellowish brown (10YR 5/4) sand; single grain; loose; common fine roots; strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C4--32 to 35 inches; dark brown (10YR 3/3) silt loam; weak medium granular structure; friable; few fine roots strong effervescence; moderately alkaline; abrupt wavy boundary. (0 to 5 inches thick)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C5--35 to 38 inches; dark yellowish brown (10YR 4/4) loamy sand; weak medium granular structure; friable; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 5 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C6--38 to 60 inches; light yellowish brown; (10YR 6/4) sand; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MOUNDPRAIRIE.json b/inst/extdata/OSD/M/MOUNDPRAIRIE.json index 3a6b003129..cdb7e19591 100644 --- a/inst/extdata/OSD/M/MOUNDPRAIRIE.json +++ b/inst/extdata/OSD/M/MOUNDPRAIRIE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 10 inches; very dark gray (10YR 3/1) silty clay loam, gray (10YR 5/1) dry; common fine distinct dark brown (7.5YR 4/4) mottles; weak very fine granular structure; friable; few very fine roots; slight effervescence; mildly alkaline; clear smooth boundary. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg--10 to 40 inches; very dark gray (10YR 3/1) silt loam, gray (10YR 5/1) dry; with thin strata of dark gray (10YR 4/1) silt loam; gray (10YR 6/1) dry; common fine distinct dark yellowish brown (10YR 4/4) mottles; laminated; very friable; few very fine roots in upper part; strong effervescence; mildly alkaline; clear smooth boundary. (10 to 50 inches thick)" diff --git a/inst/extdata/OSD/M/MOUNTMUMMY.json b/inst/extdata/OSD/M/MOUNTMUMMY.json index 5864c71946..575c98a642 100644 --- a/inst/extdata/OSD/M/MOUNTMUMMY.json +++ b/inst/extdata/OSD/M/MOUNTMUMMY.json @@ -89,7 +89,7 @@ "cf_class": "extremely gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slightly effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; dark yellowish brown (10YR 4/4) extremely gravelly loam, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; soft, very friable, slightly sticky and nonplastic; few very fine roots throughout; common fine tubular and many very fine tubular pores; 60 percent pebbles, 5 percent cobbles and 1 percent stones; very slightly effervescence (35 percent calcium carbonate equivalent in the fine earth fraction); slightly alkaline (pH 7.8); clear smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk1--2 to 12 inches; yellowish brown (10YR 5/4) extremely gravelly loam, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; slightly hard, very friable, slightly sticky and nonplastic; common very fine through very coarse roots throughout; common very fine and fine tubular pores; 80 percent prominent white (10YR 8/1) calcium carbonate coats on bottom surfaces of rock fragments; 55 percent pebbles, 10 percent cobbles and 1 percent stones; slightly effervescence (50 percent calcium carbonate equivalent in the fine earth fraction); moderately alkaline (pH 7.9); abrupt smooth boundary. (4 to 13 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bk2--12 to 24 inches; light yellowish brown (10YR 6/4) extremely cobbly fine sandy loam, brown (10YR 4/3) moist; massive; moderately hard, very friable, slightly sticky and nonplastic; few very fine and fine roots and common medium and coarse roots throughout; many very fine pores; 50 percent 2 to 30 millimeter calcium carbonate masses, distinct, very pale brown (10YR 7/3) dry, brown (10YR 5/3) moist, irregular, in matrix around concentrations, moderately hard, diffuse; 90 percent fine prominent very pale brown (10YR 8/2) calcium carbonate pendants on bottom of rock fragments; 40 percent pebbles, 40 percent cobbles and 5 percent stones; violently effervescence (75 percent calcium carbonate equivalent in the fine earth fraction); moderately alkaline (pH 7.9); abrupt irregular boundary. (7 to 27 inches thick)" diff --git a/inst/extdata/OSD/M/MUDGEDRAW.json b/inst/extdata/OSD/M/MUDGEDRAW.json index ec982e109d..1163975739 100644 --- a/inst/extdata/OSD/M/MUDGEDRAW.json +++ b/inst/extdata/OSD/M/MUDGEDRAW.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cr--119 to 137 cm, (47 to 54 in); 70 percent strong brown (7.5YR 5/6) and 30 percent white (2.5Y 8/1), moderately cemented limestone bedrock, 70 percent strong brown (7.5YR 5/6) and 30 percent white (2.5Y 8/1), moist; strong effervescence; moderately alkaline; abrupt wavy boundary. (Thickness is 0 to 25 cm [0 to 10 in])." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--137 to 160 cm, (54 to 63 in); strongly cemented limestone bedrock; strong effervescence." diff --git a/inst/extdata/OSD/M/MUDGETTS.json b/inst/extdata/OSD/M/MUDGETTS.json index 8370d3ec7a..6e298f63a7 100644 --- a/inst/extdata/OSD/M/MUDGETTS.json +++ b/inst/extdata/OSD/M/MUDGETTS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "non effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 3 cm, (0 to 1.2 in); yellowish red (5YR 5/6) very fine sandy loam, dark reddish brown (5YR 3/3) moist; moderate medium platy structure; soft, very friable, slightly sticky and slightly plastic; common fine and very fine roots; few very fine irregularly shaped pores and few fine tubular pores; non effervescent (about1 percent calcium carbonate equivalent); five percent gravel; neutral (pH 7.3); clear smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "non effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--3 to 15 cm, (1.2 to 5.9 in); reddish brown (5YR 5/3) silt loam, dark reddish brown (5YR 3/3) moist; moderate coarse subangular blocky structure; very hard, friable, moderately sticky and moderately plastic; few fine and very fine roots; few medium and common fine tubular pores; non effervescent (about1 percent calcium carbonate equivalent); three percent gravel; neutral (pH 7.0); gradual smooth boundary. (3 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "non effervescent", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bw1--15 to 48 cm, (5.9 to 18.9 in); reddish brown (5YR 4/4) silt loam, dark reddish brown (5YR 3/4) moist; moderate medium prismatic structure parting to moderate fine wedge-shaped aggregates; very hard, friable, moderately sticky and moderately plastic; few fine and common very fine roots; few fine and medium tubular pores; many discontinuous, distinct pressure faces on vertical faces of peds; 3 reversible trans-horizon cracks per meter; non effervescent (about1 percent calcium carbonate equivalent); three percent gravel; neutral (pH 7.2); diffuse smooth boundary. (10 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "non effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw2--48 to 108 cm, (18.9 to 42.2 in); red (2.5YR 4/6) silty clay loam, dark reddish brown (2.5YR 3/4) moist; moderate medium prismatic structure parting to moderate fine wedge-shaped aggregates; extremely hard, friable, very sticky and very plastic; very few fine and common very fine roots; few fine and medium irregularly shaped pores along vertical ped faces; very many discontinuous, distinct pressure faces on vertical faces of peds; 3 reversible trans-horizon cracks per meter; non effervescent (about1 percent calcium carbonate equivalent); seven percent gravel; slightly alkaline (pH 7.4); abrupt smooth boundary. (20 to 30 inches thick)" diff --git a/inst/extdata/OSD/M/MUNJOR.json b/inst/extdata/OSD/M/MUNJOR.json index a964585a96..ebfcda177d 100644 --- a/inst/extdata/OSD/M/MUNJOR.json +++ b/inst/extdata/OSD/M/MUNJOR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 18 centimeters (0 to 7 inches); grayish brown (10YR 5/2) sandy loam, dark grayish brown (10YR 4/2) moist; weak medium granular structure; soft, very friable; few fine and medium roots; slight effervescence; moderately alkaline; gradual smooth boundary. (8 to 38 centimeters (3 to 15 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2C1--18 to 112 centimeters (7 to 44 inches); light brownish gray (10YR 6/2) sandy loam, grayish brown (10YR 5/2) moist; massive; soft, very friable; thin stratified layers of finer-textured and coarser-textured materials are throughout the horizon; strong effervescence; moderately alkaline; gradual smooth boundary. (38 to 127 centimeters (15 to 50 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--112 to 152 centimeters (44 to 60 inches); pale brown (10YR 6/3) sand, brown (10YR 5/3) moist; single grained; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/M/MURDO.json b/inst/extdata/OSD/M/MURDO.json index c7cee8b439..fe2c848fd0 100644 --- a/inst/extdata/OSD/M/MURDO.json +++ b/inst/extdata/OSD/M/MURDO.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--15 to 24 inches; brown (7.5YR 5/2) gravelly sand, dark brown (7.5YR 4/2) moist; single grain; loose; thick coats of carbonates on undersides of pebbles; strong effervescence; slightly alkaline; gradual wavy boundary. (6 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--24 to 60 inches; brown (7.5YR 5/2) gravelly sand, dark brown (7.5YR 4/2) moist; single grain; loose; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/M/MUSKELLUNGE.json b/inst/extdata/OSD/M/MUSKELLUNGE.json index 2429694448..f52f24c7e2 100644 --- a/inst/extdata/OSD/M/MUSKELLUNGE.json +++ b/inst/extdata/OSD/M/MUSKELLUNGE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--114 to 183 cm; dark yellowish brown (10YR 4/4) clay; massive structure; very firm; common medium and coarse distinct yellowish brown (10YR 5/6), moist, masses of oxidized iron; gray (5Y 5/1) on faces of common vertical desiccation cracks; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/N/NACHES.json b/inst/extdata/OSD/N/NACHES.json index 81fa2d880c..1122f3e942 100644 --- a/inst/extdata/OSD/N/NACHES.json +++ b/inst/extdata/OSD/N/NACHES.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--34 to 38 inches; light brownish gray (10YR 6/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; massive; soft, very friable, nonsticky and nonplastic; common roots; common fine pores; 5 percent pebbles; violent effervescence; moderately alkaline (pH 8.4); abrupt wavy boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/N/NACK.json b/inst/extdata/OSD/N/NACK.json index bfdd6e284c..9ec3a0de1b 100644 --- a/inst/extdata/OSD/N/NACK.json +++ b/inst/extdata/OSD/N/NACK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; brown (10YR 4/3) ashy loam, very dark grayish brown (10YR 3/2) moist; weak medium granular structure parting to weak fine granular; hard, very friable, slightly sticky and slightly plastic; many very fine roots; common very fine tubular pores; slight effervescence, moderately alkaline (pH 8.0); abrupt smooth boundary. (4 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--6 to 12 inches; brown (10YR 4/3) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, very friable, slightly sticky and slightly plastic; common very fine and fine roots; few fine faint white (10YR 8/1) seams of calcium carbonate; few faint dark yellowish brown (10YR 4/6) clay films lining pores and on faces of peds; common very fine tubular pores; 10 percent grave;; strong effervescence, moderately alkaline (pH 8.4); clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk2--12 to 15 inches; brown (10YR 5/3) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, very friable, slightly sticky and slightly plastic; few very fine and fine roots; common very fine tubular pores and few fine continuous tubular pores; common distinct white (10YR 8/1) carbonate in pores and on faces of peds; common distinct dark yellowish brown (10YR 4/6) clay films lining pores and on faces of peds; 10 percent gravel; slight effervescence, moderately alkaline (pH 8.0); abrupt wavy boundary. (Combined Btk horizon is 6 to 12 inches thick)" diff --git a/inst/extdata/OSD/N/NACLINA.json b/inst/extdata/OSD/N/NACLINA.json index f31f13ee3b..d24ee80a9f 100644 --- a/inst/extdata/OSD/N/NACLINA.json +++ b/inst/extdata/OSD/N/NACLINA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss2--21 to 36 inches; light olive brown (2.5Y 5/4) clay; common fine and medium distinct mottles of yellowish brown (10YR 5/6) and light brownish gray (2.5Y 6/2) with sharp boundaries; weak subangular blocky structure; extremely hard, very firm; few fine and medium roots; few pitted concretions of calcium carbonate; common grooved slickensides; spots in matrix has very slight effervescence; slightly alkaline; gradual wavy boundary. (combined Bss subhorizons are 20 to 40 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss--36 to 46 inches; olive yellow (2.5Y 6/4) clay; many medium and coarse distinct yellowish brown (10YR 5/6) and common medium and coarse distinct light brownish gray (2.5Y 6/2) mottles with sharp boundaries; weak medium and coarse angular blocky structure; very hard, very firm; few fine roots; common grooved slickensides; common masses and few pitted concretions of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--46 to 65 inches; variegated layers of strong brown (7.5YR 5/6) and light brownish gray (2.5Y 6/2) clayey shale; weak angular rock-like structure; very hard, very firm; few fine roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NAHON.json b/inst/extdata/OSD/N/NAHON.json index 633ac776e1..e438b1a7b8 100644 --- a/inst/extdata/OSD/N/NAHON.json +++ b/inst/extdata/OSD/N/NAHON.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bz--20 to 25 inches; light brownish gray (2.5Y 6/2) and pale yellow (2.5Y 7/4) silty clay loam, dark grayish brown (2.5Y 4/2) and light olive brown (2.5Y 5/4) moist; weak medium prismatic structure parting to weak medium subangular blocky; hard, firm, sticky and plastic; common fine nests of gypsum and other salts; few fine accumulations of carbonate; slight effervescence; slightly alkaline. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz--25 to 37 inches; pale yellow (2.5Y 7/4) silty clay loam, light olive brown (2.5Y 5/4) moist; weak coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common fine nests of gypsum and other salts; violent effervescence (21 percent calcium carbonate equivalent); moderately alkaline; clear wavy boundary. (0 to 18 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--37 to 56 inches; pale yellow (2.5Y 8/2) and grayish brown (2.5Y 5/2) silty clay loam, varved with thin layers of very fine sandy loam and silty clay, pale yellow (2.5Y 7/4) and dark grayish brown (2.5Y 4/2) moist; massive, varves 1 to 3 mm thick; slightly hard, friable, slightly sticky and slightly plastic; violent effervescence (14 percent calcium carbonate equivalent); moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--56 to 60 inches; pale yellow (2.5Y 8/2) and grayish brown (2.5Y 5/2) clay varved with thin layers of very fine sandy loam and silty clay, pale yellow (2.5Y 7/4) and dark grayish brown (2.5Y 4/2) moist; massive, varves 5 to 10 mm thick; hard, firm; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NAHRUB.json b/inst/extdata/OSD/N/NAHRUB.json index bf6169f385..a0efa6980d 100644 --- a/inst/extdata/OSD/N/NAHRUB.json +++ b/inst/extdata/OSD/N/NAHRUB.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.3, "pH_class": "very strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "2C3--43 to 52 inches; pale yellow (5Y 7/3) clay loam, olive gray (5Y 5/2) moist; massive; slightly hard, friable, sticky and plastic; few very fine roots; few very fine tubular pores; common, fine, distinct yellowish red (5YR 5/8), dry and moist, masses of iron accumulation; slightly effervescent with carbonates disseminated, and strongly effervescent, carbonates segregated as few fine soft masses; very strongly alkaline (pH 9.3); gradual smooth boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/N/NAKOY.json b/inst/extdata/OSD/N/NAKOY.json index 201c46f5af..986d2c897c 100644 --- a/inst/extdata/OSD/N/NAKOY.json +++ b/inst/extdata/OSD/N/NAKOY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 3 inches; brown (7.5YR 5/3) loamy fine sand, brown (7.5YR 4/3) moist; weak thin platy structure; soft, very friable, nonsticky and nonplastic; few fine roots; few fine and very fine interstitial pores; very slight effervescence (1 percent calcium carbonate equivalent), carbonates are disseminated; moderately alkaline (pH 8.0); clear smooth boundary. (2 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--3 to 14 inches; light brown (7.5YR 6/4) loamy fine sand, brown (7.5YR 4/4) moist; massive; loose, nonsticky and nonplastic; few fine roots; few fine and very fine interstitial pores; very slight effervescence (3 percent calcium carbonate equivalent), carbonates are disseminated; moderately alkaline (pH 8.2); gradual smooth boundary. (0 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--14 to 25 inches; light brown (7.5YR 6/4) sandy loam, brown (7.5YR 5/4) moist; massive; loose, nonsticky and nonplastic; few fine roots; few fine and very fine tubular pores; slight effervescence (5 percent calcium carbonate equivalent), carbonates are disseminated; moderately alkaline (pH 8.4); clear smooth boundary. (11 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--25 to 41 inches; pink (7.5YR 7/3) sandy loam, light brown (7.5YR 6/4) moist; massive; soft, very friable, nonsticky and nonplastic; few fine roots; few fine, common very fine tubular pores; 5 percent gravel; slight effervescence (10 percent calcium carbonate equivalent), carbonates are disseminated and segregated as coatings on gravel, and as few irregular medium masses; moderately alkaline (pH 8.4); gradual smooth boundary. (9 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--41 to 65 inches; pink (7.5YR 8/3) sandy loam, light brown (7.5YR 6/4) moist; massive; soft, very friable, nonsticky and nonplastic; few fine roots; few fine, common very fine tubular pores; 5 percent gravel; strong effervescence (16 percent calcium carbonate equivalent), carbonates are disseminated and segregated as coatings on gravel, and in common irregular medium and coarse masses; strongly alkaline (pH 9.0); gradual smooth boundary. (0 to 38 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk3--65 to 72 inches; light brown (7.5YR 7/3) sandy loam, light brown (7.5YR 6/3) moist; massive; soft, very friable, nonsticky and nonplastic; 10 percent gravel; strong effervescence (13 percent calcium carbonate equivalent), carbonates are disseminated and segregated as coatings on gravel, and in common irregular medium masses; strongly alkaline (pH 8.8); gradual smooth boundary. (0 to 18 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--72 to 80 inches; light brown (7.5YR 6/4) sandy loam, brown (7.5YR 5/3) moist; massive; soft, very friable, nonsticky and nonplastic; 15 percent gravel; strong effervescence (9 percent calcium carbonate equivalent), carbonates are disseminated and segregated as 1 mm thick coatings on some rock fragments; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/N/NALCASE.json b/inst/extdata/OSD/N/NALCASE.json index bb2abec3cf..e09cb6b392 100644 --- a/inst/extdata/OSD/N/NALCASE.json +++ b/inst/extdata/OSD/N/NALCASE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "noneffervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--0 to 4 inches (0 to 10 cm); very pale brown (10YR 7/4) fine sand, yellowish brown (10YR 5/6) moist; single grain; loose, nonsticky and nonplastic; many very fine and fine roots; noneffervescence; neutral (pH 7.0); clear smooth boundary. (2 to 6 inches 5 to 15 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "noneffervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--4 to 8 inches (10 to 20 cm); very pale brown (10YR 7/3) fine sand, yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky and nonplastic; common very fine, fine and few medium roots; noneffervescence; neutral (pH 7.2); abrupt smooth boundary. (3 to 16 inches or 8 to 41 cm thick)" diff --git a/inst/extdata/OSD/N/NARANJO.json b/inst/extdata/OSD/N/NARANJO.json index d11c1bbead..25eca51e79 100644 --- a/inst/extdata/OSD/N/NARANJO.json +++ b/inst/extdata/OSD/N/NARANJO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 9 inches; very dark grayish brown (10YR 3/2) clay; weak fine granular structure; firm, slightly sticky; plastic; many fine roots; volcanic fragments 1/2 to 1 inch in diameter; common fine shell fragments; fine and medium limestone fragments; strong effervescence; abrupt smooth boundary. (8 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B2--9 to 17 inches; brownish yellow (10YR 6/6) clay; weak fine subangular blocky structure; firm, slightly sticky, plastic; common fine roots; fine shell fragments; fine and medium limestone fragments, 5 to 10 percent from 1/2 to 1 inch in diameter; strong effervescence; clear smooth boundary. (6 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B3--17 to 25 inches; yellow (10YR 7/6) clay; weak fine subangular blocky structure; friable, slightly sticky, plastic; common fine roots; common lime splotches; fine and medium limestone fragments, 5 to 10 percent from 1/2 to 1 inch in diameter; strong effervescence; gradual smooth boundary. (6 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--25 to 36 inches; yellow (10YR 7/6) clay; with common medium prominent light gray (7.5YR 7/0) and few fine faint brownish yellow (10YR 6/6) mottles; massive; firm, sticky, plastic; few fine roots; common lime splotches; fine and medium limestone fragments 5 to 10 percent from 1/2 to 1 inch in diameter; violent effervescence; gradual wavy boundary. (8 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--36 to 60 inches; mixed colors, yellow (10YR 7/6) brownish yellow (10YR 6/6) and light gray (7.5YR 7/0), crushed color, yellow (10YR 7/8) clay; massive; firm, slightly sticky, plastic; many lime splotches; violent effervescence." diff --git a/inst/extdata/OSD/N/NAVO.json b/inst/extdata/OSD/N/NAVO.json index 4680c45ec2..0e2393a151 100644 --- a/inst/extdata/OSD/N/NAVO.json +++ b/inst/extdata/OSD/N/NAVO.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B3--72 to 95 inches; yellow (10YR 7/6) clay, few fine distinct gray (N 5/ ) mottles, brownish yellow (10YR 6/6) moist; moderate coarse blocky structure; extremely hard, very firm, very sticky and plastic; few fine roots; few thin patchy clay films; about 5 percent concretions and soft masses of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NEBISH.json b/inst/extdata/OSD/N/NEBISH.json index f4a0204e39..c3dd390bf3 100644 --- a/inst/extdata/OSD/N/NEBISH.json +++ b/inst/extdata/OSD/N/NEBISH.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--26 to 60 inches; light olive brown (2.5Y 5/4) loam; massive; friable; about 10 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NECHE.json b/inst/extdata/OSD/N/NECHE.json index 7cf680f103..2d3172c734 100644 --- a/inst/extdata/OSD/N/NECHE.json +++ b/inst/extdata/OSD/N/NECHE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--15 to 23 inches; dark grayish brown (2.5Y 4/2) silty clay loam, light brownish gray (2.5Y 6/2) dry; many fine prominent yellowish brown (10YR 5/6) and many medium faint dark gray (10YR 4/1) and dark olive (5Y 3/3) mottles; weak medium subangular blocky structure parting to moderate very fine granular; hard, friable, sticky and plastic; few fine roots; many fine pores; few root channels; slight effervescence; moderately alkaline; few very thin strata; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ab--23 to 33 inches; black (10YR 2/1) clay loam, dark gray (10YR 4/1) dry; weak medium subangular blocky structure parting to moderate very fine granular; hard, friable, sticky and plastic; few fine roots; few fine masses of carbonates; slight effervescence; moderately alkaline; abrupt smooth boundary. (0 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--33 to 42 inches; dark grayish brown (2.5Y 4/2) silty clay loam, grayish brown (2.5Y 5/2) dry; many fine distinct pale olive (5Y 6/3) mottles; weak medium and fine subangular blocky structure parting to moderate fine granular; hard, friable, sticky and plastic; common fine pores; few fine masses of carbonates; slight effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A'b--42 to 53 inches; very dark brown (10YR 2/2) silt loam, gray (10YR 5/1) dry; weak fine subangular blocky structure parting to moderate fine granular; hard, friable, slightly sticky and slightly plastic; many fine masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C4--53 to 60 inches; dark grayish brown (2.5Y 4/2) loam, gray (2.5Y 6/1) dry; many medium faint light brownish gray (2.5Y 6/2) and few fine prominent pale olive (5Y 6/3) mottles; massive; hard, friable, slightly sticky and slightly plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NESS.json b/inst/extdata/OSD/N/NESS.json index 2abe19874a..ac12410bbc 100644 --- a/inst/extdata/OSD/N/NESS.json +++ b/inst/extdata/OSD/N/NESS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BC--79 to 94 centimeters (31 to 37 inches); 50 percent very dark grayish brown (10YR 3/2) and 50 percent brown (10YR 5/3), silty clay loam; weak fine angular blocky structure; firm, hard, moderately sticky, moderately plastic; common fine roots throughout; strong effervescence; moderately alkaline, gradual smooth boundary. (Thickness of horizon ranges from 10 to 25 centimeters (4 to 10 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2C1--94 to 157 centimeters (37 to 62 inches); brown (10YR 5/3), silty clay loam, pale brown (10YR 6/3), dry; weak fine subangular blocky structure; friable, slightly hard, slightly sticky, slightly plastic; 3 percent fine and medium irregular carbonate threads throughout; strong effervescence; strongly alkaline, gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--157 to 203 centimeters (62 to 80 inches); brown (10YR 4/3), silty clay loam, brown (10YR 5/3), dry; weak fine angular blocky structure; friable, slightly hard, slightly sticky, slightly plastic; 3 percent fine and medium irregular carbonate threads throughout; strong effervescence; strongly alkaline. (Combined thickness of horizons ranges from 50 to 150 centimeters (20 to 60 inches) thick)" diff --git a/inst/extdata/OSD/N/NEVEE.json b/inst/extdata/OSD/N/NEVEE.json index c2a6c5d6cf..3ac780def7 100644 --- a/inst/extdata/OSD/N/NEVEE.json +++ b/inst/extdata/OSD/N/NEVEE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--8 to 24 inches; reddish yellow (5YR 6/6) silt loam, yellowish red (5YR 4/6) moist; massive; slightly hard, very friable; common fine roots; few fine accumulations of carbonate; violent effervescence; slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--24 to 39 inches; reddish yellow (5YR 6/6) silt loam, yellowish red (5YR 4/6) moist; massive; hard, very friable; few fine roots; violent effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--48 to 60 inches; reddish brown (2.5YR 4/4) siltstone, dark red (2.5YR 3/6) moist; extremely hard, friable; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/N/NEVIOT.json b/inst/extdata/OSD/N/NEVIOT.json index 31c4e6685d..625d55e16f 100644 --- a/inst/extdata/OSD/N/NEVIOT.json +++ b/inst/extdata/OSD/N/NEVIOT.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--49 to 60 inches; light yellowish brown (10YR 6/4) very gravelly loam, brown (10YR 4/3) moist; soft, very friable, slightly sticky and slightly plastic; weak fine and medium subangular blocky structure; common very fine and few fine roots; many very fine irregular pores; common prominent very pale brown (10YR 8/2) coatings on bottom of rock fragments; 40 percent gravel and 10 percent cobbles; slight effervescence; NaF pH 9.5; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/N/NEWALLA.json b/inst/extdata/OSD/N/NEWALLA.json index 08c48b4dfe..cb33640a9d 100644 --- a/inst/extdata/OSD/N/NEWALLA.json +++ b/inst/extdata/OSD/N/NEWALLA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btkss--30 to 42 inches; red (2.5YR 4/6) clay, dark red (2.5YR 3/6) moist; weak medium subangular blocky and blocky structure; extremely hard, extremely firm; few very fine, fine, medium and coarse roots; few slickensides; continuous clay films on faces of peds; few fine dark concretions; common fine and medium soft masses of calcium carbonate; slight effervescence; slightly alkaline; gradual wavy boundary. (0 to 28 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2B'tss--42 to 51 inches; red (2.5YR 4/6) clay, dark red (2.5YR 3/6) moist; weak medium and coarse blocky structure; extremely hard, extremely firm; few very fine and fine roots; common slickensides; continuous clay films on faces of peds; few fine dark concretions; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 9 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2BC--51 to 58 inches; red (2.5YR 4/6) gravelly silty clay, dark red (2.5YR 3/6) moist; common fine distinct yellowish red (5YR 4/6) redox accumulations; weak medium subangular blocky structure; very hard, very firm; few very fine roots; discontinuous clay films on faces of peds; 25 percent by volume of shale fragments from 2 mm to 76 mm in diameter; slight effervescence; slightly alkaline; clear wavy boundary. (0 to 18 inches thick)" diff --git a/inst/extdata/OSD/N/NEWELL.json b/inst/extdata/OSD/N/NEWELL.json index ac6de14138..a1b717a294 100644 --- a/inst/extdata/OSD/N/NEWELL.json +++ b/inst/extdata/OSD/N/NEWELL.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--60 to 75 inches; similar to Bk1 horizon except moderately effervescent and many fine calcium carbonate veins and spots; slightly alkaline (pH 7.8); gradual wavy boundary. (0 to 15 inches thick)" diff --git a/inst/extdata/OSD/N/NEWFOLDEN.json b/inst/extdata/OSD/N/NEWFOLDEN.json index d7ae05aa2b..6cd441f095 100644 --- a/inst/extdata/OSD/N/NEWFOLDEN.json +++ b/inst/extdata/OSD/N/NEWFOLDEN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk1--16 to 25 inches; grayish brown (2.5Y 5/2) clay loam; weak medium subangular blocky structure; friable; common fine prominent yellowish brown (10YR 5/4) redoximorphic concentrations; many calcium carbonate masses; 3 percent gravel; violent effervescence; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk2--25 to 36 inches; light brownish gray (2.5Y 6/2) clay loam; weak medium subangular blocky structure; friable; many medium prominent brownish yellow (10YR 6/6) redoximorphic concentrations; many masses of carbonate; 3 percent rock fragments; violent effervescence; slightly alkaline; gradual wavy boundary. (Combined 2Bk horizons 0 to 27 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2CBk1--36 to 71 inches; light yellowish brown (2.5Y 6/4) clay loam; massive; friable; many coarse prominent brownish yellow (10YR 6/6) redoximorphic concentrations; 3 percent gravel; common masses of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2CBk2--71 to 80 inches; light brownish gray (2.5Y 6/2) and light yellowish brown (2.5Y 6/3) loam; massive; friable; common medium faint dark grayish brown (2.5Y 4/2) redoximorphic depletions and many coarse prominent brownish yellow (10YR 6/6) and few fine prominent yellowish red (5YR 5/6) redoximorphic concentrations; 3 percent gravel and 3 percent cobbles; white (10YR 8/1) common masses of lime; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NEWPARK.json b/inst/extdata/OSD/N/NEWPARK.json index 500f2def8f..5e59af9a82 100644 --- a/inst/extdata/OSD/N/NEWPARK.json +++ b/inst/extdata/OSD/N/NEWPARK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ck1--27 to 36 inches, (68 to 91 cm); pale brown (10YR 6/3) broken face silty clay loam, brown (10YR 4/3) broken face moist; 28 percent clay; moderate medium subangular blocky structure; moderately hard, friable, very sticky, moderately plastic; common very fine tubular pores; strong effervescence; slightly alkaline, pH 7.8 by pH meter 1:1 water; abrupt smooth boundary. (23 to 56 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck2--36 to 52 inches, (91 to 132 cm); pale brown (10YR 6/3) broken face silty clay loam, brown (10YR 4/3) broken face moist; 28 percent clay; moderate medium subangular blocky structure; slightly hard, friable, very sticky, moderately plastic; common very fine tubular pores; 5 percent fine carbonate masses; strong effervescence; slightly alkaline, pH 7.8 by pH meter 1:1 water; abrupt smoothboundary. (20 to 41 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--52 to 63 inches, (132 to 160 cm); pale brown (10YR 6/3) broken face fine sandy loam, brown (10YR 4/3) broken face moist; 15 percent clay; weak medium subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; common very fine tubular pores; 5 percent fine carbonate masses; slight effervescence; moderately alkaline, pH 7.9 by pH meter 1:1 water; abrupt smooth boundary. (0 to 28 centimeters thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--63 to 79 inches, (160 to 200 cm); pale brown (10YR 6/3) broken face very fine sandy loam, brown (10YR 4/3) broken face moist; 16 percent clay; weak medium subangular blocky structure; moderately hard, friable, slightly sticky, slightly plastic; common very fine tubular pores; 30 percent dark yellowish brown (10YR 4/4), moist, and light yellowish brown (10YR 6/4), dry, masses of oxidized iron; 5 percent fine carbonate masses; slight effervescence; slightly alkaline, pH 7.8 by pH meter 1:1 water;" diff --git a/inst/extdata/OSD/N/NEW_CAMBRIA.json b/inst/extdata/OSD/N/NEW_CAMBRIA.json index 775cf83fc8..5ce0e1e292 100644 --- a/inst/extdata/OSD/N/NEW_CAMBRIA.json +++ b/inst/extdata/OSD/N/NEW_CAMBRIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 15 centimeters (0 to 6 inches); dark grayish brown (10YR 4/2) silty clay, very dark gray (10YR 3/1) moist; moderate fine granular and angular blocky structure; very hard, firm; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "A--15 to 36 centimeters (6 to 14 inches); dark gray (10YR 4/1) silty clay, very dark brown (10YR 2/2) moist; strong fine granular and angular blocky structure; extremely hard, very firm; many fine roots and pores; few worm casts; slight effervescence; moderately alkaline; diffuse smooth boundary. (Combined thickness of the A horizon is 23 to 38 centimeters (9 to 15 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bw1--36 to 64 centimeters (14 to 25 inches); dark gray (10YR 4/1) silty clay, very dark gray (10YR 3/1) moist; moderate medium and fine angular blocky structure; extremely hard, very firm; many fine roots and pores; slight effervescence; moderately alkaline; diffuse smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bw2--64 to 81 centimeters (25 to 32 inches); dark gray (10YR 4/1) silty clay, very dark gray (10YR 3/1) moist; moderate medium angular blocky and subangular blocky structure; extremely hard, very firm; many fine roots and pores; few films and threads of calcium carbonate; slight effervescence; moderately alkaline; diffuse smooth boundary. (Combined thickness of the Bw horizon is 40 to 90 centimeters (16 to 35 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--81 to 109 centimeters (32 to 43 inches); gray (10YR 5/1) silty clay loam, dark gray (10YR 4/1) moist; structureless massive; very hard, firm; many very-fine pores; few fine roots; many films and threads of calcium carbonate; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--109 to 200 centimeters (43 to 80 inches); light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; structureless massive; very hard, firm; many films and threads of calcium carbonate, many fine non-cemented calcium carbonate masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NIAGARA.json b/inst/extdata/OSD/N/NIAGARA.json index 920b133307..3d82f1715d 100644 --- a/inst/extdata/OSD/N/NIAGARA.json +++ b/inst/extdata/OSD/N/NIAGARA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C -- 31 to 72 inches; dark grayish brown (10YR 4/2) silt loam, thin horizontal strata of very fine sandy loam and silty clay loam amounting to 15 percent of the volume; moderate thick plate-like divisions parting along bedding planes; friable; few medium roots in upper 6 inches; light gray (10YR 7/2) streaks of segregated lime along bedding plains; many medium distinct yellowish brown (10YR 5/4) and dark yellowish brown (10YR 4/4) soft masses of iron acummulation; slightly alkaline, slight effervescence." diff --git a/inst/extdata/OSD/N/NIARADA.json b/inst/extdata/OSD/N/NIARADA.json index 68feb9e090..3af44be3de 100644 --- a/inst/extdata/OSD/N/NIARADA.json +++ b/inst/extdata/OSD/N/NIARADA.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--18 to 29 inches; very pale brown (10YR 8/2) very gravelly loam, pale brown (10YR 6/3) moist; massive; very friable, slightly sticky and slightly plastic; common very fine and fine roots, and few medium roots; few fine and very fine tubular pores; 50 percent gravel and 5 percent cobbles; disseminated lime, common distinct coatings of lime on undersides and sides of gravel; violently effervescence; moderately alkaline (pH 8.4); gradual wavy boundary. (8 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--29 to 60 inches; light gray (10YR 7/2) very gravelly loam, brown (10YR 5/3) moist; massive; soft, very friable, slightly sticky and slightly plastic; few fine and medium roots; 50 percent gravel and 5 percent cobbles; disseminated lime, common distinct coatings of lime covering gravel; violently effervescence; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/N/NIBEN.json b/inst/extdata/OSD/N/NIBEN.json index 97cfab96a4..9d0aefb623 100644 --- a/inst/extdata/OSD/N/NIBEN.json +++ b/inst/extdata/OSD/N/NIBEN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Btk1--26 to 42 inches; brown (10YR 4/3) clay, dark brown (10YR 3/3) moist; strong fine and medium prismatic structure; hard, friable, sticky and plastic; few very fine, medium and coarse roots; common fine and medium interstitial and tubular pores; many prominent clay films lining pores and on faces of peds; few faint lime coats lining pores; 5 percent pebbles; slight effervescence in pores, slightly alkaline (pH 7.8); clear wavy boundary. (Combined 2Bt horizon is 18 to 28 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "3Btk2--42 to 51 inches; brown (10YR 4/3) clay, dark brown (10YR 3/3) moist; strong fine and medium prismatic structure parting to strong fine angular blocky; very hard, friable, sticky and plastic; few very fine, medium and coarse roots; few fine and medium interstitial and tubular pores; many prominent clay films lining pores and on faces of peds; many prominent lime coats on faces of peds; 5 percent pebbles; slight effervescence, moderately alkaline (pH 7.9); abrupt wavy boundary. (6 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "4Btk3--51 to 60 inches; brown (7.5YR 4/3) clay loam, dark brown (7.5YR 3/2) moist; moderate fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots; common fine and medium interstitial and tubular pores; few distinct clay films lining pores and on faces of peds; few distinct lime coats lining pores, on faces of peds and rock fragments; 5 percent pebbles; slight effervescence, moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/N/NIBSON.json b/inst/extdata/OSD/N/NIBSON.json index b46ad29d51..1aec4a6cc9 100644 --- a/inst/extdata/OSD/N/NIBSON.json +++ b/inst/extdata/OSD/N/NIBSON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 8 inches; dark gray (10YR 4/1) silt loam, very dark brown (10YR 2/2) moist; moderate medium granular structure; slightly hard, friable; many roots; few weathered limestone fragments scattered throughout; many worm casts; slight effervescence; moderately alkaline; gradual wavy boundary. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--8 to 14 inches; light gray (10YR 7/2) silty clay loam, grayish brown (10YR 5/2) moist; mixing of colors from above by worm action; moderate medium granular structure; slightly hard, friable; many roots; few weathered limestone fragments scattered throughout; many worm casts; strong effervescence; moderately alkaline; gradual wavy boundary. (3 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--14 to 19 inches; very pale brown (10YR 7/3) silty clay loam, pale brown (10YR 6/3) moist; weak medium granular structure grading to massive; slightly hard, friable; many roots; few worm casts; many limestone and shale fragments scattered throughout and increasing with depth; thin coating of lime (about 2 mm thick) on underside of rock fragments; violent effervescence; strongly alkaline; clear wavy boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/N/NICHOLFLAT.json b/inst/extdata/OSD/N/NICHOLFLAT.json index 61ee76bf38..8d98335d74 100644 --- a/inst/extdata/OSD/N/NICHOLFLAT.json +++ b/inst/extdata/OSD/N/NICHOLFLAT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkqm--18 to 40 inches; thin white (10YR 8/1) continuous indurated laminar cap over very pale brown (10YR 8/3) strongly cemented duripan, yellow (10YR 7/6) moist; massive; very hard, very firm, brittle; 15 percent gravel; slight effervescence; clear smooth boundary. (10 to 40 inches thick)" diff --git a/inst/extdata/OSD/N/NIMBRO.json b/inst/extdata/OSD/N/NIMBRO.json index 9008e1ef1b..6029717f7e 100644 --- a/inst/extdata/OSD/N/NIMBRO.json +++ b/inst/extdata/OSD/N/NIMBRO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 8 inches; gray (10YR 5/1) silty clay loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky and moderate fine granular structure; hard, friable, slightly sticky and slightly plastic; slight effervescence; slightly alkaline; clear smooth boundary. (5 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--8 to 16 inches; grayish brown (10YR 5/2) silty clay loam, very dark grayish brown (10YR 3/2) and dark grayish brown (10YR 4/2) moist; weak very thick platy and weak medium and fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few very thin layers (less than 1/8 inch thick) of light brownish gray (2.5Y 6/2); strong effervescence; slightly alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--16 to 60 inches; light brownish gray (2.5Y 6/2) clay loam stratified with thin layers of fine sand, dark grayish brown (2.5Y 4/2) moist; few fine faint and distinct mottles of reddish yellow (7.5YR 6/6) moist in some layers; massive; slightly hard, friable; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/N/NINCH.json b/inst/extdata/OSD/N/NINCH.json index b58fc2a8a1..b3f7d60e90 100644 --- a/inst/extdata/OSD/N/NINCH.json +++ b/inst/extdata/OSD/N/NINCH.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bkq--89 to 104 cm; light brownish gray (2.5Y 6/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable, nonsticky and nonplastic; many very fine, and few fine roots; many very fine and few fine tubular, many very fine interstitial pores; 25 percent 0.6 to 1.8 cm thick rounded durinodes that are hard and firm; few thin silica coatings in pores and as discontinuous laminae; slightly effervescent matrix; few fine and medium white (10YR 8/2) strongly effervescent lime coatings on silica 25 cm inches thick)" diff --git a/inst/extdata/OSD/N/NIOBELL.json b/inst/extdata/OSD/N/NIOBELL.json index fea52d2297..adf3d6b480 100644 --- a/inst/extdata/OSD/N/NIOBELL.json +++ b/inst/extdata/OSD/N/NIOBELL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky1--19 to 22 inches; light olive brown (2.5Y 5/4) loam, olive brown (2.5Y 4/4) moist; weak coarse prismatic structure parting to weak coarse and medium subangular blocky; hard, friable, sticky and slightly plastic; common medium and fine crystals of gypsum; many large masses of carbonates; about 2 percent gravel; slight effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky2--22 to 29 inches; light yellowish brown (2.5Y 6/3) loam, olive brown (2.5Y 4/3) moist; weak medium and fine subangular blocky structure; hard, friable, sticky and slightly plastic; many fine crystals of gypsum; about 2 percent gravel; common medium and fine masses of carbonates; violent effervescence; strongly alkaline; gradual wavy boundary. (Combined Bk horizons 4 to 24 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCky--29 to 44 inches; light yellowish brown (2.5Y 6/3) loam, olive brown (2.5Y 4/4) moist; massive; very hard, firm, sticky and slightly plastic; common fine crystals of gypsum; about 2 percent gravel; few fine masses of carbonates; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--44 to 60 inches; light yellowish brown (2.5Y 6/4) loam, olive brown (2.5Y 4/4) moist; few fine distinct brown (10YR 5/3) and few fine prominent gray (5Y 5/1) moist relict mottles; massive; very hard, firm, sticky and slightly plastic; about 2 percent gravel; few small fragments of lignite; few gypsum crystals; few masses of carbonates; slight effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/N/NIOBRARA.json b/inst/extdata/OSD/N/NIOBRARA.json index 11bc5a3ab1..0e38f6f29e 100644 --- a/inst/extdata/OSD/N/NIOBRARA.json +++ b/inst/extdata/OSD/N/NIOBRARA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; light brownish gray (10YR 6/2) loamy fine sand, dark grayish brown (10YR 4/2) moist; weak fine granular structure; soft, very friable; 2 percent by volume sandstone gravel; many very fine and fine and few medium roots; slight effervescence; slightly alkaline; clear smooth boundary. (3 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--4 to 13 inches; light brownish gray (10YR 6/2) fine sand, grayish brown (10YR 5/2) moist; single grain; loose; 5 percent by volume sandstone gravel; many fine and very fine and few medium roots; strong effervescence; moderately alkaline; abrupt wavy boundary. (5 to 13 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--13 to 80 inches; very pale brown (10YR 8/2) fine grained sandstone, light gray (10YR 7/2) moist; cracks with roots spaced more than 4 inches apart; violent effervescence." diff --git a/inst/extdata/OSD/N/NIU.json b/inst/extdata/OSD/N/NIU.json index aa144c017f..b1a5a4a202 100644 --- a/inst/extdata/OSD/N/NIU.json +++ b/inst/extdata/OSD/N/NIU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.9, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 25 centimeters (0 to 10 inches); dark reddish brown (2.5YR 3/4) silty clay loam, same color rubbed, dark reddish brown (2.5YR 3/4) dry; weak fine subangular blocky structure; hard, friable, sticky and plastic; common medium, fine and very fine roots; common medium and many fine and very fine tubular pores; strong to violent effervescence with hydrogen peroxide; moderately acid (pH 5.9); abrupt wavy boundary. (20 to 36 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bo1--25 to 56 centimeters (10 to 22 inches); dark red (2.5YR 3/6) silty clay loam, red (2.5YR 4/6) dry; weak coarse prismatic structure; hard, friable, sticky and plastic; common medium, fine and very fine roots; common medium and many fine and very fine tubular pores; thin patchy coatings on peds, coatings look like clay films; upper 2 inches compacted by tillage; slight to moderate effervescence with hydrogen peroxide; neutral (pH 6.8); gradual smooth boundary. (20 to 36 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bo2--56 to 91 centimeters (22 to 36 inches); dark red (10R 3/6) silty clay, dark red (10R 3/6) dry; moderate fine and very fine subangular blocky structure; hard, friable, sticky and plastic; few medium and common fine and very fine roots; few medium, common fine, and many very fine tubular pores; nearly continuous moderately thick coatings on some peds, coatings look like clay films; compact in places; slight to moderate effervescence with hydrogen peroxide; neutral (pH 6.8); gradual smooth boundary. (31 to 41 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bo3--91 to 152 centimeters (36 to 60 inches); dark red (10R 3/6) silty clay, same color rubbed, dark red (10R 3/6) dry; moderate fine and very fine subangular blocky structure; hard, friable, sticky and plastic; few medium, fine and very fine roots; few medium, common fine and very fine tubular pores; continuous moderately thick coatings on some peds, coatings look like clay films; compact in places; no effervescence with hydrogen peroxide; neutral (pH 6.8)." diff --git a/inst/extdata/OSD/N/NOFET.json b/inst/extdata/OSD/N/NOFET.json index 994e4d72ff..771eda8e0b 100644 --- a/inst/extdata/OSD/N/NOFET.json +++ b/inst/extdata/OSD/N/NOFET.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk1--10 to 23 cm; grayish brown (10YR 5/2) clay, very dark grayish brown (10YR 3/2) moist; strong medium prismatic structure; hard, friable, very sticky and very plastic; common very fine and fine mostly exped roots; common very fine tubular pores; continuous distinct clay films on ped faces and lining pores; slightly effervescent matrix, few medium strongly effervescent soft masses of carbonate; very strongly alkaline (pH 9.6); clear wavy boundary. (10 to 20 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btnk2--23 to 53 cm; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; few medium prominent black (10YR 2/1) organic stains on peds; strong medium prismatic structure; hard, firm, moderately sticky and very plastic; many very fine and fine roots, many very fine and fine tubular pores; continuous faint clay films on ped faces and lining pores; slightly effervescent matrix, few medium strongly effervescent soft masses of carbonate; very strongly alkaline (pH 9.2); gradual smooth boundary. (13 to 33 cm thick)" diff --git a/inst/extdata/OSD/N/NOHILI.json b/inst/extdata/OSD/N/NOHILI.json index 1bd92d2c0b..05e4af30cb 100644 --- a/inst/extdata/OSD/N/NOHILI.json +++ b/inst/extdata/OSD/N/NOHILI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1--0 to 5 inches; dark reddish brown (5YR 3/2) clay, dark reddish brown (5YR 3/2) dry; strong fine and very fine subangular blocky structure; extremely hard, firm, very sticky and very plastic; moderate effervescence with hydrogen peroxide; moderate effervescence with hydrochloric acid; mildly alkaline (pH 7.4); abrupt smooth boundary. (4 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap2--5 to 18 inches; dark reddish brown (5YR 3/3) clay, brown (7.5YR 4/2) dry; moderate medium subangular blocky structure; extremely hard, firm, very sticky and very plastic; common medium and fine roots; common medium and fine pores; moderate effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; mildly alkaline (pH 7.7); abrupt wavy boundary. (11 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "B21--18 to 23 inches; dark brown (7.5YR 3/2) clay, dark brown (7.5YR 3/2) dry; mottled reddish brown (5YR 4/4) and dark gray (10YR 4/1); moderate fine, medium and coarse angular blocky structure; extremely hard, firm, very sticky and very plastic; common medium roots, few fine and very fine roots; common medium pores, few fine pores; moderate effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid; few soft black concretions; mildly alkaline (pH 7.8); abrupt smooth boundary. (4 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B22--23 to 29 inches; very dark gray (10YR 3/1) clay, coarse light gray (10YR 6/1) mottles, fine dark reddish brown (2.5YR 3/4), very dark gray (10YR 3/1) mottles dry; moderate coarse angular blocky structure extremely hard, firm, very sticky and very plastic; many fine roots; many fine pores, common very fine pores; slight effervescence with hydrochloric acid; few pressure faces and slickensides; moderately alkaline (pH 8.0); gradual smooth boundary. (5 to 7 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B3--29 to 33 inches; grayish brown (10YR 5/2) clay; mottled yellowish brown (10YR 5/4), dark yellowish brown (10YR 4/4), black (10YR 2/1), and gray (10YR 5/1) dry; moderate medium and coarse angular blocky structure; extremely hard, firm, very sticky and very plastic; common medium and fine roots; common medium and fine pores; slight effervescence with hydrogen peroxide; violent effervescence with hydrochloric acid; moderately alkaline (pH 7.9); gradual smooth boundary. (4 to 6 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "IICcam--33 to 43 inches; light brownish gray (2.5YR 6/2) cemented layers and lenses of clay; mottled brown (7.5YR 5/4), yellowish brown (10YR 5/4), dary gray (10YR 4/1), and light gray (N 7/0) dry; laminated; clay is extremely hard, firm, very sticky and very plastic; few medium and fine roots; few medium, fine and very fine pores; slight effervescence with hydrogen peroxide; violent effervescence with hydrochloric acid; moderately alkaline (pH 8.2); abrupt smooth boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/N/NONOPAHU.json b/inst/extdata/OSD/N/NONOPAHU.json index 6680034e0e..38c2cc4402 100644 --- a/inst/extdata/OSD/N/NONOPAHU.json +++ b/inst/extdata/OSD/N/NONOPAHU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 17 inches; dark grayish brown (10YR 4/2) clay, brown (7.5YR 4/2) dry, pockets of dark yellowish brown (10YR 4/4) and dark grayish brown (2.5YR 4/2); moderate coarse granular structure; very hard, firm, sticky and plastic; common fine roots; many medium interstitial pores, few medium tubular pores; common black concretions 1 mm. to 5 mm. in size; moderate effervescence with hydrogen peroxide; mildly alkaline (pH 7.7); clear wavy boundary. (15 to 20 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--17 to 31 inches; brown (10YR 4/3) clay, light olive brown (2.5Y 5/4) dry; about 40 percent mottles of dark yellowish brown (10YR 4/4), and dark gray (10YR 4/1); weak coarse angular blocky structure; few slickensides; very hard, firm, sticky and plastic; many fine roots; few medium interstitial pores, many medium tubular pores; common concretions less than 2 mm; moderate effervescence with hydrogen peroxide; mildly alkaline (pH 7.7); abrupt wavy boundary. (12 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--31 to 47 inches; grayish brown (2.5Y 4/2) clay, light olive gray (5Y 6/2) dry; weak coarse angular blocky structure; common slickensides; extremely hard, very firm, very sticky and very plastic; few fine roots; few medium tubular pores; common fine, black, hard concretions; slight effervescence with hydrogen peroxide; mildly alkaline (pH 7.6); clear smooth boundary. (14 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--47 to 65 inches; brown (10YR 4/3) silty clay. (10YR 5/3) dry; strong medium subangular blocky structure; common slickensides; very hard, firm, sticky and plastic; few fine roots; many interstitial pores; nearly continuous pressure faces on peds; many medium black stains on peds; strong effervescence with hydrogen peroxide; mildly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/N/NOONAN.json b/inst/extdata/OSD/N/NOONAN.json index 5c65b5ff07..78cead0d1d 100644 --- a/inst/extdata/OSD/N/NOONAN.json +++ b/inst/extdata/OSD/N/NOONAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--12 to 20 inches; light olive brown (2.5Y 5/3) clay loam, olive brown (2.5Y 4/3) moist; moderate medium prismatic structure parting to moderate medium subangular blocky, hard, friable, sticky and slightly plastic; few very fine roots; about 2 percent gravel; few medium masses of carbonates; few fine nests of gypsum in the lower part; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bky--20 to 28 inches; light yellowish brown (2.5Y 6/3) loam, olive brown (2.5Y 4/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable, sticky and slightly plastic; few fine and medium roots; about 2 percent gravel; few fine nests of gypsum; common fine masses of carbonate; strong effervescence; strongly alkaline; gradual boundary. (Combined Bk horizons 4 to 52 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCy--28 to 60 inches; light yellowish brown (2.5Y 6/3) and light olive brown (2.5Y 5/3) loam, olive brown (2.5Y 4/3) moist; weak coarse and medium subangular blocky structure; very hard, firm, sticky and slightly plastic; about 2 percent gravel; common medium nests of gypsum; slight effervescence; strongly alkaline. (0 to 40 inches thick)" diff --git a/inst/extdata/OSD/N/NOROD.json b/inst/extdata/OSD/N/NOROD.json index 41a2f8276f..9f5fe250e1 100644 --- a/inst/extdata/OSD/N/NOROD.json +++ b/inst/extdata/OSD/N/NOROD.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btk--28 to 33 inches; brown (10YR 5/3) extremely cobbly loam, brown to dark brown (10YR 3/3) moist; weak coarse prismatic structure parting to weak coarse and medium subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots; few very fine tubular pores; few distinct clay skins on faces of peds; few faint light gray (10YR 7/2) lime coatings in root channels; 35 percent pebbles and 35 percent cobbles; slight effervescence; slightly alkaline (pH 7.7); abrupt wavy boundary. (3 to 8 inches thick)" diff --git a/inst/extdata/OSD/N/NORREST.json b/inst/extdata/OSD/N/NORREST.json index 237643a99d..b538a0367a 100644 --- a/inst/extdata/OSD/N/NORREST.json +++ b/inst/extdata/OSD/N/NORREST.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; moderate fine granular and subangular blocky structure; hard, friable; many roots; many very fine hard fragments of siltstone throughout; upper 1 inch is a fragile crust of silt loam; strong effervescence; slightly alkaline; clear smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt--6 to 18 inches; light gray (10YR 7/1) and grayish brown (10YR 5/2) silty clay loam, gray (10YR 5/1) and dark grayish brown (10YR 4/2) crushing to grayish brown (10YR 5/2) moist; moderate medium prismatic structure parting to moderate medium blocky; very hard, firm; few fine rounded fragments of siltstone; violent effervescence; slightly alkaline; gradual smooth boundary. (4 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--18 to 26 inches; light gray (5Y 7/1) and grayish brown (10YR 5/2) clay loam, olive gray (5Y 5/2) and dark grayish brown (10YR 4/2) moist; strong, medium and coarse prismatic structure parting to moderate medium and coarse blocky; extremely hard, very firm, but crumbly; common fine roots mostly along faces of peds; common fine threads of carbonate on faces of peds and throughout the interior; few fine fragments of siltstone; violent effervescence; slightly alkaline; gradual smooth boundary. (0 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--26 to 32 inches; light brownish gray (10YR 6/2) and light olive gray (5Y 6/2) clay loam, grayish brown (10YR 5/2) and olive (5Y 5/3) moist; moderate medium and coarse prismatic structure parting to weak coarse blocky; extremely hard, very friable; common white threads of carbonate in the matrix and on faces of peds; common fine fragments of siltstone; violent effervescence; slightly alkaline; gradual wavy boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--32 to 36 inches; light gray (5Y 7/1) soft siltstone; few roots in cracks and fractures; siltstone is hard and brittle, but crumbles readily on wetting; fragments are dark grayish brown (10YR 4/2) on surface; violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/N/NORTHCOTE.json b/inst/extdata/OSD/N/NORTHCOTE.json index 1aa0e94588..d56d0fc7f7 100644 --- a/inst/extdata/OSD/N/NORTHCOTE.json +++ b/inst/extdata/OSD/N/NORTHCOTE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Bg--23 to 51 centimeters; 80 percent dark gray (5Y 4/1) and 20 percent very dark gray (2.5Y 3/1) clay; strong very coarse prismatic structure parting to moderate medium and coarse subangular blocky; firm; very sticky and very plastic; many fine and very fine roots; many very fine and fine tubular pores; few tongues of black (N 2/0) A material in vertical cracks ranging from 5 to 15 mm in width; strong effervescence; slightly alkaline (pH 7.6); gradual irregular boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bgss1--51 to 84 centimeters; gray (5Y 5/1) clay; moderate very coarse prismatic structure parting to moderate medium and coarse subangular blocky; firm; very sticky and very plastic; common fine and very fine roots; many very fine tubular pores; few intersecting slickensides tilted 25 to 60 degrees from horizontal; strong effervescence; slightly alkaline (pH 7.6); gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bgss2--84 to 122 centimeters; olive gray (5Y 5/2) clay; few fine faint olive (5Y 5/3) redoximorphic concentrations; weak very coarse prismatic structure parting to moderate medium and coarse subangular blocky; firm; very sticky and very plastic; few very fine roots; many very fine tubular pores; few intersecting slickensides tilted 25 to 60 degrees from horizontal; strong effervescence; slightly alkaline (pH 7.6); clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCgss--122 to 145 centimeters; olive gray (5Y 4/2) clay; common medium prominent olive brown (2.5Y 4/4) redoximorphic concentrations; weak very coarse subangular blocky structure; firm; very sticky and very plastic; few very fine roots; common very fine tubular pores; few intersecting slickensides tilted 25 to 60 degrees from horizontal; strong effervescence; slightly alkaline (pH 7.6); clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--145 to 200 centimeters; dark gray (5Y 4/1) clay; common fine prominent olive brown (2.5Y 4/4) redoximorphic concentrations; massive; firm; very sticky and very plastic; few very fine roots; few slickensides; common fine and medium white (10YR 8/1) gypsum nests on horizontal faces of peds; few irregularly shaped white (10YR 8/1) masses of carbonates on ped faces; strong effervescence; slightly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/N/NORTHWAY.json b/inst/extdata/OSD/N/NORTHWAY.json index 930321f02c..cc6059eafe 100644 --- a/inst/extdata/OSD/N/NORTHWAY.json +++ b/inst/extdata/OSD/N/NORTHWAY.json @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg -- 42 to 72 inches, dark gray (10YR 4/1) gravelly loam; moderate medium and thin platy structure; firm; few medium distinct dark yellowish brown (10YR 4/4) soft masses of Fe oxides; 25 percent rock fragments; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/N/NORTH_POWDER.json b/inst/extdata/OSD/N/NORTH_POWDER.json index 098887c4ab..5638136730 100644 --- a/inst/extdata/OSD/N/NORTH_POWDER.json +++ b/inst/extdata/OSD/N/NORTH_POWDER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bk--22 to 28 inches; pale brown (10YR 6/3) loam, dark brown (10YR 4/3) moist; massive; hard, firm, slightly sticky and slightly plastic; few fine roots; few fine tubular pores; fine mycellia of lime, strong effervescence; moderately alkaline (pH 8.4); abrupt wavy boundary. (4 to 10 inches thick)" diff --git a/inst/extdata/OSD/N/NORWEST.json b/inst/extdata/OSD/N/NORWEST.json index 52bce4c7f1..5f0a2fd85c 100644 --- a/inst/extdata/OSD/N/NORWEST.json +++ b/inst/extdata/OSD/N/NORWEST.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 18 centimeters (0 to 7 inches); dark gray (10YR 4/1) loam, black (10YR 2/1) moist; weak fine granular structure; slightly hard, friable; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--18 to 28 centimeters (7 to 11 inches); dark gray (10YR 4/1) loam, very dark gray (10YR 3/1) moist; weak fine subangular blocky structure; slightly hard, friable; strong effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--28 to 38 centimeters (11 to 15 inches); gray (10YR 5/1) loam, very dark grayish brown (10YR 3/2) moist; weak fine subangular blocky structure; slightly hard, friable; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the A horizon is 25 to 51 centimeters (10 to 20 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--38 to 86 centimeters (15 to 34 inches); light gray (10YR 7/2) loam, grayish brown (10YR 5/2) moist; moderate fine subangular blocky structure; slightly hard, friable; violent effervescence; moderately alkaline; calcium carbonate equivalent 20 percent; clear smooth boundary. (25 to 61 centimeters (10 to 24 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--86 to 99 centimeters (34 to 39 inches); light brownish gray (10YR 6/2) very fine sandy loam, grayish brown (10YR 5/2) moist; common fine distinct dark yellowish brown (10YR 4/6) iron masses in the matrix; massive; slightly hard, friable; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--99 to 203 centimeters (39 to 80 inches); stratified light brownish gray (2.5Y 6/2) and gray (2.5Y 5/1) clay loam and loamy sand, grayish brown (2.5Y 5/2) and very dark grayish brown (2.5Y 3/2) moist; common and medium and coarse distinct dark yellowish brown (10YR 4/6) iron masses in the matrix; massive; slightly hard, friable; few small soft accumulations of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NOTREES.json b/inst/extdata/OSD/N/NOTREES.json index 5075dea2c1..4f17327c8c 100644 --- a/inst/extdata/OSD/N/NOTREES.json +++ b/inst/extdata/OSD/N/NOTREES.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--89 to 142 cm (35 to 56 in); white (7.5YR 9.5/1) fine sandy loam, white (7.5YR 9.5/1) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common very fine, common fine, common medium, and common coarse roots throughout; finely disseminated carbonate throughout; 20 percent medium distinct irregular masses between peds and 8 percent medium distinct irregular strongly cemented nodules in matrix of calcium carbonate; 23 percent calcium carbonate equivalent; violent effervescence, by HCL, 1N; moderately alkaline (pH-8.4); gradual smooth boundary. Thickness is 43 to 127 cm (17 to 50 in)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Ab--142 to 175 cm (56 to 69 in); light brown (7.5YR 6/4) fine sand, brown (7.5YR 5/4) moist; weak coarse subangular blocky structure parting to single grain; soft, very friable, nonsticky, nonplastic; common very fine and common fine roots throughout; 3 percent distinct sand coats on vertical faces of peds; 5 percent medium prominent irregular (7.5yr 2.5/1) dry, masses of iron-manganese with sharp boundaries in matrix; finely disseminated carbonate throughout; 2 percent fine irregular masses on faces of peds and 5 percent medium irregular strongly cemented nodules in matrix of calcium carbonate; slight effervescence, by HCL, 1N; strongly alkaline (pH-8.6); gradual smooth boundary. Thickness is 15 to 51 cm (6 to 20 in)" diff --git a/inst/extdata/OSD/N/NOVINA.json b/inst/extdata/OSD/N/NOVINA.json index 3c75c5cbe0..4e69d85270 100644 --- a/inst/extdata/OSD/N/NOVINA.json +++ b/inst/extdata/OSD/N/NOVINA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--97 to 107 centimeters (38 to 42 inches); light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; weak medium subangular blocky structure; hard, firm; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C4--107 to 127 centimeters (42 to 50 inches); grayish brown (2.5Y 5/2) sandy loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct reddish brown (5YR 5/3) moist iron masses in the matrix; massive; hard, friable; slight effervescence; slightly alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--127 to 203 centimeters (50 to 80 inches); pale yellow (2.5Y 8/2) loam, light brownish gray (2.5Y 6/2) moist; massive; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NOXVILLE.json b/inst/extdata/OSD/N/NOXVILLE.json index d14a2bbcfc..3d8c53c78a 100644 --- a/inst/extdata/OSD/N/NOXVILLE.json +++ b/inst/extdata/OSD/N/NOXVILLE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkkm--30 to 100 cm, (12 to 39 in); white (10YR 8/1) cemented material, light gray (10YR 7/2), moist; very strongly cemented; strong effervescence; moderately alkaline, 5-6 mm indurated cap" diff --git a/inst/extdata/OSD/N/NOYES.json b/inst/extdata/OSD/N/NOYES.json index 793218128c..f925201b72 100644 --- a/inst/extdata/OSD/N/NOYES.json +++ b/inst/extdata/OSD/N/NOYES.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "IIB3t--22 to 35 inches; grayish brown (2.5Y 5/2) clay; moderate coarse prismatic structure parting to moderate fine angular blocky structure; very firm; thin patchy very dark grayish brown (2.5Y 3/2) clay films on faces of peds; slight effervescence; moderately alkaline; gradual smooth boundary. (5 to 16 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "IIC1g--35 to 44 inches; grayish brown (2.5Y 5/2) clay; many fine distinct olive brown (2.5Y 4/6) mottles; moderate fine and very fine angular blocky structure; very firm; many masses of gypsum crystals; slight effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC2g--44 to 60 inches; dark grayish brown (2.5Y 4/2) clay, common inclusions of black (2.5Y 2/2) and olive brown (2.5Y 4/4); moderate very fine angular blocky structure; very firm; few gypsum coatings on faces of peds; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/N/NUCKOLLS.json b/inst/extdata/OSD/N/NUCKOLLS.json index 07f209f510..a76ac3b91c 100644 --- a/inst/extdata/OSD/N/NUCKOLLS.json +++ b/inst/extdata/OSD/N/NUCKOLLS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--76 to 132 centimeters (30 to 52 inches); light yellowish brown (10YR 6/4) silt loam, dark yellowish brown (10YR 4/4) moist; weak medium subangular blocky structure; hard, very friable; slight effervescence, moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--132 to 203 centimeters (52 to 80 inches); light yellowish brown (10YR 6/4) loam, dark yellowish brown (10YR 4/4) moist; weak coarse subangular blocky structure; hard, very friable; slight effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/N/NUCLA.json b/inst/extdata/OSD/N/NUCLA.json index e18415ed7e..dfe4d4bde7 100644 --- a/inst/extdata/OSD/N/NUCLA.json +++ b/inst/extdata/OSD/N/NUCLA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--10 to 20 centimeters (4 to 8 inches; brown (10YR 5/3) light clay loam, dark brown (10YR 3/3) moist; moderate coarse prismatic structure parting to moderate coarse subangular blocky; slightly hard, friable; slight effervescence; slightly alkaline (pH 7.4); clear wavy boundary. (10 to 25 centimeters (4 to 10 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--20 to 36 centimeters (8 to 14 inches); pale brown (10YR 6/3) light clay loam, brown (10YR 4/3) moist; moderate coarse prismatic structure parting to moderate coarse subangular blocky; slightly hard, friable; strong effervescence; moderately alkaline (pH 8.2); clear wavy boundary. (8 to 23 centimeters (3 to 9 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck--36 to 152 centimeters (14 to 60 inches); very pale brown (10YR 7/3) light clay loam, yellowish brown (10YR 5/4) moist; massive; slightly hard, friable; violent effervescence; moderately alkaline (pH 8.2)" diff --git a/inst/extdata/OSD/N/NULEY.json b/inst/extdata/OSD/N/NULEY.json index 1e7d906fc4..3e5f8a7f0e 100644 --- a/inst/extdata/OSD/N/NULEY.json +++ b/inst/extdata/OSD/N/NULEY.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "irregular", "narrative": "2C--24 to 50 inches; grayish brown (2.5Y 5/2) gravelly coarse sand, dark grayish brown (2.5Y 4/2) moist; single grain; loose, nonsticky and nonplastic; very few very fine roots; common fine and medium interstitial pores; 25 percent pebbles; moderately effervescent; moderately alkaline (pH 8.2); gradual irregular boundary. (10 to 30 inches thick)" diff --git a/inst/extdata/OSD/N/NUMA.json b/inst/extdata/OSD/N/NUMA.json index 53234a97cf..3d243958df 100644 --- a/inst/extdata/OSD/N/NUMA.json +++ b/inst/extdata/OSD/N/NUMA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violenty effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--87 to 117 centimeters (34 to 46 inches); pale brown (10YR 6/3) loam, yellowish brown (10YR 5/4) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; 4 percent medium, distinct, spherical carbonate masses in matrix; violenty effervescent, 14 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); gradual smooth boundary. (Combined thickness of the Bk1 and Bk2 horizons is 66 to 81 centimeters thick)" diff --git a/inst/extdata/OSD/N/NUNICA.json b/inst/extdata/OSD/N/NUNICA.json index 86b1d1cab8..4327054234 100644 --- a/inst/extdata/OSD/N/NUNICA.json +++ b/inst/extdata/OSD/N/NUNICA.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--25 to 35 inches; stratified reddish brown (5YR 5/3) and 2.5YR 4/4 and 5/4) silt, silt loam, and silty clay loam; weak medium platy structure; friable; few roots; few pores; slight effervescence; moderately alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--35 to 60 inches; stratified reddish brown (5YR 5/3 and 2.5YR 4/3 and 4/4) and pinkish gray (5YR 6/2) silt, silt loam, silty clay loam, and fine sandy loam; weak coarse plates that tend to part along textural layers; friable; few roots; few pores; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NUTLEY.json b/inst/extdata/OSD/N/NUTLEY.json index 87b67b576c..6a8e700cf4 100644 --- a/inst/extdata/OSD/N/NUTLEY.json +++ b/inst/extdata/OSD/N/NUTLEY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; dark gray (10YR 4/1) silty clay, black (10YR 2/1) moist; moderate fine granular structure; slightly hard, friable, sticky and plastic; slight effervescence; moderately alkaline; abrupt smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss--7 to 20 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist, weak coarse prismatic structure parting to moderate very fine and fine blocky; hard, firm, sticky and plastic; tongues 1/4 to 3/4 inches wide of dark gray (10YR 4/1) and black (10YR 2/1) moist; slight effervescence; few intersecting slickensides; moderately alkaline; gradual wavy boundary. (5 to 35 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Css--20 to 48 inches; pale yellow (5Y 7/3) clay, olive (5Y 5/3) moist; common fine prominent yellowish red (5YR 4/6) redoximorhic concentrations and common fine distinct gray (5Y 5/1) redoximorphic depletions; weak fine blocky structure; very hard, firm, very sticky and plastic; fine tongues of dark gray (10YR 4/1) and black (10YR 2/1) moist; strong effervescence; few intersecting slickensides; moderately alkaline; diffuse wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; pale yellow (5Y 7/3) clay, olive (5Y 5/3) moist; many medium prominent yellowish red (5YR 4/6) redoximorphic concentrations and many medium distinct gray (5Y 5/1) redoximorphic depletions; weak medium and fine blocky structure; very hard, firm, very sticky and plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/N/NUTRIOSO.json b/inst/extdata/OSD/N/NUTRIOSO.json index 8d64bf1bfc..0177a3da46 100644 --- a/inst/extdata/OSD/N/NUTRIOSO.json +++ b/inst/extdata/OSD/N/NUTRIOSO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 5 inches; dark gray (10YR 4/1) loam, very dark gray (10YR 3/1) moist; moderate medium platy structure; slightly hard, friable, sticky and plastic; plentiful fine and abundant very fine roots; many very fine interstitial pores; slightly effervescent in places; noneffervescent elsewhere; moderately alkaline (pH 8.2); abrupt smooth boundary. (4 to 6 inches thick.)" diff --git a/inst/extdata/OSD/N/NYSSATON.json b/inst/extdata/OSD/N/NYSSATON.json index efd5619835..ec4bb0c39c 100644 --- a/inst/extdata/OSD/N/NYSSATON.json +++ b/inst/extdata/OSD/N/NYSSATON.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--11 to 20 inches; white (2.5Y 8/2) silt loam, grayish brown (10YR 5/2) moist; massive; soft, very friable, slightly sticky and slightly plastic; common fine roots; common very fine tubular pores; moderately effervescent, few fine veins and spots of calcium carbonates; moderately alkaline (pH 8.2); clear smooth boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/O/OAHE.json b/inst/extdata/OSD/O/OAHE.json index 23a3fcd73d..fbe3902edc 100644 --- a/inst/extdata/OSD/O/OAHE.json +++ b/inst/extdata/OSD/O/OAHE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--15 to 25 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure; slightly hard, friable; common medium and fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (7 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--25 to 60 inches; brown (10YR 5/3) and pale brown (10YR 6/3) gravelly sand, brown (10YR 4/3) moist; single grain; loose; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/OANAPUKA.json b/inst/extdata/OSD/O/OANAPUKA.json index f5a6013b69..4f4a0a3350 100644 --- a/inst/extdata/OSD/O/OANAPUKA.json +++ b/inst/extdata/OSD/O/OANAPUKA.json @@ -89,7 +89,7 @@ "cf_class": "very stony", "pH": 6, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A11--0 to 2 inches; very dark brown (10YR 2/2) very stony silt loam, dark brown (10YR 3/3) dry; weak fine and medium granular structure; soft, very friable, nonsticky and slightly plastic; many fine roots; common fine and very fine pores; 15 percent stones; slight effervescence with hydrogen peroxide; medium acid (pH 6.0); abrupt smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A12--2 to 6 inches; very dark grayish brown (10YR 3/2) silt loam, brown (10YR 4/3) dry; weak medium and coarse subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; many fine roots; many fine and very fine pores; few fine red weathered cinders; slight effervescence with hydrogen peroxide; slightly acid (pH 6.5); clear smooth boundary. (3 to 6 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC4--46 to 55 inches; Aa lava with very little soil material in voids; the soil material is dark yellowish brown (10YR 3/4) loam, yellowish brown (10YR 5/4) dry; massive; soft, very friable, nonsticky and nonplastic; slight effervescence with hydrochloric acid; mildly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/O/OBERT.json b/inst/extdata/OSD/O/OBERT.json index c13d16e626..ae9195e04e 100644 --- a/inst/extdata/OSD/O/OBERT.json +++ b/inst/extdata/OSD/O/OBERT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A1--0 to 25 centimeters (0 to 10 inches); gray (10YR 5/1) silt loam, very dark gray (10YR 3/1) moist; moderate fine granular structure; slightly hard, friable; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--25 to 64 centimeters (10 to 25 inches); dark gray (10YR 4/1) silty clay loam, black (10YR 2/1) moist; weak fine granular structure; hard, firm; few fine distinct light yellowish brown (10YR 6/4) iron masses in the matrix; violent effervescence; moderately alkaline; gradual smooth boundary. (Combined A horizon is 38 to 102 centimeters (15 to 40 inches) thick)" diff --git a/inst/extdata/OSD/O/OGLALA.json b/inst/extdata/OSD/O/OGLALA.json index 3b18b05d45..27e36834d3 100644 --- a/inst/extdata/OSD/O/OGLALA.json +++ b/inst/extdata/OSD/O/OGLALA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--42 to 60 inches; very pale brown (10YR 7/3) fine-grained sandstone, brown (10YR 5/3) moist; weakly bedded; soft; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/O/OJATA.json b/inst/extdata/OSD/O/OJATA.json index b2c9e68ee2..7664aac0c9 100644 --- a/inst/extdata/OSD/O/OJATA.json +++ b/inst/extdata/OSD/O/OJATA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Apz--0 to 8 inches; black (N 2/0) silty clay loam, dark gray (N 4/0) dry; weak very fine subangular blocky structure; hard, friable, sticky, and plastic; common very fine roots; few fine salt crystals; strong effervescence; mildly alkaline; abrupt smooth boundary. (5 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz--8 to 20 inches; gray (5Y 6/1) silt loam, light gray (5Y 7/1) dry; many fine and medium distinct dark gray (5Y 4/1) mottles; weak fine subangular blocky structure; hard, friable, slightly sticky, and slightly plastic; few very fine roots; cracks filled with A material extend to 18 inches; few fine salt crystals; disseminated carbonates throughout; violent effervescence; moderately alkaline; clear wavy boundary. (6 to 26 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--20 to 32 inches; dark grayish brown (2.5Y 4/2) very finely stratified silt loam, light yellowish brown (2.5Y 6/4) dry; common fine distinct gray (5Y 5/1) and yellowish brown (10YR 5/6) mottles; weak fine subangular blocky structure; slightly hard, friable, slightly sticky, and slightly plastic; few very fine roots; slight effervescence; strongly alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--32 to 47 inches; dark grayish brown (2.5Y 4/2) very finely stratified silt loam, pale yellow (2.5Y 7/4) dry; common fine and medium distinct gray (2.5Y 6/1) and few fine distinct dark yellowish brown (10YR 4/4) mottles; weak fine subangular blocky structure; soft, friable, slightly sticky, and slightly plastic; slight effervescence; strongly alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--47 to 60 inches; dark grayish brown (2.5Y 4/2) and olive brown (2.5Y 4/4) silt loam, pale yellow (2.5Y 7/4) and light yellowish brown (2.5Y 6/4) dry; common fine and medium distinct gray (5Y 5/1) mottles; weak fine subangular blocky structure; soft, friable, slightly sticky, and slightly plastic; common medium dark reddish brown (5YR 3/4) (iron- manganese) concretions; common large masses of gypsum crystals; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/OJINAGA.json b/inst/extdata/OSD/O/OJINAGA.json index 9d0e8abdb9..addb5a3c8c 100644 --- a/inst/extdata/OSD/O/OJINAGA.json +++ b/inst/extdata/OSD/O/OJINAGA.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 6 inches; brown (10YR 5/3) very gravelly sandy loam, brown (10YR 4/3), moist; weak coarse subangular blocky structure parting to weak medium subangular blocky parting to weak fine subangular blocky, and weak medium platy structure in upper 1 inch of horizon; common very fine roots throughout; 10 percent discontinuous distinct white (10YR 8/1), dry, carbonate coats on all faces of peds and 35 percent continuous distinct white (10YR 8/1), dry, carbonate coats on rock fragments; 45 percent subangular igneous gravel; violent effervescence; strongly alkaline; gradual smooth boundary (3 to 8 inches thick)." @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "very abrupt", "topography": "smooth", "narrative": "Bk--6 to 12 inches; pale brown (10YR 6/3) very gravelly coarse sandy loam, brown (10YR 4/3), moist; weak medium subangular blocky structure; many very fine roots throughout; 50 percent continuous distinct white (10YR 8/1), dry, carbonate coats on rock fragments; 25 percent subangular igneous gravel and 30 percent subangular calcrete gravel; violent effervescence; strongly alkaline; a layer of calcrete fragments occurs at 8 inch depth with nearly continuous cementation a strongly cemented laminar cap 1 mm thick; very abrupt smooth boundary (0 to 9 inches thick)." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkkm1--12 to 16 inches; cemented material, moist; massive; strongly cemented by carbonates, with indurated laminar cap 2-3 mm thick; common very fine roots top of horizon; 15 percent subrounded igneous gravel; violent effervescence, strongly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkkm2--16 to 22 inches; cemented material, moist; massive; moderately cemented by carbonates; few fine roots in cracks; 12 percent continuous distinct white (10YR 8/1), dry, carbonate coats on rock fragments; 25 percent subangular igneous gravel; strong effervescence; strongly alkaline; gradual smooth boundary. (combined thickness of Bkm horizons 4 to 20 inches)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCk1--22 to 34 inches; light gray (10YR 7/2) extremely gravelly loamy coarse sand, dark yellowish brown (10YR 4/4), moist; single grain; common very fine roots throughout; 50 percent continuous distinct white (10YR 8/1), dry, carbonate coats on rock fragments; 35 percent extremely coarse irregular white (10YR 8/1), dry, carbonate masses throughout; 65 percent subangular igneous gravel; violent effervescence; strongly alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BCk2--34 to 49 inches; light gray (10YR 7/2) extremely gravelly loamy coarse sand, dark yellowish brown (10YR 4/4), moist; single grain; common fine roots throughout and common very fine roots throughout; 35 percent continuous distinct white (10YR 8/1), dry, carbonate coats on rock fragments; 2 percent fine platy white (10YR 8/1), dry, carbonate masses throughout; 62 percent subangular igneous gravel and 3 percent subangular igneous cobbles; violent effervescence; strongly alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "CBk1--49 to 57 inches; light gray (10YR 7/2) extremely gravelly coarse sandy loam, dark yellowish brown (10YR 4/4), moist; single grain; common very fine roots throughout; 10 percent discontinuous distinct white (10YR 8/1), dry, carbonate coats on rock fragments; 1 percent fine irregular extremely weakly cemented white (10YR 8/1), dry, carbonate masses on bottom of rock fragments; 80 percent subangular igneous gravel and 5 percent subangular igneous cobbles; strong effervescence; strongly alkaline; clear smooth boundary." @@ -250,7 +250,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "CBk2--57to 69 inches; light gray (10YR 7/2) extremely gravelly coarse sandy loam, yellowish brown (10YR 5/4), moist; single grain; 25 percent discontinuous distinct white (10YR 8/1), dry, carbonate coats on rock fragments; 2 percent coarse irregular moderately cemented white (10YR 8/1), dry, carbonate nodules on bottom of rock fragments; 25 percent subangular igneous gravel; strong effervescence,; strongly alkaline; clear smooth boundary." @@ -273,7 +273,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--69 to 80 inches; brown (10YR 5/3) extremely gravelly loamy coarse sand, brown (10YR 4/3), moist; single grain; 35 percent discontinuous prominent white (10YR 8/1), dry, carbonate coats on rock fragments; 1 percent very coarse cylindrical very pale brown (10YR 8/2), dry, carbonate masses throughout; 65 percent subangular igneous gravel; violent effervescence; strongly alkaline" diff --git a/inst/extdata/OSD/O/OKATON.json b/inst/extdata/OSD/O/OKATON.json index ddee65b84d..55d0a961a0 100644 --- a/inst/extdata/OSD/O/OKATON.json +++ b/inst/extdata/OSD/O/OKATON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 2 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate fine and very fine granular structure; slightly hard, friable, slightly sticky; many roots; strong effervescence; slightly alkaline; gradual smooth boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--2 to 8 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky and weak coarse granular structure; hard, friable, sticky and slightly plastic; common fine fragments of shale; many fine roots; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--8 to 14 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; 70 percent by volume fragments of shale; few fine accumulations of carbonate; many fine roots; strong effervescence; slightly alkaline; clear smooth boundary. (4 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cr1--14 to 21 inches; grayish brown (2.5Y 5/2) fractured shale, dark grayish brown (2.5Y 4/2) moist; thin seams of yellowish brown (10YR 5/6) between shale plates, dark yellowish brown (10YR 4/6) moist; rock structure evident; easily dug with spade; common fine and medium roots; slight effervescence; slightly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cr2--21 to 30 inches; light brownish gray (2.5Y 6/2) bedded shale, dark grayish brown (2.5Y 4/2) moist; thin seams of light yellowish brown (10YR 6/4) between shale plates, yellowish brown (10YR 5/4) moist; rock structure evident; easily dug with spade; common fine nests of gypsum in seams; slight effervescence; slightly alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr3--30 to 60 inches; light brownish gray (2.5Y 6/2) bedded shale, dark grayish brown (2.5Y 4/2) moist; thin seams of light yellowish brown (2.5Y 6/4) between shale plates, olive brown (2.5Y 4/4) moist; easily dug with spade; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/OKO.json b/inst/extdata/OSD/O/OKO.json index 1b08ec3a45..eb33646662 100644 --- a/inst/extdata/OSD/O/OKO.json +++ b/inst/extdata/OSD/O/OKO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--7 to 15 inches; grayish brown (2.5Y 5/2) clay, very dark grayish brown (10YR 3/2) moist; moderate medium prismatic structure parting to moderate medium and fine subangular blocky; very hard, firm, sticky and plastic; cracks 1/2 inch wide; few organic stains on vertical faces of peds; shiny films on faces of peds; common coarse accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 9 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--15 to 21 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; hard, firm, sticky and plastic; cracks 1/2 inch wide; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--21 to 28 inches; light brownish gray (2.5Y 6/2) clay, grayish brown (2.5Y 5/2) and dark grayish brown (2.5Y 4/2) moist; few fine distinct mottles of yellowish brown (10YR 5/4) and yellowish red (5YR 5/8) moist; weak coarse subangular blocky structure; hard, firm, sticky and plastic; few fine fragments of shale; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bky--28 to 33 inches; gray (5Y 6/1) and light olive gray (5Y 6/2) clay, very dark gray (5Y 3/1) and olive gray (5Y 4/2) moist; weak medium subangular blocky structure; hard, firm, sticky and plastic; common fine accumulations of carbonate; common fine fragments of shale; many fine accumulations of gypsum; strong effervescence; moderately alkaline; diffuse wavy boundary. (Combined Bk horizons is 0 to 35 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--33 to 60 inches; gray (5Y 6/1) with bands of light olive gray (5Y 6/2) clay, very dark gray (5Y 3/1) with bands of olive gray (5Y 4/2) moist; massive; hard, firm, sticky and plastic; many fine fragments of shale; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/OKREEK.json b/inst/extdata/OSD/O/OKREEK.json index 551fd876f0..b7dfc84310 100644 --- a/inst/extdata/OSD/O/OKREEK.json +++ b/inst/extdata/OSD/O/OKREEK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--16 to 22 inches; light brownish gray (2.5Y 6/2) clay, grayish brown (2.5Y 5/2) moist; strong coarse prismatic structure parting to moderate medium and coarse blocky; extremely hard, extremely firm, sticky, plastic; few fine accumulations of carbonate; strong effervescence; slightly alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--22 to 30 inches; light olive gray (5Y 6/2) clay, grayish brown (2.5Y 5/2) moist; strong coarse prismatic structure parting to weak coarse blocky; extremely hard, extremely firm; very sticky, very plastic; common fine and medium accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary. (6 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--30 to 38 inches; light olive gray (5Y 6/2) clay, light brownish gray (2.5Y 6/2) moist; massive; extremely hard, extremely firm, very sticky, very plastic; few to common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--38 to 60 inches; light olive gray (5Y 6/2) clay shale, olive gray (5Y 5/2) moist; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/OLBUT.json b/inst/extdata/OSD/O/OLBUT.json index 107f751cee..6e5c769ded 100644 --- a/inst/extdata/OSD/O/OLBUT.json +++ b/inst/extdata/OSD/O/OLBUT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btz--36 to 51 centimeters (14 to 20 inches); grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; few fine distinct yellowish brown (10YR 5/4) moist mottles; strong medium prismatic structure parting to strong medium angular blocky; hard, firm; many small salt clusters; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of Bt is 25 to 66 centimeters (10 to 26 inches) thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCz--51 to 74 centimeters (20 to 29 inches); light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct yellowish brown (10YR 5/4) moist mottles; moderate medium subangular blocky structure; hard, friable; many small salt clusters; slight effervescence; moderately alkaline; gradual wavy boundary. (15 to 25 centimeters (6 to 10 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cz1--74 to 97 centimeters (29 to 38 inches); light gray (5Y 7/2) silty clay loam, light olive gray (5Y 6/2) moist; many medium prominent strong brown (7.5YR 5/6) moist mottles; massive; hard, friable; many medium salt clusters; slight effervescence; strongly alkaline; gradual wavy boundary. (4 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cz2--97 to 200 centimeters (38 to 80 inches); light gray (5Y 7/2) silt loam, light olive gray (5Y 6/2) moist; many coarse prominent strong brown (7.5YR 5/6) moist mottles; massive; hard, friable; many medium salt clusters; slight effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/O/OLDHAM.json b/inst/extdata/OSD/O/OLDHAM.json index 8ccb7e8045..d9d74a78fb 100644 --- a/inst/extdata/OSD/O/OLDHAM.json +++ b/inst/extdata/OSD/O/OLDHAM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 23 centimeters (0 to 9 inches); black (10YR 2/1) silty clay loam, very dark gray (10YR 3/1) dry; weak fine subangular blocky structure parting to weak fine granular; slightly hard, friable, slightly sticky and slightly plastic; few snail shells; common very fine roots; few very fine pores; slight effervescence; slightly alkaline (pH 7.4); abrupt smooth boundary. [The thickness of the A horizon is 20 to 61 centimeters (8 to 24 inches).]" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bg--23 to 48 centimeters (9 to 19 inches); very dark gray (5Y 3/1) silty clay, gray (5Y 5/1) dry; weak fine and medium subangular blocky structure; very hard, firm, sticky and plastic; few very fine roots; few very fine pores; strong effervescence; moderately alkaline (pH 8.0); gradual wavy boundary. [The thickness of the Bg horizon is 0 to 38 centimeters (0 to 15 inches).]" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Bkg--48 to 79 centimeters (19 to 31 inches); very dark gray (5Y 3/1) silty clay, gray (5Y 5/1) dry; weak coarse prismatic structure parting to weak fine and medium subangular blocky; very hard, firm, sticky and plastic; few very fine roots; few very fine pores; common medium and coarse accumulations of calcium carbonate; strong effervescence; moderately alkaline (pH 8.0); gradual irregular boundary. [The thickness of the Bg horizon is 0 to 38 centimeters (0 to 15 inches).]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Bkgy--79 to 102 centimeters (31 to 40 inches); very dark gray (5Y 3/1) silty clay, gray (5Y 5/1) dry; few fine prominent strong brown (7.5YR 5/8) redoximorphic concentrations; weak fine and medium subangular blocky structure; very hard, firm, sticky and plastic; few very fine roots; few very fine pores; common fine and medium masses of calcium carbonate; common fine crystals of gypsum and other salts; strong effervescence; moderately alkaline (pH 8.0); gradual irregular boundary. [The thickness of the Bg horizon is 0 to 38 centimeters (0 to 15 inches).]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--102 to 152 centimeters (40 to 60 inches); olive gray (5Y 5/2) silt loam, light gray (5Y 7/2) dry; many fine and medium prominent strong brown (7.5YR 5/8) redoximorphic concentrations; massive; very hard, firm, slightly sticky and slightly plastic; common fine dark brown (7.5YR 3/2) concretions of manganese; strong effervescence; moderately alkaline (pH 8.0); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg2--152 to 183 centimeters (60 to 72 inches); olive gray (5Y 5/2) silt loam, light olive gray (5Y 6/2) moist; common fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; very hard, firm, slightly sticky and slightly plastic; common fine dark brown (7.5YR 3/2) concretions of manganese; strong effervescence; moderately alkaline (pH 8.0); gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--183 to 203 centimeters (72 to 80 inches); olive gray (5Y 5/2) silty clay loam, light olive gray (5Y 6/2) moist; common fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; very hard, firm, slightly sticky and slightly plastic; few fine dark brown (7.5YR 3/2) concretions of manganese; strong effervescence; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/O/OLTON.json b/inst/extdata/OSD/O/OLTON.json index c55b5c2781..d6bd92bd4f 100644 --- a/inst/extdata/OSD/O/OLTON.json +++ b/inst/extdata/OSD/O/OLTON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btk3--191 to 251 cm (75 to 99 in); red (2.5YR 5/6) clay loam, red (2.5YR 4/6) moist; weak very coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm; few distinct clay films on faces of peds and clay bridged sand grains; common soft to weakly cemented films of calcium carbonate decreases with depth and are less than 2 percent in lower part; ped surfaces are strongly effervescent, some interiors of peds are noneffervescent; moderately alkaline." diff --git a/inst/extdata/OSD/O/OMAK.json b/inst/extdata/OSD/O/OMAK.json index b1923e3ef5..41d480765a 100644 --- a/inst/extdata/OSD/O/OMAK.json +++ b/inst/extdata/OSD/O/OMAK.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bkqm--47 inches; light gray (2.5Y 7/2) silica-cemented duripan which crushes to sandy loam, olive brown (2.5Y 4/4) moist; massive; extremely hard, very firm; nonsticky and nonplastic; indurated; 5 percent pebbles; strongly alkaline (pH 8.6); weakly effervescent; few masses of segregated lime." diff --git a/inst/extdata/OSD/O/OMIO.json b/inst/extdata/OSD/O/OMIO.json index 8d003282e6..55471c0236 100644 --- a/inst/extdata/OSD/O/OMIO.json +++ b/inst/extdata/OSD/O/OMIO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BCk--12 to 22 inches; brown (10YR 5/3) silt loam; olive brown (2.5Y 4/4) moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; hard, friable, slightly sticky, slightly plastic; few very fine roots; few very fine continuous random pores; strong effervescence; mildly alkaline; clear smooth boundary. (0 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--22 to 31 inches; light yellowish brown (2.5Y 6/4) silt loam; dark grayish brown (2.5Y 4/2) moist; moderate coarse subangular blocky structure; hard, friable, slightly sticky, slightly plastic; few very fine roots; few very fine continuous random pores; strong effervescence; mildly alkaline; abrupt wavy boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2C2--31 to 38 inches; olive (5Y 5/3) silt loam; olive (5Y 4/3) moist; strong medium and coarse angular blocky structure; very hard, firm, slightly sticky, slightly plastic; few very fine roots follow interfaces between adjacent peds; few very fine discontinuous pores; strong effervescence; mildly alkaline; abrupt wavy boundary. (4 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--38 to 60 inches; light olive gray (5Y 6/2) stratified soft siltstone; slight effervescence." diff --git a/inst/extdata/OSD/O/ONITA.json b/inst/extdata/OSD/O/ONITA.json index 2e18e7cdee..da163f026e 100644 --- a/inst/extdata/OSD/O/ONITA.json +++ b/inst/extdata/OSD/O/ONITA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--30 to 38 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium blocky; hard, firm, slightly sticky, and slightly plastic; few fine threads of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--38 to 55 inches; light yellowish brown (2.5Y 6/4) silty clay loam, light olive brown (2.5Y 5/4) moist; weak medium subangular blocky structure; slightly hard, friable; disseminated carbonate and common fine threads of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (7 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--55 to 60 inches; light yellowish brown (2.5Y 6/4) silty clay loam, light olive brown (2.5Y 5/4) moist; massive; slightly hard, friable, few fine accumulations of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/OPAL.json b/inst/extdata/OSD/O/OPAL.json index e280b957c9..9843661140 100644 --- a/inst/extdata/OSD/O/OPAL.json +++ b/inst/extdata/OSD/O/OPAL.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss1--5 to 25 centimeters (2 to 10 inches); grayish brown (2.5Y 5/2) clay, very dark grayish brown (2.5Y 3/2) moist; moderate medium and coarse subangular blocky structure; very hard, firm, very sticky and very plastic; many fine and medium roots; common distinct nonintersecting slickensides; cracks 1.5 centimeters (1/2 inch) wide; 1 percent pebbles; slight effervescence; neutral; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss2--25 to 41 centimeters (10 to 16 inches); grayish brown (2.5Y 5/2) clay, very dark grayish brown (2.5Y 3/2) moist; weak coarse prismatic structure parting to moderate medium and coarse subangular blocky; extremely hard, firm, very sticky and very plastic; common fine and medium roots; many prominent intersecting slickensides; cracks 3 centimeters (1 inch) wide; 1 percent pebbles; strong effervescence; moderately alkaline; clear wavy boundary. [Combined Bss horizons 20 to 51 centimeters (8 to 20 inches) thick.]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss--41 to 66 centimeters (16 to 26 inches); light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium and coarse subangular blocky; extremely hard, firm, very sticky and very plastic; few fine roots; many prominent intersecting slickensides; cracks 1.5 to 3 centimeters (1/2 to 1 inch) wide; many fine and medium accumulations of carbonate; 1 percent pebbles; strong effervescence; moderately alkaline; clear wavy boundary. [0 to 38 centimeters (0 to 15 inches) thick.]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cyz1--66 to 76 centimeters (26 to 30 inches); light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; many fine distinct yellowish brown (10YR 5/6) mottles; massive; very hard, firm, very sticky and very plastic; many fine nests of gypsum and other salts; 1 percent pebbles; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cyz2--76 to 89 centimeters (30 to 35 inches); light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; few fine prominent strong brown (7.5YR 5/6) and common fine distinct yellowish brown (10YR 5/6) mottles; massive; hard, friable, very sticky, and very plastic; 55 percent soft shale fragments; many fine and medium nests of gypsum and other salts; strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cr1--89 to 104 centimeters (35 to 41 inches); light brownish gray (2.5Y 6/2) and dark gray (5Y 4/1) soft shale, dark grayish brown (2.5Y 4/2); moist; common fine prominent strong brown (7.5YR 5/6) mottles; many yellowish brown (10YR 5/6) iron stains in cracks and seams; many fine nests of gypsum and other salts; strong effervescence; slightly alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/O/OPECHEKAHTA.json b/inst/extdata/OSD/O/OPECHEKAHTA.json index 06e6c5c6b3..0fa39aef75 100644 --- a/inst/extdata/OSD/O/OPECHEKAHTA.json +++ b/inst/extdata/OSD/O/OPECHEKAHTA.json @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ABk--6 to 16 cm; grayish brown (10YR 5/2) gravelly silt loam, dark grayish brown (10YR 4/2) moist; weak medium and strong fine granular structure; soft, very friable, slightly sticky and slightly plastic; many very fine, common fine and medium roots throughout; about 20 percent subangular and subrounded fine and medium limestone gravel; finely dessiminated calcium carbonate throughout; strong effervescence; slightly alkaline; clear smooth boundary. (0 to 13 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--16 to 38 cm; brown (10YR 5/3) gravelly silt loam, brown (10YR 4/3) moist; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and common fine and medium and few coarse roots throughout; about 25 percent subangular and subrounded limestone fragments, of which 20 percent are gravel and 5 percent cobble; many medium distinct light brownish gray (10YR 6/2) spherical carbonate masses throughout; few fine distinct light gray (10YR 7/2) carbonate threads throughout; violent effervescence; moderately alkaline; clear smooth boundary. (15 to 38 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2CBk--57 to 92 cm; light reddish brown (5YR 6/4) gravelly silt loam, reddish brown (5YR 5/4) moist; massive parting to thin and moderately thick, plate-like rock structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine and fine and few medium and coarse roots throughout; about 30 percent subangular and subrounded limestone fragments, of which 20 percent are gravel and 10 percent cobble; many medium prominent white (7.5YR 8/1) carbonate threads and spherical masses throughout; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 38 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "3Ck--92 to 133 cm; red (2.5YR 5/6) silt loam, red (2.5YR 4/6) moist; massive with thin plate-like shale rock structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots between shale plates; common to many fine and medium prominent white (7.5YR 8/1) carbonate threads throughout; strong effervescence; moderately alkaline; gradual wavy boundary. (30 to 61 cm thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "3Cr1--133 to 170 cm; red (2.5YR 5/6) highly fragmented silty shale; breaks into medium to very coarse, weakly to strongly cemented angular block-like rock fragments; few very fine and fine roots, primarily between blocks; continuous white (7.5YR 8/1) calcium carbonate coatings on blocks along fracture planes; slight effervescence; diffuse wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Cr2--170 to 203 cm; red (2.5YR 5/6) weakly fragmented silty shale; breaks into coarse and very coarse, moderately to strongly cemented angular block-like rock fragments; very few white (7.5YR 8/1) calcium carbonate coatings on blocks along fracture planes; slight effervescence." diff --git a/inst/extdata/OSD/O/OPNISH.json b/inst/extdata/OSD/O/OPNISH.json index 0fd75deb11..0035c48ec5 100644 --- a/inst/extdata/OSD/O/OPNISH.json +++ b/inst/extdata/OSD/O/OPNISH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; dark gray (10YR 4/1) ashy loam, very dark brown (10YR 2/2) moist; moderate medium granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and common fine roots; many very fine tubular pores; slight effervescence; NaF pH 9.5; moderately alkaline (pH 7.9); abrupt smooth boundary. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "ABtk--8 to 13 inches; dark gray (10YR 4/1) ashy clay loam; very dark brown (10YR 2/2) moist; moderate medium subangular blocky parting to moderate medium granular; hard, friable, slightly sticky and slightly plastic; many very fine roots; common very fine tubular and vesicular pores; few faint soft masses of lime throughout; few faint dark yellowish brown (10YR 4/4) clay films in pores and on faces of peds; slight effervescence, moderately alkaline (pH 7.9); clear wavy boundary. (4 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--13 to 19 inches; dark grayish brown (10YR 4/2) clay loam, very dark gray (10YR 3/1) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; very hard, friable, moderately sticky and moderately plastic; common very fine roots; common fine tubular and vesicular pores; common medium soft masses of lime throughout; few faint clay films lining pores and on faces of peds; slight effervescence, moderately alkaline (pH 8.4); clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk2--19 to 26 inches; dark grayish brown (10YR 4/2) clay loam, very dark gray (10YR 3/1) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; very hard, friable, moderately sticky and moderately plastic; common very fine roots; common fine tubular and vesicular pores; common distinct soft masses of lime throughout; common distinct clay films lining pores and on faces of peds; 5 percent gravel; slight effervescence, moderately alkaline (pH 8.4); abrupt wavy boundary. (Combined Btk horizon is 10 to 22 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Btk3--26 to 37 inches; dark grayish brown (10YR 4/2) extremely gravelly clay loam, very dark grayish brown (10YR 3/2) moist; few faint mottles throughout; moderate medium subangular blocky structure parting to moderate fine subangular blocky; hard, friable, moderately sticky and moderately plastic; few very fine roots; common fine irregular and tubular pores; common distinct white (10YR 8/1) carbonate coats on faces of peds and on rock fragments; common distinct clay films lining pores and on faces of peds; 65 percent gravel and 10 percent cobbles; slight effervescence, moderately alkaline (pH 8.2); clear wavy boundary. (7 to 12 inches thick)" diff --git a/inst/extdata/OSD/O/ORD.json b/inst/extdata/OSD/O/ORD.json index 3a90c18a5b..f83a314020 100644 --- a/inst/extdata/OSD/O/ORD.json +++ b/inst/extdata/OSD/O/ORD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ak1--0 to 30 centimeters (0 to 12 inches); very dark gray (10YR 3/1) loam, gray (10YR 5/1) dry; weak fine granular structure; very friable, slightly hard; many fine and very fine roots throughout; strong effervescence; finely disseminated carbonate throughout; 20 percent calcium carbonate equivalent; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ak2--30 to 43 centimeters (12 to 17 inches); very dark gray (10YR 3/1) fine sandy loam, dark gray (10YR 4/1) dry; weak moderate subangular blocky parting to weak fine granular structure; very friable, slightly hard; many fine and very fine roots throughout; slight effervescence; finely disseminated carbonate throughout; slightly alkaline; abrupt wavy boundary. [Combined thickness of the Ak horizon is 18 to 51 centimeters (7 to 20 inches) thick]" diff --git a/inst/extdata/OSD/O/ORELIA.json b/inst/extdata/OSD/O/ORELIA.json index e634d27c1a..dd92060a22 100644 --- a/inst/extdata/OSD/O/ORELIA.json +++ b/inst/extdata/OSD/O/ORELIA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--76 to 109 cm (30 to 43 in); dark grayish brown (10YR 4/2) and 50 percent grayish brown (10YR 5/2)sandy clay loam, dark grayish brown (10YR 4/2) and 50 percent grayish brown (10YR 5/2) dry; moderate coarse angular blocky structure; very hard, firm; common very fine roots in cracks; common very fine tubular pores; 5 percent prominent pressure faces; 10 percent distinct dark grayish brown (10YR 4/2) clay films on vertical faces of peds; few cracks 1 to 3 mm in width; few cracks filled with very dark gray (10YR 3/1) loam; 2 percent fine and medium faint brown (10YR 4/3) masses of oxidized iron with clear boundaries in matrix; 1 percent fine white (2.5Y 8/1) nodules of calcium carbonate; 10 percent medium and coarse white (2.5Y 8/1) masses of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--109 to 146 cm (43 to 57 in); brown (10YR 5/3) sandy clay loam, pale brown (10YR 6/3) dry; weak coarse subangular blocky structure; hard, friable; common very fine roots; common very fine tubular pores; 10 percent distinct very dark gray (10YR 3/1) organo-argillans on vertical faces of peds; 30 percent distinct dark grayish brown (10YR 4/2) clay films on vertical faces of peds; 2 percent fine white (2.5Y 8/1) nodules of calcium carbonate; 35 percent medium and coarse white (2.5Y 8/1) masses of calcium carbonate; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk3--146 to 192 cm (57 to 75 in); light yellowish brown (2.5Y 6/4) sandy clay loam, light yellowish brown (10YR 6/4) dry; weak coarse subangular blocky structure; hard, friable; common very fine roots; 15 percent distinct light yellowish brown (2.5Y 6/4) clay films on vertical faces of peds; 5 percent fine white (2.5Y 8/1) nodules of calcium carbonate; 25 percent medium and coarse white (2.5Y 8/1) masses of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the Btk horizons is 52 to 90 cm [21 to 36 in])" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk4--192 to 203 cm (75 to 80 in); light olive brown (2.5Y 5/4) sandy clay loam, light yellowish brown (10YR 6/4) dry; weak very coarse subangular blocky structure; slightly hard, friable; few very fine roots; 5 percent distinct light yellowish brown (10YR 6/4) clay films on vertical faces of peds; 5 percent fine white (2.5Y 8/1) nodules of calcium carbonate; 20 percent medium and coarse white (2.5Y 8/1) masses of calcium carbonate; 3 percent medium very dark gray (10YR 3/1) insect casts; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/ORONOCO.json b/inst/extdata/OSD/O/ORONOCO.json index 0a9b1720ea..6e4f441238 100644 --- a/inst/extdata/OSD/O/ORONOCO.json +++ b/inst/extdata/OSD/O/ORONOCO.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--74 to 77 inches; light yellowish brown (2.5Y 6/4) silt loam; few fine distinct light olive brown (2.5Y 5/6) mottles; massive; very friable; many very fine discontinuous pores; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/O/ORTON.json b/inst/extdata/OSD/O/ORTON.json index 8b0bf526b8..e334f03ffa 100644 --- a/inst/extdata/OSD/O/ORTON.json +++ b/inst/extdata/OSD/O/ORTON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--11 to 16 inches; brown (10YR 5/3) fine sandy loam, dark brown (10YR 4/3) moist; weak coarse prismatic structure; slightly hard, friable; many fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--16 to 24 inches; brown (10YR 5/3) sandy loam, dark brown (10YR 4/3) moist; massive, soft, very friable; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizon is 5 to 20 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--24 to 60 inches; pale brown (10YR 6/3) and grayish brown (10YR 5/2) gravelly sand, dark brown (10YR 4/3) and dark grayish brown (10YR 4/2) moist; single grain; loose; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/ORWET.json b/inst/extdata/OSD/O/ORWET.json index 3d7ba9383c..3be8891765 100644 --- a/inst/extdata/OSD/O/ORWET.json +++ b/inst/extdata/OSD/O/ORWET.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak--0 to 18 inches; black (10YR 2/1) loam, gray (N 5/0) dry; moderate fine and very fine granular structure; slightly hard, friable; moderately alkaline; violent effervescence, 20 percent calcium carbonate equivalent; clear smooth boundary. (10 to 20 inches thick)" diff --git a/inst/extdata/OSD/O/OSHONE.json b/inst/extdata/OSD/O/OSHONE.json index 769a9d39b5..3357238050 100644 --- a/inst/extdata/OSD/O/OSHONE.json +++ b/inst/extdata/OSD/O/OSHONE.json @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bkq--119 to 152 cm; multi-colored weakly cemented extremely gravelly sand; massive; slightly hard, friable, nonsticky and nonplastic; few fine roots; 80 percent gravel; strong effervescence." diff --git a/inst/extdata/OSD/O/OTOOLE.json b/inst/extdata/OSD/O/OTOOLE.json index 7a1db60f3d..3a1af9f563 100644 --- a/inst/extdata/OSD/O/OTOOLE.json +++ b/inst/extdata/OSD/O/OTOOLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 6 inches; pale brown (10YR 6/3) silt loam, dark grayish brown (10YR 4/2) moist; strong thin platy structure; soft, very friable, nonsticky and slightly plastic; many fine roots; many very fine pores; strong effervescence; very strongly alkaline (pH 9.6); abrupt smooth boundary. (3 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--6 to 10 inches; pale brown (10YR 6/3) silt loam, very dark grayish brown (10YR 3/2) moist; massive; soft, very friable, nonsticky and slightly plastic; few very fine roots; few very fine and fine tubular pores; strong effervescence; very strongly alkaline (pH 9.6); gradual smooth boundary. (3 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--10 to 17 inches; very pale brown (10YR 7/3) silt loam, brown (10YR 4/3) moist; massive; soft matrix containing 50 percent hard durinodes; very friable, nonsticky and slightly plastic; few very fine roots; few very fine and fine tubular pores; strong effervescence; very strongly alkaline (pH 9.6); abrupt smooth boundary. (4 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2casim--17 to 30 inches; brown (10YR 4/3) silica cemented duripan; weak thick platy; very firm, strongly cemented with thin indurated lenses on top of plates; indurated laminar capping nearly continuous; strong effervescence; very strongly alkaline (pH 9.6)." diff --git a/inst/extdata/OSD/O/OTTUMWA.json b/inst/extdata/OSD/O/OTTUMWA.json index 59cd14b127..0547f17808 100644 --- a/inst/extdata/OSD/O/OTTUMWA.json +++ b/inst/extdata/OSD/O/OTTUMWA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 18 centimeters (0 to 7 inches); olive gray (5Y 4/2) clay, dark olive gray (5Y 3/2) moist; weak medium subangular blocky structure parting to weak fine granular; hard, firm, sticky and plastic; few fine and medium roots; slight effervescence; moderately alkaline; clear smooth boundary. [10 to 20 centimeters (4 to 8 inches thick)]" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--18 to 41 centimeters (7 to 16 inches); olive gray (5Y 4/2) clay, dark olive gray (5Y 3/2) moist; moderate fine and medium subangular blocky structure; hard, firm, sticky and plastic; few fine and medium roots; slight effervescence; strongly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--41 to 64 centimeters (16 to 25 inches); olive gray (5Y 5/2) clay, olive (5Y 4/3) moist; tongues of dark olive gray (5Y 3/2) moist; moderate medium blocky structure parting to moderate fine blocky; hard, firm, sticky and plastic; few slickensides; few fine roots; slight effervescence; moderately alkaline; clear wavy boundary. [Combined Bw horizons is 18 to 53 centimeters (7 to 21 inches thick)]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--64 to 81 centimeters (25 to 32 inches); olive gray (5Y 5/2) clay, olive (5Y 4/3) moist; strong medium and coarse blocky structure parting to moderate medium and fine blocky; very hard, very firm, sticky and plastic; few slickensides; few fine roots; few fine accumulations of carbonate; slight effervescence; moderately alkaline; clear wavy boundary. [13 to 81 centimeters (5 to 32 inches thick)]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky--81 to 107 centimeters (32 to 42 inchesa0; olive (5Y 5/3) clay, olive gray (5Y 5/2) moist; few fine yellowish brown (10YR 5/6) moist iron stains; weak coarse subangular blocky structure; hard, firm, sticky and plastic; about 30 percent soft shale fragments; few fine roots; common fine accumulations of carbonate; few fine accumulations of gypsum; slight effervescence; slightly alkaline; gradual wavy boundary. [0 to 61 centimeters (0 to 24 inches thick)]" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--107 to 130 centimeters (42 to 51 inchesa0; olive gray (5Y 5/2) silty clay, dark gray (5Y 4/1) moist; few fine yellowish brown (10YR 5/6) moist iron stains; massive; hard, firm, sticky and plastic; about 55 percent soft shale fragments; few fine roots; slight effervescence; neutral; gradual wavy boundary. [0 to 38 centimeters (0 to 15 inches thick)]" diff --git a/inst/extdata/OSD/O/OVERBOARD.json b/inst/extdata/OSD/O/OVERBOARD.json index 5b9a27bb70..e05529aff2 100644 --- a/inst/extdata/OSD/O/OVERBOARD.json +++ b/inst/extdata/OSD/O/OVERBOARD.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "no effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cg1 -- 176 to 226 cm; black (5Y 2.5/1) silt loam; massive; slightly fluid; 1 percent by volume shell fragments; slightly alkaline (pH 7.6), strongly acid (pH 5.4) after 16 weeks; no color reaction with 3% hydrogen peroxide, no effervescent with 30% hydrogen peroxide; gradual boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "no effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2 -- 226 to 276 cm; black (5Y 2.5/1) silt loam; massive; slightly fluid; 10 percent by volume root fragments; slightly alkaline (pH 7.5), moderately acid (pH 5.7) after 16 weeks; no color reaction with 3% hydrogen peroxide, no effervescent with 30% hydrogen peroxide; gradual boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "no effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cg3 -- 276 to 317 cm; black (5Y 2.5/1) silt loam; massive; slightly fluid; 10 percent by volume root fragments; neutral (pH 7.3), moderately acid (pH 5.9) after 16 weeks; no color reaction with 3% hydrogen peroxide, no effervescent with 30% hydrogen peroxide; gradual boundary." diff --git a/inst/extdata/OSD/O/OVERLAKE.json b/inst/extdata/OSD/O/OVERLAKE.json index 37c71e67ce..3aa3b6d59c 100644 --- a/inst/extdata/OSD/O/OVERLAKE.json +++ b/inst/extdata/OSD/O/OVERLAKE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bk--79 to 114 centimeters (31 to 45 inches); very pale brown (10YR 8/2) very fine sandy loam, very pale brown (10YR 7/3) moist; moderate medium subangular blocky structure; hard, friable; 8 percent calcium carbonates; many fine carbonate threads; violent effervescence; strongly alkaline; gradual smooth boundary. (25 to 51 centimeters (10 to 20 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--114 to 203 centimeters (45 to 80 inches); light gray (10YR 7/2) fine sandy loam, pale brown (10YR 6/3) moist; few fine faint yellowish brown (10YR 5/6) relic iron masses; massive; slightly hard, very friable; 6 percent calcium carbonates; many fine and medium carbonate threads; violent effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/O/OVERLY.json b/inst/extdata/OSD/O/OVERLY.json index 5bc44a5619..e84c7a2ffd 100644 --- a/inst/extdata/OSD/O/OVERLY.json +++ b/inst/extdata/OSD/O/OVERLY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 20 inches; grayish brown (2.5Y 5/2) silty clay loam, very dark grayish brown (2.5Y 3/2) moist; few fine faint brown (10YR 4/3) moist redoximorphic concentrations; moderate fine subangular blocky structure; hard, friable, sticky and slightly plastic; few fine roots; common fine pores; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--20 to 28 inches; light yellowish brown (2.5Y 6/4) silty clay loam, light olive brown (2.5Y 5/4) moist; few faint yellowish brown (10YR 5/4) redoximorphic concentrations; moderate medium and very fine subangular blocky structure; hard, friable, sticky and slightly plastic; few roots; common fine pores; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--28 to 38 inches; light yellowish brown (2.5Y 6/4) silty clay loam, olive brown (2.5Y 4/4) moist; few fine prominent light gray (5Y 7/1) redoximorphic depletions and faint light yellowish brown (10YR 6/4) redoximorphic concentrations; moderate very fine subangular blocky structure; hard, friable, sticky and slightly plastic; few roots; few fine pores; strong effervescence; moderately alkaline, clear wavy boundary. (Combined Bk horizons 6 to 30 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 60 inches; multicolored light yellowish brown (2.5Y 6/4), pale olive (5Y 6/3), gray (5Y 6/1), and yellowish brown (10YR 5/6) laminated silt loam and silty clay loam; gray (5Y 6/1) redoximorphic depletions and prominent yellowish brown (10YR 5/6) redoximorphic concentrations in the lower part; very hard, firm, sticky and plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/O/OVIDCREEK.json b/inst/extdata/OSD/O/OVIDCREEK.json index b74db6c524..8702b26a1d 100644 --- a/inst/extdata/OSD/O/OVIDCREEK.json +++ b/inst/extdata/OSD/O/OVIDCREEK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 2 inches; gray (10YR 5/1) silt loam, black (10YR 2/1) moist; strong medium and thick platy structure parting to moderate fine and medium subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; many very fine and few fine roots; many very fine irregular and few very fine and fine tubular pores; moderately effervescent; disseminated lime (15 percent calcium carbonate equivalent); moderately alkaline (pH 8.1); abrupt smooth boundary. (2 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A2--2 to 5 inches; dark gray (10YR 4/1) silt loam, black (10YR 2/1) broken and very dark gray (10YR 3/1) crushed moist; weak fine and medium subangular blocky structure parting to moderate very fine granular; slightly hard, very friable, slightly sticky and slightly plastic; common very fine, fine and medium roots; many very fine irregular and common very fine tubular pores; moderately effervescent; disseminated lime (25 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); abrupt smooth boundary. (0 to 3 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkn1--5 to 11 inches; gray (10YR 5/1) silty clay loam, black (N 2/) broken and very dark gray (10YR 3/1) crushed moist; moderate medium prismatic structure parting to strong very fine and fine subangular blocky; slightly hard, very friable, moderately sticky and moderately plastic; common very fine, fine and medium roots; many very fine tubular pores; common distinct clay films on faces of peds and in pores; moderately effervescent; disseminated lime and lime segregated into common fine and medium irregularly shaped soft masses (25 percent calcium carbonate equivalent); sodium absorption ratio of 25; moderately alkaline (pH 8.2); clear wavy boundary. (5 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkn2--11 to 17 inches; gray (10YR 6/1) silty clay loam, black (N 2/) broken and dark gray (10YR 4/1) crushed moist; strong medium columnar structure parting to strong medium and coarse subangular blocky; hard, very friable, moderately sticky and moderately plastic; common very fine, fine and medium roots; many very fine and few fine tubular pores; many distinct clay films on faces of peds and in pores; moderately effervescent; disseminated lime and lime segregated into common medium and large irregularly shaped soft masses (25 percent calcium carbonate equivalent); sodium absorption ration of 25; moderately alkaline (pH 8.3); clear wavy boundary. (3 to 6 inches thick)" diff --git a/inst/extdata/OSD/O/OVINA.json b/inst/extdata/OSD/O/OVINA.json index 89cf8ddf6b..5bd8f0a10f 100644 --- a/inst/extdata/OSD/O/OVINA.json +++ b/inst/extdata/OSD/O/OVINA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 20 centimeters (0 to 8 inches); very dark gray (10YR 3/1) loamy fine sand, black (10YR 2/1) moist; weak fine granular structure parting to weak very fine granular; soft, very friable; violent effervescence; slightly alkaline; abrupt smooth boundary. (18 to 25 centimeters (7 to 10 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--20 to 28 centimeters (8 to 11 inches); dark grayish brown (10YR 4/2) loamy fine sand, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure parting to weak fine granular; soft, very friable; violent effervescence; moderately alkaline; clear wavy boundary. (8 to 25 centimeters (3 to 10 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--28 to 66 centimeters (11 to 26 inches); light brownish gray (10YR 6/2) fine sandy loam, grayish brown (10YR 5/2) moist; a few fine distinct reddish brown (5YR 4/4) moist; iron masses in the matrix in the lower part; weak coarse subangular blocky structure parting to weak fine subangular blocky; soft, very friable; violent effervescence; moderately alkaline; clear wavy boundary. (15 to 51 centimeters (6 to 20 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--66 to 76 centimeters (26 to 30 inches); gray (10YR 5/1) fine sandy loam, dark gray (10YR 4/1) moist; a few fine distinct reddish brown (5YR 4/4) moist; iron masses in the matrix; weak coarse subangular blocky structure; slightly hard, friable; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 51 centimeters (0 to 20 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C3--76 to 102 centimeters (30 to 40 inches); light brownish gray (2.5Y 6/2) loam; grayish brown (2.5Y 5/2) moist; a few fine distinct dark reddish brown (5YR 3/3) moist, iron masses in the matrix; massive; slightly hard, friable; strong effervescence; slightly alkaline; gradual wavy boundary. (15 to 51 (6 to 20 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--102 to 203 centimeters (40 to 80 inches); light gray (2.5Y 7/2) fine sandy loam, light brownish gray (2.5Y 6/2) moist; a few fine distinct dark reddish brown (5YR 3/3) moist, iron masses in the matrix; massive; soft, very friable; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/O/OWANKA.json b/inst/extdata/OSD/O/OWANKA.json index 030d02af6a..5ec76419c4 100644 --- a/inst/extdata/OSD/O/OWANKA.json +++ b/inst/extdata/OSD/O/OWANKA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--18 to 27 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; hard, friable, sticky and plastic; few fine roots; few fine accumulations of carbonate; slight effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--27 to 35 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; hard, friable, sticky and plastic; very few fine roots; few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons is 12 to 25 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--35 to 60 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; massive; hard, friable, sticky and plastic; few fine accumulations of carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PAAIKI.json b/inst/extdata/OSD/P/PAAIKI.json index 93b16b2506..f0293dd63d 100644 --- a/inst/extdata/OSD/P/PAAIKI.json +++ b/inst/extdata/OSD/P/PAAIKI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.8, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A11--0 to 3 inches; dark reddish brown (5YR 3/3) heavy loam, dark reddish brown (5YR 3/4) rubbed, yellowish red (5YR 3/6) dry; moderate very fine granular structure; soft, friable, sticky and plastic; many roots; many pores; moderate effervescence with hydrogen peroxide; medium acid (pH 5.8); clear smooth boundary. (4 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.2, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A12--3 to 6 inches; dark reddish brown (5YR 3/3) loam, dark reddish brown (5YR 3/4) rubbed, dark reddish brown (5YR 3/4) dry; weak very fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; many roots; many fine pores; slight effervescence with hydrogen peroxide; some small pieces of black charcoal; strongly acid (pH 5.2); clear smooth boundary. (5 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.6, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A3--6 to 9 inches; dark brown (7.5YR 3/4) silty clay loam, same color rubbed, brown (7.5YR 4/4) dry; weak fine and very fine subangular blocky structure; slightly hard, friable, sticky and plastic; common roots; many fine pores; slight effervescence with hydrogen peroxide; medium acid (pH 5.6); gradual smooth boundary. (5 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 5.3, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B21--9 to 18 inches; brown (7.5YR 4/4) heavy silty clay loam, reddish brown (5YR 4/4) dry; weak fine and very fine subangular blocky structure; hard, firm, sticky and plastic; few roots, many fine pores; no effervescence with hydrogen peroxide; strongly acid (pH 5.3); gradual smooth boundary. (9 to 12 inches thick)" diff --git a/inst/extdata/OSD/P/PAGARI.json b/inst/extdata/OSD/P/PAGARI.json index c296c13b5a..23e9bf04f6 100644 --- a/inst/extdata/OSD/P/PAGARI.json +++ b/inst/extdata/OSD/P/PAGARI.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--31 to 36 inches; pale brown (10YR 6/3) extremely cobbly loam, brown (10YR 5/3) moist; moderate fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; common very fine and fine tubular pores; about 10 percent stones, 40 percent cobbles, and 15 percent pebbles; slight effervescence (about 10 percent calcium carbonate); slightly alkaline (pH 7.4); clear wavy boundary. (3 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely cobbly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bk2--36 to 46 inches; very pale brown (10YR 7/3) extremely cobbly loam, pale brown (10YR6/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and fine irregular pores; about 10 percent stones, 40 percent cobbles, and 15 percent pebbles; violently effervescence (about 20 percent calcium carbonate); slightly alkaline (pH 7.6); abrupt irregular boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/P/PAIA.json b/inst/extdata/OSD/P/PAIA.json index 446b5e6f29..9fbbeb0d53 100644 --- a/inst/extdata/OSD/P/PAIA.json +++ b/inst/extdata/OSD/P/PAIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ap1--0 to 11 inches; dark reddish brown (5YR 3/2) silty clay, dark reddish brown (5YR 3/3) dry; weak fine granular structure; hard, friable, sticky and plastic; many fine roots; many fine pores; many 1/4 to 2 mm fragments of coral; few fine black concretions; violent effervescence with hydrogen peroxide; slightly alkaline (pH 7.6); gradual wavy boundary. (8 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--11 to 19 inches; dark reddish brown (5YR 3/2), dark reddish brown (5YR 3/3) dry; weak fine subangular blocky structure; hard, firm, very sticky and very plastic; many roots; many fine and very fine pores; many 1/4 to 2 mm fragments of coral; few fine black concretions; violent effervescence with hydrogen peroxide; slightly alkaline (pH 7.5); clear smooth boundary. (6 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B21--30 to 41 inches; dark reddish brown (5YR 3/2) clay, dark reddish brown (5YR 3/3) dry; moderate fine angular and subangular blocky structure; hard, friable when removed, sticky and plastic; compact in place; few fine roots at top, none at bottom; many fine pores; continuous pressure faces on peds; common sand-size particles that are resistant to crushing; few to common black stains; slight effervescence with hydrogen peroxide in matrix, violent effervescence on black stains; slightly alkaline (pH 7.4); clear smooth boundary. (8 to 14 inches thick)" diff --git a/inst/extdata/OSD/P/PAKA.json b/inst/extdata/OSD/P/PAKA.json index 02afc59be5..2902261cb7 100644 --- a/inst/extdata/OSD/P/PAKA.json +++ b/inst/extdata/OSD/P/PAKA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--21 to 26 inches; light gray (10YR 7/2) silty clay loam, grayish brown (10YR 5/2) moist; weak coarse subangular blocky structure parting to weak medium subangular blocky; very hard, very firm; few fine roots; 4 percent calcium carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (3 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--26 to 48 inches; very pale brown (10YR 8/3) silt loam, weathered from siltstone; pale brown (10YR 6/3) moist; massive; hard, friable; 6 percent calcium carbonate; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--48 to 80 inches; very pale brown (10YR 7/3) weakly cemented siltstone; silt loam when crushed; pale brown (10YR 6/3) moist; massive; hard, friable; 6 percent calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PAKALA.json b/inst/extdata/OSD/P/PAKALA.json index b501bb3c1b..3fb5229a72 100644 --- a/inst/extdata/OSD/P/PAKALA.json +++ b/inst/extdata/OSD/P/PAKALA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 41 centimeters (0 to 16 inches); dark reddish brown (2.5YR 3/3) clay loam, dark red (2.5YR 3/6) dry; moist rubbed color is dark reddish brown (5YR 3/3); weak fine subangular blocky structure; slightly hard, firm, moderately sticky and moderately plastic; common medium, fine and very fine roots; common fine tubular pores; slight effervescence with hydrogen peroxide; very strongly acid (pH 5.0); abrupt smooth boundary. (38 to 43 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "AC--41 to 56 centimeters (16 to 22 inches); dark reddish brown (2.5YR 3/3) very fine sandy loam, dark reddish brown (5YR 3/4) dry; massive; slightly hard, very friable, slightly sticky and moderately plastic; common medium and fine roots; common fine irregular pores; slight effervescence with hydrogen peroxide; under hand lens material appears to be made up of very fine sand-size particles; moderately acid (pH 5.6); abrupt smooth boundary. (13 to 18 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.8, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--56 to 69 centimeters (22 to 27 inches); very dusky red (10R 2.5/2) silt loam, dark reddish brown (5YR 3/4) dry; massive; soft, very friable, nonsticky, slightly plastic and weakly smeary; common medium and fine roots; common fine irregular pores; very slight effervescence with hydrogen peroxide; many small pieces of charcoal that are very smeary; moderately acid (pH 5.8); abrupt smooth boundary. (10 to 15 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 5.8, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--69 to 152 centimeters (27 to 60 inches); dusky red (10R 3/3) silty clay loam, reddish brown (2.5YR 4/4) dry; massive; slightly hard, very friable, moderately sticky and moderately plastic; few medium and fine roots; many fine tubular pores; slight effervescence with hydrogen peroxide; horizon is stratified with a layer of highly weathered gravel and sand at a depth of 112 to 117 centimeters (44 to 46 inches) and at 137 centimeters (54 inches) a 1.3 centimeter (1/2-inch) thick layer of very dusky red (2.5YR 2/2) material that is smeary; material has appearance, under hand lens, of being made up of very fine sand; moderately acid (pH 5.8)." diff --git a/inst/extdata/OSD/P/PALERF.json b/inst/extdata/OSD/P/PALERF.json index c605ad26d3..d71f2645cd 100644 --- a/inst/extdata/OSD/P/PALERF.json +++ b/inst/extdata/OSD/P/PALERF.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btk--27 to 35 inches; brown (10YR 5/3) extremely gravelly clay, dark brown (10YR 3/3) moist; strong coarse prismatic structure parting to strong medium angular blocky; very hard, very firm, very sticky and very plastic; common very fine roots; common very fine tubular pores; few faint clay skins in root channels; common white (10YR 8/1) prominent continuous lime coatings throughout the soil and on the faces of peds; many continuous faint pressure faces on peds; 45 percent gravel and 20 percent cobbles; strong effervescence; moderately alkaline (pH 8.2); abrupt wavy boundary. (6 to 9 inches thick)" diff --git a/inst/extdata/OSD/P/PALMERS.json b/inst/extdata/OSD/P/PALMERS.json index 2554173a73..a7f16dff8d 100644 --- a/inst/extdata/OSD/P/PALMERS.json +++ b/inst/extdata/OSD/P/PALMERS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--94 to 157 cm; reddish brown (2.5YR 4/4) clay; moderate medium angular blocky structure; firm; few fine distinct pinkish gray (5YR 6/2) secondary carbonate concentrations; 2 percent gravel; strong effervescence; moderately alkaline; clear wavy boundary. (38 to 76 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC--157 to 203 cm; reddish brown (5YR 5/3) clay; moderate medium angular blocky structure; firm; faint reddish brown (2.5YR 4/4) slickensides; 2 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PAMOA.json b/inst/extdata/OSD/P/PAMOA.json index f663f714c7..3aea56a5dd 100644 --- a/inst/extdata/OSD/P/PAMOA.json +++ b/inst/extdata/OSD/P/PAMOA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A1--0 to 7 inches; dark reddish brown (5YR 3/3) moist and dry, silty clay, dark reddish brown (5YR 3/4) crushed moist; moderate very fine, fine and medium subangular blocky structure parting to moderate fine and medium granular; hard, friable, sticky and very plastic; many roots; few thin patchy coatings on peds; many manganese concretions; violent effervescence with hydrogen peroxide; neutral (pH 6.6); gradual wavy boundary. (6 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B1--7 to 15 inches; dark reddish brown (5YR 3/4) moist and dry clay; moderate very fine and fine subangular blocky structure and pockets of loose very fine subangular blocky structure; slightly hard, friable, very sticky and very plastic; many roots; many very fine and fine tubular pores; few thin patchy coats on peds; many fine black concretions; strong effervescence with hydrogen peroxide; neutral (pH 6.6); clear wavy boundary. (5 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B21--15 to 32 inches; dark reddish brown (5YR 3/4) moist and dry silty clay; moderate very fine, fine and medium subangular blocky structure; firm in place; hard, friable, sticky and plastic; many roots; many very fine pores, common fine tubular pores; common organic stains in root channels; many patchy stress faces; strong effervescence with hydrogen peroxide; slightly acid (pH 6.1); clear wavy boundary. (15 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 5.1, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B22--32 to 40 inches; dark reddish brown (5YR 3/4) moist and dry clay; strong very fine and fine angular and subangular blocky structure; firm in place; hard, friable, sticky and plastic; many roots; many very fine pores; common fine tubular pores; continuous weakly grooved stress faces; common organic stains in root channels; strong effervescence with hydrogen peroxide; strongly acid (pH 5.1); gradual wavy boundary. (7 to 9 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B23--40 to 62 inches; dark reddish brown (5YR 3/4) moist and dry clay; few fine distinct dark brown (7.5YR 4/2) mottles along some major root channels; moderate coarse subangular blocky structure parting to moderate and strong very fine and fine angular and subangular blocky; hard, friable, very sticky and very plastic; many roots; many very fine tubular pores; continuous stress faces and coatings on peds; many black stains; strong effervescence with hydrogen peroxide; very strongly acid (pH 4.8)." diff --git a/inst/extdata/OSD/P/PANE.json b/inst/extdata/OSD/P/PANE.json index 34ee426053..cd2075584e 100644 --- a/inst/extdata/OSD/P/PANE.json +++ b/inst/extdata/OSD/P/PANE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 8 inches; dark reddish brown (5YR 3/3) silt loam, reddish brown (5YR 4/3) dry; strong fine and very fine granular structure; slightly hard, very friable, slightly sticky, slightly plastic and weakly smeary; many fine and very fine roots; many fine pores; slight effervescence with hydrogen peroxide; slightly acid (pH 6.5); clear smooth boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/P/PANKY.json b/inst/extdata/OSD/P/PANKY.json index 538a4ed79f..0befb9585e 100644 --- a/inst/extdata/OSD/P/PANKY.json +++ b/inst/extdata/OSD/P/PANKY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk2--11 to 17 inches; brown (7.5YR 5/4) loam, brown (7.5YR 4/4) moist; moderate coarse subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few fine and common very fine roots; few fine and common very fine tubular pores; common faint clay films on faces of peds and lining pores; 2 percent gravel; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as common fine and medium irregularly shaped masses; strongly alkaline (pH 8.6); clear wavy boundary. (0 to 22 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkq1--53 to 66 inches; pink (7.5YR 7/4) loam, brown (7.5YR 5/4) moist; strong very thick platy structure; very hard, very firm, slightly sticky and slightly plastic; few very fine roots; few fine and common very fine tubular pores; matrix is partially cemented in spots by secondary silica; 2 percent gravel; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as common fine and medium irregularly shaped coats on faces of peds; slightly alkaline (pH 7.7); clear smooth boundary. (10 to 25 inches thick)" diff --git a/inst/extdata/OSD/P/PANOCHE.json b/inst/extdata/OSD/P/PANOCHE.json index 28e8dba188..78e9d47421 100644 --- a/inst/extdata/OSD/P/PANOCHE.json +++ b/inst/extdata/OSD/P/PANOCHE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk--24 to 60 inches; brown (10YR 5/3) loam, dark grayish brown (10YR 4/2) moist; massive; hard, firm, slightly sticky and slightly plastic; common very fine roots; many very fine interstitial and many fine tubular pores; slightly effervescent, carbonates disseminated, strongly effervescent, carbonates segregated as few fine irregularly shaped threads; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/P/PANOZA.json b/inst/extdata/OSD/P/PANOZA.json index 6d4f5eef74..a54fa40611 100644 --- a/inst/extdata/OSD/P/PANOZA.json +++ b/inst/extdata/OSD/P/PANOZA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violetly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--6 to 18 inches; light gray (10YR 7/2) loam, brown (10YR 5/3) moist; common fine subangular blocky structure; slightly hard, very friable, nonsticky and slightly plastic; common very fine roots; common very fine tubular and interstitial pores; 5 percent pebbles; violetly effervescent with disseminated lime, moderately alkaline (pH 8.0); gradual wavy boundary. (10 to 16 inches thick)" diff --git a/inst/extdata/OSD/P/PANTON.json b/inst/extdata/OSD/P/PANTON.json index d8b8a64bd1..0f44ebccf3 100644 --- a/inst/extdata/OSD/P/PANTON.json +++ b/inst/extdata/OSD/P/PANTON.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btg3--20 to 25 inches; dark gray (N 4/0) and gray (5Y 5/1) clay; weak medium platy and moderate very fine subangular blocky structure; very firm, very sticky, very plastic; common fibrous roots; clay films; many light brownish gray (2.5 6/2) lime seams 1/2 inch wide; few manganese patches; few medium distinct olive (5Y 4/4) and very dark grayish brown (10YR 3/2) masses of iron accumulation; mildly alkaline; slight effervescence with cold dilute hydrochloric acid; clear wavy boundary. (0 to 7 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btg4--25 to 38 inches; dark gray (5Y 4/1) clay; weak medium platy structure; very firm, very sticky, very plastic; common fibrous roots; clay films along root channels and some dark gray (N 4/0) clay films on faces of peds; few fine light brownish gray (2.5Y 6/2) lime seams; few manganese patches; many medium prominent olive brown (2.5Y 4/4) masses of iron accumulation; mildly alkaline; strong effervescence along ped faces with cold dilute hydrochloric acid; gradual wavy boundary. (0 to 14 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btg5--38 to 46 inches; dark gray (5Y 4/1) clay; moderate medium angular blocky structure; very firm, very few fibrous roots; clay films; gray (10YR 5/1) lime seams; manganese patches; common fine and medium prominent olive brown (2.5Y 4/4) masses of iron accumulation with brighter centers; mildly alkaline; slight effervescence with cold dilute hydrochloric acid; gradual wavy boundary. (0 to 9 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--46 to 58 inches; dark gray (5Y 4/1) clay; massive; firm; very few fibrous roots; manganese patches; common medium prominent dark yellowish brown (10YR 4/4) masses of iron accumulation; moderately alkaline; strong effervescence with cold dilute hydrochloric acid; gradual wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg2--58 to 70 inches; dark gray (5Y 4/1) clay; massive; firm; very few fibrous roots; manganese patches on ped faces; common fine distinct olive brown (2.5Y 4/4) masses of iron accumulation with light gray to gray (10YR 6/1) centers; moderately alkaline; strong effervescence with cold dilute hydrochloric acid; gradual wavy boundary." @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--70 to 80 inches; dark grayish brown (10YR 4/2) and dark gray (2.5Y 4/1) clay; massive; firm; very few fibrous roots; manganese patches on ped faces; common medium distinct dark yellowish brown (10YR 4/4) masses of iron accumulation with light gray to gray (10YR 6/1) centers; mildly alkaline; slight effervescence with cold dilute hydrochloric acid." diff --git a/inst/extdata/OSD/P/PAPAA.json b/inst/extdata/OSD/P/PAPAA.json index 733a690bdd..d8aba74341 100644 --- a/inst/extdata/OSD/P/PAPAA.json +++ b/inst/extdata/OSD/P/PAPAA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 12 inches; 1/2 to 1 inch thick very dark gray (10YR 3/1) surface mulch having moderate fine and very fine granular structure; very dark brown (10YR 2/2) clay, some dark brown (7.5YR 4/2); strong fine subangular blocky structure; hard, firm, very sticky and very plastic; many fine and medium roots; common fine and very fine tubular and interstitial pores; few worm holes; common fine, dark gray, highly weathered fragments of rock; common shiny specks; slight effervescence with hydrogen peroxide; slightly acid (pH 6.5); clear smooth boundary. (6 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--12 to 19 inches; dark reddish brown (5YR 3/2) moist and dry clay; moderate coarse prismatic structure; hard, firm, very sticky and very plastic; many fine and medium roots; many very fine and few fine tubular pores; common worm holes and casts which are thickly coated with very dark gray (10YR 3/1 dry) gelatinous material; few fine angular fragments of rock; slight effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear smooth boundary. (6 to 9 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--19 to 24 inches; dark reddish gray (5YR 4/2) moist and dry clay; weak coarse prismatic structure; common prominent slickensides; hard, very firm, very sticky and very plastic; many fine and medium roots; common very fine and fine tubular pores; root channels lined with very dark gray (10YR 3/1) dry material; few fine fragments of rock; slight effervescence with hydrogen peroxide, slightly acid (pH 6.5); abrupt wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/P/PAPOOSE.json b/inst/extdata/OSD/P/PAPOOSE.json index a687e9bac9..0214e388c9 100644 --- a/inst/extdata/OSD/P/PAPOOSE.json +++ b/inst/extdata/OSD/P/PAPOOSE.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C2--84 to 152 cm; light brown (7.5YR 6/4) very gravelly coarse sand, brown (7.5YR 5/4) moist; single grained, loose; common grading to few very fine roots; many fine and medium interstitialpores; 50 percent gravel; slightly effervescent but noneffervescent in places, some gravel have a thin lime coating on lower sides; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/P/PARANAT.json b/inst/extdata/OSD/P/PARANAT.json index 7d2fd63442..2e21db62e1 100644 --- a/inst/extdata/OSD/P/PARANAT.json +++ b/inst/extdata/OSD/P/PARANAT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "AC--50 to 79 cm; gray (10YR 6/1) silty clay loam, very dark gray (10YR 3/1) moist; common fine distinct iron mottles, brown (7.5YR 4/4), dark brown (7.5YR 3/2) moist; weak medium and coarse prismatic structure parting to moderate medium and coarse subangular blocky; slightly hard, very friable, moderately sticky and very plastic; common very fine and fine random, few medium oblique roots; many very fine tubular, few fine tubular and interstitial pores; common thin silt coats lining pores; violently effervescent; carbonate occurs as few fine and medium segregated filaments or threads; slightly effervescent; moderately alkaline (pH 8.2); clear wavy boundary. (0 to 50 cm thick)" diff --git a/inst/extdata/OSD/P/PARCHIN.json b/inst/extdata/OSD/P/PARCHIN.json index 559b0004db..39c4aba4c1 100644 --- a/inst/extdata/OSD/P/PARCHIN.json +++ b/inst/extdata/OSD/P/PARCHIN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "have effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk--15 to 18 inches; grayish brown (2.5Y 5/2) sandy clay loam; dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; very hard, firm, slightly sticky and plastic; common fine threads of carbonate accumulations; strong effervescence, matrix does not have effervescence; moderately alkaline; clear wavy boundary. (Combined Btn horizons 6 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--18 to 27 inches; light olive gray (5Y 6/2) fine sandy loam, olive gray (5Y 4/2) moist; weak coarse prismatic structure parting to weak medium and coarse subangular blocky; hard, friable; few fine roots; common threads and spots of accumulations of carbonate; violent effervescence; strongly alkaline; gradual wavy boundary. (4 to 12 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cr1--27 to 37 inches; light gray (5Y 6/1) soft bedded sandstone crushing to loamy fine sand with strata of fine sandy loam and sandy clay loam, dark gray (5Y 4/1) moist; massive; hard, very friable; few threads and spots accumulations of carbonate; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr2--37 to 60 inches; light olive gray (5Y 6/2) soft bedded sandstone crushing to sandy clay loam with strata of fine sandy loam and loamy fine sand, olive gray (5Y 5/2) moist; massive; slightly hard, friable; slightly sticky and slightly plastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PARKVILLE.json b/inst/extdata/OSD/P/PARKVILLE.json index 0f61b053cf..732027fe05 100644 --- a/inst/extdata/OSD/P/PARKVILLE.json +++ b/inst/extdata/OSD/P/PARKVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; very dark grayish brown (10YR 3/2) silty clay, grayish brown (10YR 5/2) dry; strong fine granular structure in the upper part and strong very fine subangular blocky in the lower part; firm; common fine roots; slight effervescence; mildly alkaline; abrupt smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--8 to 16 inches; very dark grayish brown (10YR 3/2) silty clay, grayish brown (10YR 5/2) dry; moderate medium angular blocky structure; firm; common fine roots; slight effervescence; mildly alkaline; abrupt smooth boundary. (6 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Cg2--32 to 45 inches; dark grayish brown (10YR 4/2) silt loam; massive; friable; few fine roots; a dark gray (10YR 4/1) silt loam lens as much as 1/2-inch thick at the bottom of the horizon; slight effervescence; mildly alkaline; abrupt smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg3--45 to 60 inches; stratified dark grayish brown (10YR 4/2) very fine sandy loam and silt loam; massive; friable; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/P/PARKWASH.json b/inst/extdata/OSD/P/PARKWASH.json index fdefb87b69..e7c72f12d5 100644 --- a/inst/extdata/OSD/P/PARKWASH.json +++ b/inst/extdata/OSD/P/PARKWASH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--0 to 2 inches; very pale brown (10YR 7/4) loamy fine sand, yellowish brown (10YR 5/4); single grained ; loose, nonsticky, and nonplastic; common very fine and few fine roots; common very fine interstitial pores; 5 percent gravel; no effervescence; moderately alkaline (pH 8.0); clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--2 to 10 inches; very pale brown (10YR 7/4) fine sand, yellowish brown (10YR 5/6); massive; soft, very friable, nonsticky, and nonplastic; common very fine and fine roots; common very fine interstitial pores; no effervescence; moderately alkaline (pH 8.0); clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "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." diff --git a/inst/extdata/OSD/P/PARMOD.json b/inst/extdata/OSD/P/PARMOD.json index 517c1ba47c..c6abff2d0b 100644 --- a/inst/extdata/OSD/P/PARMOD.json +++ b/inst/extdata/OSD/P/PARMOD.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--97 to 152 cm (38 to 60 inches); brown (7.5YR 5/4) loam; massive; firm; common very fine roots; few fine and medium distinct strong brown (7.5YR 5/6) masses of iron accumulation in the matrix; 6 percent gravel; very strongly effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/P/PARNELL.json b/inst/extdata/OSD/P/PARNELL.json index a39ab55a48..ddf5838ca7 100644 --- a/inst/extdata/OSD/P/PARNELL.json +++ b/inst/extdata/OSD/P/PARNELL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCg--55 to 80 inches; grayish brown (2.5Y 5/2) grading to olive gray (5Y 5/2) in the lower part, silty clay loam; weak very fine angular blocky structure; firm in upper part and friable in lower part; few strata of loam and silty clay; few distinct black (10YR 2/1) and very dark gray (10YR 3/1) clay films in upper part; common fine prominent reddish brown (5YR 4/4) redoximorphic concentrations and common fine faint dark grayish brown (2.5Y 4/2) redoximorphic depletions; neutral in upper part becoming slightly alkaline; slight effervescence in lower part." diff --git a/inst/extdata/OSD/P/PAROWAN.json b/inst/extdata/OSD/P/PAROWAN.json index e7623cdda4..7efbac4714 100644 --- a/inst/extdata/OSD/P/PAROWAN.json +++ b/inst/extdata/OSD/P/PAROWAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "A1--0 to 3 inches; brown (7.5YR 5/4) silt loam, brown (7.5YR 4/4) moist; weak moderately thick platy structure parting to weak thin platy; slightly hard, friable, slightly sticky and slightly plastic; common medium, few fine and very fine roots; common fine and very fine vesicular pores; moderately effervescent (12 percent calcium carbonate equivalent), carbonates are disseminated; moderately alkaline (pH 8.2); clear wavy boundary (3 to 4 inches thick)." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violenty effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C6--49 to 60 inches; pink (5YR 7/4) silt loam, yellowish red (5YR 4/6) moist; common medium distinct light brown (7.5YR 6/4) mottles; massive; hard, friable, slightly sticky and plastic; few fine and very fine roots; common fine and very fine pores; violenty effervescent (43 percent calcium carbonate equivalent), carbonates are disseminated; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/P/PARRITA.json b/inst/extdata/OSD/P/PARRITA.json index 931c2d9092..a0305aa9d9 100644 --- a/inst/extdata/OSD/P/PARRITA.json +++ b/inst/extdata/OSD/P/PARRITA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkkm--46 to 84 cm (18 to 33 in); pink (7.5YR 8/4), pink (7.5YR 7/4), moist; massive; extremely hard, slightly rigid, strongly cemented; common very fine roots on top of horizon; violent effervescence; moderately alkaline; gradual smooth boundary. (20 to 64 cm [8 to 25 in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--84 to 203 cm (33 to 80 in); reddish yellow (7.5YR 8/6), loam, reddish yellow (7.5YR 7/6), moist; massive; hard, firm; 10 percent coarse carbonate masses; violent effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/P/PARSHALL.json b/inst/extdata/OSD/P/PARSHALL.json index 9c5c28538d..ac8368acc1 100644 --- a/inst/extdata/OSD/P/PARSHALL.json +++ b/inst/extdata/OSD/P/PARSHALL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--29 to 42 inches; grayish brown (2.5Y 5/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse prismatic structure parting to weak medium subangular blocky; soft, very friable, slightly sticky and slightly plastic; common very fine and few fine roots; many very fine and few fine pores; few fine filaments of carbonates; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--42 to 48 inches; light brownish gray (2.5Y 6/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; soft, very friable, slightly sticky and nonplastic; few fine and very fine roots; common very fine pores; common fine filaments of carbonates; strong effervescence; moderately alkaline; abrupt wavy boundary. (Combined Bk horizons 0 to 30 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--48 to 60 inches; light yellowish brown (2.5Y 6/3) loamy fine sand, olive brown (2.5Y 4/3) moist; weak coarse subangular blocky structure; soft, very friable, slightly sticky and nonplastic; few fine and very fine roots; few very fine pores; few fine irregularly shaped masses and common fine filaments of carbonates; violent effervescence; moderately alkaline. (0 to 15 inches thick)" diff --git a/inst/extdata/OSD/P/PASCO.json b/inst/extdata/OSD/P/PASCO.json index 46dcb22fe3..aa06d6b4b1 100644 --- a/inst/extdata/OSD/P/PASCO.json +++ b/inst/extdata/OSD/P/PASCO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 6 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; few fine faint mottles; weak fine and medium granular structure; soft, friable, slightly sticky, slightly plastic; many roots; few fine pores; slight effervescence with dilute HCl; moderately alkaline (pH 8.2); clear smooth boundary. (4 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--6 to 20 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; common medium faint mottles; massive; soft, friable, slightly sticky, slightly plastic; common roots; few fine pores; slight effervescence with dilute HCl; moderately alkaline (pH 8.4); clear wavy boundary. (4 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--20 to 33 inches; grayish brown (10YR 5/2) heavy silt loam, very dark gray (10YR 3/1) moist; weak medium prismatic structure; slightly hard, friable, sticky, slightly plastic; common roots; common fine pores; slight effervescence with dilute HCl; moderately alkaline (pH 8.0); clear wavy boundary. (4 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC1--33 to 52 inches; gray (10YR 5/1) very fine sandy loam, very dark gray (10YR 3/1) moist; common medium faint mottles; massive; soft, very friable, slightly sticky, slightly plastic; common roots; slight effervescence with dilute HCl; mildly alkaline (pH 7.8); clear wavy boundary. (4 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "AC2--52 to 62 inches; gray (10YR 5/1) heavy silt loam, very dark brown (10YR 2/2) moist; massive; slightly hard, friable, sticky, slightly plastic; few roots; common fine pores; slight effervescence with dilute HCl; mildly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/P/PATE.json b/inst/extdata/OSD/P/PATE.json index 30725caa1f..1c2a6dad94 100644 --- a/inst/extdata/OSD/P/PATE.json +++ b/inst/extdata/OSD/P/PATE.json @@ -204,7 +204,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt5--36 to 52 inches; light olive brown (2.5Y 5/4) channery silty clay; moderate medium subangular blocky structure; firm; few fine roots; thin discontinuous grayish brown (2.5Y 5/2) and dark grayish brown (10YR 4/2) clay films on faces of peds; 20 percent coarse fragments (8 percent greater than 3 inches); strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bt horizons is 20 to 60 inches.)" @@ -227,7 +227,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC1--52 to 66 inches; light olive brown (2.5Y 5/4) channery silty clay; weak medium subangular blocky structure; firm; olive gray (5Y 5/2) coatings on faces of peds; 30 percent coarse fragments (10 percent greater than 3 inches); strong effervescence; moderately alkaline; clear wavy boundary. (0 to 18 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "very flaggy", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC2--66 to 72 inches; pale olive (5Y 6/4) and gray (5Y 6/1) very flaggy silty clay; weak medium subangular and angular blocky structure; very firm; 40 percent coarse fragments (20 percent greater than 6 inches); strong effervescence; moderately alkaline. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/P/PATENT.json b/inst/extdata/OSD/P/PATENT.json index 41333a31bf..4cf9831d9c 100644 --- a/inst/extdata/OSD/P/PATENT.json +++ b/inst/extdata/OSD/P/PATENT.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--1 to 7 inches; light brownish gray (2.5Y 6/2) loam, olive brown (2.5Y 4/4) moist; weak medium subangular blocky and weak fine platy structure; hard, very friable; common fine roots; few fine pores; slight effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--7 to 60 inches; light yellowish brown (2.5Y 6/3) thinly stratified loam, very fine sandy loam and clay loam, olive brown (2.5Y 4/3) moist; massive but parts to weak plates along the laminae; hard, friable; few fine roots; few fine pores; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PATHFINDER.json b/inst/extdata/OSD/P/PATHFINDER.json index c66d973c14..16a3cf6744 100644 --- a/inst/extdata/OSD/P/PATHFINDER.json +++ b/inst/extdata/OSD/P/PATHFINDER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 centimeters (0 to 5 inches); grayish brown (10YR 5/2) loamy fine sand, dark grayish brown (10YR 4/2) moist; weak fine granular structure; soft, very friable; strong effervescence; slightly alkaline; abrupt smooth boundary. (8 to 15 centimeters (3 to 6 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--13 to 46 centimeters (5 to 18 inches); light brownish gray (10YR 6/2) fine sand stratified with thin lenses of loamy fine sand and fine sandy loam, dark grayish brown (10YR 4/2) moist; single grain; loose, very friable; few fine prominent strong brown (7.5YR 5/6) moist irregularly shaped masses of iron accumulations in the matrix; the iron accumulations are relict redoximorphic features; strong effervescence; moderately alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--46 to 74 centimeters (18 to 29 inches); light brownish gray (10YR 6/2) fine sandy loam stratified with thin lenses of loamy fine sand and fine sand, dark grayish brown (10YR 4/2) moist; few fine distinct strong brown (7.5YR 5/6) moist few fine prominent strong brown (7.5YR 5/6) moist irregularly shaped masses of iron accumulations in the matrix; the iron accumulations are relict redoximorphic features;mottles; massive; slightly hard, friable; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--74 to 97 centimeters (29 to 38 inches); light brownish gray (10YR 6/2) loamy fine sand stratified with thin lenses of fine sand and fine sandy loam, dark grayish brown (10YR 4/2) moist few fine distinct strong brown (7.5YR 5/6) moist single grain; soft, very friable; few fine prominent strong brown (7.5YR 5/6) moist irregularly shaped masses of iron accumulations in the matrix; the iron accumulations are relict redoximorphic features; violent effervescence; strongly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C4--97 to 122 centimeters (38 to 48 inches); pale brown (10YR 6/3) fine sand stratified with thin lenses of loamy fine sand and fine sandy loam, grayish brown (10YR 5/2) moist; few fine distinct strong brown (7.5YR 5/6) moist; single grain; soft, very friable; few fine prominent strong brown (7.5YR 5/6) moist irregularly shaped masses of iron accumulations in the matrix; the iron accumulations are relict redoximorphic features; violent effervescence; strongly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C5--122 to 152 centimeters (48 to 60 inches); pale brown (10YR 6/3) fine sand stratified with thin lenses of loamy fine sand and fine sandy loam, grayish brown (10YR 5/2) moist; few fine distinct strong brown (7.5YR 5/6) moist single grain; soft, very friable; few fine prominent strong brown (7.5YR 5/6) moist irregularly shaped masses of iron accumulations in the matrix; the iron accumulations are relict redoximorphic features; violent effervescence; very strongly alkaline." diff --git a/inst/extdata/OSD/P/PATIDIDIT.json b/inst/extdata/OSD/P/PATIDIDIT.json index d57b1f8cc4..e72d2fd27d 100644 --- a/inst/extdata/OSD/P/PATIDIDIT.json +++ b/inst/extdata/OSD/P/PATIDIDIT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--50 to 81 cm; light brownish gray (2.5Y 6/2) sandy loam, dark grayish brown (2.5Y 4/2) moist; 25 percent fine yellowish brown (10YR 5/4) redox concentrations; massive; slightly hard, very friable, moderately sticky and moderately plastic; common very fine and few fine roots; common very fine tubular and interstitial pores; strong effervescence; moderately alkaline, (pH 8.4); clear wavy boundary. (20 to 35 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C3--81 to 114 cm; fine sandy loam, dark gray (2.5Y 4/1) moist; 5 percent medium light gray (10YR 7/1) redox depletions; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine and few fine roots; common very fine tubular and interstitial pores; slight effervescence; moderately alkaline, (pH 8.4); clear wavy boundary. (0 to 38 cm thick)" diff --git a/inst/extdata/OSD/P/PAUWELA.json b/inst/extdata/OSD/P/PAUWELA.json index 9b08b12946..00f262258d 100644 --- a/inst/extdata/OSD/P/PAUWELA.json +++ b/inst/extdata/OSD/P/PAUWELA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 6 inches; dark grayish brown (2.5YR 4/2) clay, grayish brown (2.5Y 5/2) dry; moderate fine subangular blocky structure; hard, firm, sticky and plastic; many fine roots; many fine pores; common sand size particles that are resistant to crushing; many very fine glistening specks; high bulk density; few yellowish red (5YR 4/6) particles from upper part of the B horizon; slight effervescence with hydrogen peroxide; very strongly acid (pH 4.8); clear wavy boundary. (4 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 4.2, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B21t--12 to 17 inches; dark reddish brown (5YR 3/3) clay, reddish brown (5YR 4/4) dry; moderate very fine and fine subangular blocky structure; slightly hard, friable, sticky and plastic; few fine roots; many very fine and fine tubular pores; many sand-size particles that are resistant to crushing; moderately thick patchy clay films; slight effervescence with hydrogen peroxide; extremely acid (pH 4.2); gradual wavy boundary. (4 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 4.7, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B22t--17 to 25 inches; dark reddish brown (5YR 3/4) clay; reddish brown (5YR 4/4) dry; strong fine and very fine angular blocky structure; hard, firm, sticky and plastic; more compact than B21t horizon; few very fine roots; common fine and few medium tubular pores; nearly continuous moderately thick clay films; common very fine yellowish red (5YR 4/6) and brown (7.5YR 4/4) crumbs on some peds; common sand-size particles that are resistant to crushing; few yellowish red sheets 2 to 10 mm thick; slight effervescence with hydrogen peroxide; very strongly acid (pH 4.7); clear wavy boundary. (6 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B23t--25 to 33 inches; dark reddish brown (5YR 3/4) clay, reddish brown (5YR 4/4) dry; strong very fine and fine angular blocky structure; hard, firm, sticky and plastic; few fine roots; common very fine and fine tubular pores; nearly continuous moderately thick clay films; common very fine yellowish red (5YR 4/6) and brown (7.5YR 4/4) crumbs on some peds; common sand-size particles that are resistant to crushing; few fine very dark brown (10YR Z/2) pebbles of weathered basic igneous rocks; few 1/4 to 1-1/4 inches thick yellowish red (5YR 4/6) silty clay sheets that have weak subangular blocky structure and a few roots matted on surface; slight effervescence with hydrogen peroxide; very strongly acid (pH 4.8); gradual wavy boundary. (6 to 9 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 4.8, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--33 to 42 inches; strong brown (7.5YR 5/6) and yellowish red (5YR 4/6) silty clay, reddish yellow (7.5YR 6/6) and yellowish red (5YR 5/6) dry; moderate fine and very fine subangular and angular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; 70 to 90 percent by volume of very dark brown (10YR 2/2) highly weathered basic igneous rock; few veins and sheets of soft gibbsite 1/16 to 1/4 inch thick; slight effervescence with hydrogen peroxide; very strongly acid (pH 4.8); gradual wavy boundary. (7 to 12 inches thick)" diff --git a/inst/extdata/OSD/P/PAWHUSKA.json b/inst/extdata/OSD/P/PAWHUSKA.json index 5386b81e9c..0884ab1176 100644 --- a/inst/extdata/OSD/P/PAWHUSKA.json +++ b/inst/extdata/OSD/P/PAWHUSKA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkn3--76 to 127 cm (30 to 50 in); reddish brown (5YR 5/3) silty clay loam, reddish brown (5YR 4/3) moist; weak medium blocky structure; extremely hard, firm; few fine roots; few distinct clay films on faces of peds; common fine black concretions; common fine concretions of calcium carbonate; few fine soft accumulations of calcium carbonate; slight effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Btkn horizon is 102 to 203 cm [40 to 80 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btkn4--127 to 203 cm (50 to 80 in); reddish brown (5YR 5/3) silty clay loam, reddish brown (5YR 4/3) moist; weak medium and coarse blocky structure; extremely hard, firm; few distinct clay films on faces of peds; common fine black concretions; few fine concretions of calcium carbonate; few fine soft accumulations of calcium carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PAXICO.json b/inst/extdata/OSD/P/PAXICO.json index 9da6969983..c6527cefb5 100644 --- a/inst/extdata/OSD/P/PAXICO.json +++ b/inst/extdata/OSD/P/PAXICO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 9 inches; very dark grayish brown (10YR 3/2) silt loam, light brownish gray (10YR 6/2) dry; few fine stratification of lighter color; weak fine granular structure; slightly hard, friable; common fine roots; slight effervescence; moderately alkaline; clear smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--9 to 19 inches; dark grayish brown (10YR 4/2) silt loam, light brownish gray (10YR 6/2) dry; few fine lighter strata colored; common medium distinct dark yellowish brown (10YR 4/6) redoximorphic concentrations; massive; slightly hard, friable; few fine roots; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--19 to 42 inches; very dark grayish brown (10YR 3/2) silt loam, light brownish gray (10YR 6/2) dry; with few medium fine sandy loam strata; common fine distinct dark yellowish brown (10YR 4/6) redoximorphic concentrations; massive; slightly hard, friable; few fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of C horizons is 26 to 56 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--42 to 60 inches; dark grayish brown (10YR 4/2) loamy fine sand, pale brown (10YR 6/3) dry; thin strata of finer and coarser textured sediments; single grained; loose, loose, nonsticky and nonplastic; few fine roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PAYNE.json b/inst/extdata/OSD/P/PAYNE.json index 9a5b4fe5d0..99587241f3 100644 --- a/inst/extdata/OSD/P/PAYNE.json +++ b/inst/extdata/OSD/P/PAYNE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--30 to 45 inches; brown (10YR 4/3) clay, dark brown (10YR 3/3) moist; common medium distinct yellowish red and light brown mottles; weak coarse blocky structure; very hard, very firm, sticky and plastic; few soft bodies of calcium carbonate 2 to 5 mm in diameter; slight effervescence, moderately alkaline; gradual smooth boundary. (10 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--45 to 72 inches; yellowish red (5YR 5/6) clay, yellowish red (5YR 4/6) moist; weak coarse blocky structure; hard, firm; many soft bodies and concretions of calcium carbonate up to 15 mm in diameter, comprising 5 percent of the mass; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/P/PEAGRE.json b/inst/extdata/OSD/P/PEAGRE.json index 2f25664c6d..970c9c285f 100644 --- a/inst/extdata/OSD/P/PEAGRE.json +++ b/inst/extdata/OSD/P/PEAGRE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "By1--14 to 20 inches; very pale brown (10YR 8/3) fine sandy loam, brown (10YR 5/3) moist; massive; loose, nonsticky and nonplastic; 5 percent channers; visible gypsum crystals throughout; top inch is slightly effervescent, the lower 5 inches is noneffervescent; slightly alkaline (pH 7.4); clear wavy boundary." diff --git a/inst/extdata/OSD/P/PEARL_HARBOR.json b/inst/extdata/OSD/P/PEARL_HARBOR.json index 4464b0bdf7..3ca6d03f07 100644 --- a/inst/extdata/OSD/P/PEARL_HARBOR.json +++ b/inst/extdata/OSD/P/PEARL_HARBOR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 31 centimeters (0 to 12 inches); very dark gray (10YR 3/1) clay, dark gray (10YR 4/1) dry, many fine strong brown (7.5YR 5/6) prominent mottles on peds and in pores; strong fine and medium granular and fine subangular blocky structure; very hard, firm, very sticky and very plastic; many very fine and fine roots; common very fine and fine, few medium tubular pores; common worm holes and casts; slight effervescence with hydrogen peroxide; neutral (pH 6.8); clear wavy boundary. (20 to 31 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg1--31 to 51 centimeters (12 to 20 inches); very dark gray (10YR 3/1) clay moist and dry, many fine strong brown (7.5YR 5/6) prominent mottles in all pores and few on faces of peds; strong fine and medium subangular and angular blocky structure; very hard, firm, very sticky and very plastic; many fine roots; common very fine and fine , few medium tubular pores; thin intermittent horizontal ironstone layers; slight effervescence with hydrogen peroxide; slightly alkaline (pH 7.6); gradual smooth boundary. (15 to 20 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg2--51 to 64 centimeters (20 to 25 inches); very dark gray (10YR 3/1) clay moist and dry, many fine strong brown (7.5YR 5/6) prominent mottles line fine pores; moderate fine and medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; many fine roots; many very fine and common fine tubular pores; slight effervescence with hydrogen peroxide; few fine shells that have slight effervesce with hydrochloric acid; moderately alkaline (pH 8.2); gradual smooth boundary. (8 to 18 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bg3--64 to 79 centimeters (25 to 31 inches); very dark grayish brown (10YR 3/2) clay, grayish brown (10YR 5/2) dry, many fine strong brown (7.5YR 5/6) prominent mottles in pores and on faces of peds; moderate fine and medium subangular blocky structure; hard, firm, very sticky and very plastic; few fine roots; many very fine pores, few fine and coarse tubular pores; worm holes and casts; many small shells; strong effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid on soil mass; violent effervescence on shells; moderately alkaline (pH 8.0); abrupt smooth boundary. (8 to 15 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Oa1--79 to 94 centimeters (31 to 37 inches); very dark grayish brown (10YR 3/2) muck moist and dry, few fine strong brown (7.5YR 5/6) prominent mottles; massive; very hard, friable, slightly sticky and slightly plastic; common fine roots; common fine tubular pores; few shells; few fine black fragments of tuff; thin discontinuous vertical ironstone bands; slight effervescence with hydrogen peroxide; strong effervescence with hydrochloric acid; slightly alkaline (pH 7.8); clear smooth boundary. (10 to 15 centimeters thick)" diff --git a/inst/extdata/OSD/P/PEASLEY.json b/inst/extdata/OSD/P/PEASLEY.json index f1cbd958a7..273e02d318 100644 --- a/inst/extdata/OSD/P/PEASLEY.json +++ b/inst/extdata/OSD/P/PEASLEY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "C2sim--21 to 35 inches; pale brown (10YR 6/3) weakly cemented duripan, brown (10YR 4/3) moist; common fine prominent very dark brown (10YR 2/2) mottles; massive pan occurs in plate-like laminations of .5 to 1 inch thick with a smooth, continuous coating of silica on the upper surface and an irregular lower surface having silica pendants; a root mat overlies the pan; very hard, extremely firm; few very thin weakly effervescent veins of lime and soluble salts; about 20 percent fine granitic and basalt gravel and 3 percent basalt stones; mildly alkaline (pH 7.6); clear smooth boundary. (14 to 18 inches thick)" diff --git a/inst/extdata/OSD/P/PEEVER.json b/inst/extdata/OSD/P/PEEVER.json index e1b4e14ab3..a63852039f 100644 --- a/inst/extdata/OSD/P/PEEVER.json +++ b/inst/extdata/OSD/P/PEEVER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--20 to 32 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate medium blocky; hard, firm, sticky and plastic; common fine tongues of very dark gray (10YR 3/1) and very dark grayish brown (2.5Y 3/2) moist; many medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--32 to 39 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; common fine prominent mottles of strong brown (7.5YR 5/8) and gray (N 5/) moist; weak medium and coarse prismatic structure parting to moderate medium and coarse blocky; hard, firm, sticky and plastic; common medium and fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk3--39 to 49 inches; light brownish gray (2.5Y 6/2) clay loam, light olive brown (2.5Y 5/4) moist; common fine and medium prominent mottles of gray (N 5/) strong brown (7.5YR 5/8) and dark red (2.5YR 3/6) moist; weak coarse prismatic structure parting to moderate medium and coarse subangular blocky; hard, firm, slightly sticky and slightly plastic; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons is 6 to 28 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--49 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, light olive brown (2.5Y 5/4) moist; common fine and medium prominent mottles of gray (N 5/) strong brown (7.5YR 5/8) and dark red (2.5YR 3/6) moist; massive; hard, firm, slightly sticky and slightly plastic; few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PEEVYWELL.json b/inst/extdata/OSD/P/PEEVYWELL.json index 7ba7f9102c..2916902253 100644 --- a/inst/extdata/OSD/P/PEEVYWELL.json +++ b/inst/extdata/OSD/P/PEEVYWELL.json @@ -250,7 +250,7 @@ "cf_class": "very gravelly", "pH": 7.6, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--44 to 61 inches; light yellowish brown (10YR 6/4) very gravelly sandy loam, dark yellowish brown (10YR 4/4) moist; massive; hard, firm, slightly sticky and slightly plastic; few fine interstitial pores; about 45 percent pebbles; slight effervescence; mildly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/P/PELAN.json b/inst/extdata/OSD/P/PELAN.json index 78c5bfeafd..9ff2b669cc 100644 --- a/inst/extdata/OSD/P/PELAN.json +++ b/inst/extdata/OSD/P/PELAN.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--14 to 20 inches; brown (10YR 5/3) very gravelly coarse sand; single grain; loose; about 60 percent rock fragments; few pale brown (10YR 6/3) calcium carbonate accumulations; slight effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--20 to 32 inches; light brownish gray (2.5Y 6/2) very gravelly fine sandy loam; common fine and medium distinct light olive brown (2.5Y 5/4 and 5/6) mottles; weak very fine subangular blocky structure; very friable; about 40 percent rock fragments; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bw horizons is 5 to 19 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bw3--32 to 60 inches; light brownish gray (2.5Y 6/2) fine sandy loam; common medium and coarse prominent yellowish brown (10YR 5/6), strong brown (7.5YR 5/8) and light gray (10YR 7/1) mottles; weak very fine subangular blocky structure; friable; about 15 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PENDEN.json b/inst/extdata/OSD/P/PENDEN.json index cdb2bb0090..c1fb3f4d10 100644 --- a/inst/extdata/OSD/P/PENDEN.json +++ b/inst/extdata/OSD/P/PENDEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A1--0 to 23 centimeters (0 to 9 inches); grayish brown (10YR 5/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium granular structure; hard, friable; many fine roots; many worm casts; slight effervescence; slightly alkaline; gradual smooth boundary. (18 to 30 centimeters (7 to 12 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--23 to 38 centimeters (9 to 15 inches); grayish brown (10YR 5/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium granular structure; hard, friable; common fine roots; few small lime concretions; many worm casts; few coarse sand grains; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 25 centimeters (0 to 10 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bk--38 to 86 centimeters (15 to 34 inches); pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; weak medium subangular blocky structure; very hard, firm; few fine roots; threads, films, and many soft accumulations of carbonates and lime concretions, common fine pores; violent effervescence; moderately alkaline; diffuse smooth boundary. (30 to 76 centimeters (12 to 30 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--86 to 152 centimeters (34 to 60 inches); pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; massive; hard, friable; few small lime concretions; many fine pores; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PENO.json b/inst/extdata/OSD/P/PENO.json index 93ce88fdb6..be3a0867cb 100644 --- a/inst/extdata/OSD/P/PENO.json +++ b/inst/extdata/OSD/P/PENO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--8 to 19 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; hard, firm, slightly sticky, and slightly plastic; few iron stains of yellowish red (5YR 5/8); common medium and fine accumulations of carbonate; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--19 to 42 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; hard, firm, slightly sticky, and slightly plastic; few iron stains of yellowish red (5YR 5/8); common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons is 14 to 40 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--42 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, firm, slightly sticky, and slightly plastic; few iron stains of yellowish red (5YR 5/8); few fine nests of gypsum; few fine accumulations of carbonate; slight effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/P/PERELLA.json b/inst/extdata/OSD/P/PERELLA.json index b9a51dc6ca..2e2555ae57 100644 --- a/inst/extdata/OSD/P/PERELLA.json +++ b/inst/extdata/OSD/P/PERELLA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg2--30 to 52 inches; gray (5Y 6/1) silt loam, light gray (5Y 7/1) dry; many fine prominent strong brown (7.5YR 5/6) redoximorphic concentrations; massive; hard, friable, slightly sticky and slightly plastic; few medium pores; many small iron-manganese accumulations; slight effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--52 to 60 inches; light olive brown (2.5Y 5/4) silty clay loam, pale yellow (2.5Y 7/4) dry; many medium prominent gray (5Y 6/1) redoximorphic depletions and many fine prominent strong brown (7.5YR 5/6) redoximorphic concentrations; massive; hard, friable, sticky and plastic; few soft small iron accumulations; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PESOWYO.json b/inst/extdata/OSD/P/PESOWYO.json index cde8efaae5..8d1fe78fca 100644 --- a/inst/extdata/OSD/P/PESOWYO.json +++ b/inst/extdata/OSD/P/PESOWYO.json @@ -135,7 +135,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw--15 to 41 cm; dark grayish brown (10YR 4/2) very channery clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium subangular blocky structure; slightly hard, firm, sticky and plastic; common fine and coarse roots; 35 percent channers; slight effervescence in lower part; slightly alkaline; clear, smooth boundary. (18 to 30 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--41 to 61 cm; light yellowish brown (10YR 6/4) very channery clay loam, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, firm, sticky and plastic; few fine and coarse roots; 50 percent gravel and channers; carbonates occur as common medium soft masses and common fine filaments; strong effervescence; moderately alkaline; abrupt wavy boundary. (23 to 59 cm thick)" diff --git a/inst/extdata/OSD/P/PHING.json b/inst/extdata/OSD/P/PHING.json index c0d5a90083..d18bd0156b 100644 --- a/inst/extdata/OSD/P/PHING.json +++ b/inst/extdata/OSD/P/PHING.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck1--157 to 168 centimeters; brown (10YR 5/3) clay loam, moist; moderately sticky, moderately plastic; carbonate masses throughout; 5 percent gravels; strong effervescence; moderately alkaline, pH 8.2." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck2--168 to 196 centimeters; brown (10YR 5/3) clay, moist; very sticky, very plastic; carbonate masses throughout; 5 percent gravels; strong effervescence; moderately alkaline, pH 8.2." @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck3--196 to 216 centimeters; yellowish brown (10YR 5/4) clay, moist; very sticky, very plastic; carbonate masses throughout; 10 percent gravels; strong effervescence; moderately alkaline, pH 8.0." diff --git a/inst/extdata/OSD/P/PHLISS.json b/inst/extdata/OSD/P/PHLISS.json index 22b0d27cde..0d8dfe1784 100644 --- a/inst/extdata/OSD/P/PHLISS.json +++ b/inst/extdata/OSD/P/PHLISS.json @@ -112,7 +112,7 @@ "cf_class": "channery", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A2--3 to 8 cm; light brownish gray (2.5Y 6/2) channery loam, dark brown (10YR 3/3) moist; weak thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine tubular pores; strongly effervescent thin carbonate coats on undersides of rock fragments; 30 percent channers; noneffervescent matrix; moderately alkaline (pH 8.4); clear smooth boundary. (5 to 10 cm thick)" diff --git a/inst/extdata/OSD/P/PIBLER.json b/inst/extdata/OSD/P/PIBLER.json index 2f248f5628..e447eacbd3 100644 --- a/inst/extdata/OSD/P/PIBLER.json +++ b/inst/extdata/OSD/P/PIBLER.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "Strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A2--10 to 20 cm; pale brown (10YR 6/3) very gravelly loam, brown (10YR 4/3) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine and very fine roots; few fine pores; 35 percent gravel and 15 percent cobbles; Strongly effervescent; carbonates are disseminated; moderately alkaline (pH 8.0); clear smooth boundary. (0 to 15 cm thick)" diff --git a/inst/extdata/OSD/P/PIDINEEN.json b/inst/extdata/OSD/P/PIDINEEN.json index 72ab198179..d110a7fc0f 100644 --- a/inst/extdata/OSD/P/PIDINEEN.json +++ b/inst/extdata/OSD/P/PIDINEEN.json @@ -89,7 +89,7 @@ "cf_class": "stony", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A11--0 to 3 inches; dark grayish brown (10YR 4/3) stony loam, very dark grayish brown (10YR 3/2) moist; moderate fine and very fine granular structure; loose, very friable, slightly sticky, slightly plastic; many fine and very fine interstitial pores; 10 percent stones, 5 percent cobbles, and 5 percent pebbles; strong effervescence, 4 percent calcium carbonate; moderately alkaline; clear smooth boundary. (2 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A12--3 to 7 inches; dark grayish brown (10YR 4/2) loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; many fine and very fine roots; many fine and common medium tubular pores; 3 percent basalt and caliche pebbles; violent effervescence, 5 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary. (2 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B2--7 to 13 inches; brown (10YR 4/3) light clay loam, dark brown (10YR 3/3) moist; moderate medium and coarse subangular blocky structure; slightly hard, friable, slightly sticky and plastic; many very fine and common fine roots; many fine and common medium tubular pores; 5 percent basalt and caliche pebbles; violent effervescence; 10 percent calcium carbonate equivalent; moderately alkaline; clear smooth boundary. (3 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1ca--13 to 16 inches; brown(10YR 5/3) gravelly loam, brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky, slightly plastic; common very fine roots; 25 percent basalt and caliche pebbles; lower part is fractured caliche fragments with soil in cracks; violent effervescence, 15 percent calcium carbonate equivalent; moderately alkaline; abrupt wavy boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/P/PINEPOINT.json b/inst/extdata/OSD/P/PINEPOINT.json index 8dec11f662..026de9eab9 100644 --- a/inst/extdata/OSD/P/PINEPOINT.json +++ b/inst/extdata/OSD/P/PINEPOINT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--15 to 60 inches; very pale brown (10YR 7/3) fine sand, yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky, and nonplastic; common fine and medium roots; no effervescence; slightly alkaline (pH 7.4). (30 to 50 inches thick)" diff --git a/inst/extdata/OSD/P/PINERY.json b/inst/extdata/OSD/P/PINERY.json index 9f41f2e5e6..9f5d7ceef5 100644 --- a/inst/extdata/OSD/P/PINERY.json +++ b/inst/extdata/OSD/P/PINERY.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 9 cm, (0.0 to 3.5 inches); dark grayish brown (10YR 4/2) very gravelly loam, very dark brown (10YR 2/2), moist; 45 percent sand; 20 percent clay; weak medium subangular blocky parts to moderate coarse granular structure; slightly hard, friable, , slightly sticky, slightly plastic; many very fine roots and common fine roots; common very fine interstitial and common fine interstitial pores; 1 percent nonflat subrounded indurated 600 to 1200 millimeter limestone fragments and 5 percent nonflat subrounded indurated 250 to 600 millimeter limestone fragments and 10 percent nonflat subrounded indurated 75 to 250 millimeter limestone fragments and 25 percent nonflat rounded indurated 2 to 75 millimeter limestone fragments; strong effervescence, by HCl, 1 normal; slightly alkaline, pH 7.6 by pH meter; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--9 to 37 cm, (3.5 to 14.6 inches); dark grayish brown (10YR 4/2) gravelly loam, very dark grayish brown (10YR 3/2), moist; 35 percent sand; 22 percent clay; weak medium subangular blocky parts to moderate fine subangular blocky structure; slightly hard, friable, , slightly sticky, slightly plastic; common very fine roots and few medium roots and common fine roots; common very fine interstitial and few fine interstitial pores; 2 percent fine prominent irregular weakly cemented carbonate nodules on bottom of rock fragments and 3 percent fine prominent irregular carbonate masses on faces of peds; 3 percent nonflat subrounded indurated 75 to 250 millimeter limestone fragments and 25 percent nonflat rounded indurated 2 to 75 millimeter limestone fragments of which 15 percent are 2 to 20 millimeters; strong effervescence, by HCl, 1 normal; moderately alkaline, pH 7.9 by pH meter; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--37 to 59 cm, (14.6 to 23.2 inches); brown (10YR 4/3) extremely cobbly loam, dark brown (10YR 3/3), moist; 35 percent sand; 24 percent clay; weak medium subangular blocky parts to moderate fine subangular blocky structure; slightly hard, friable, , moderately sticky, moderately plastic; common very fine roots and few medium roots and few fine roots; many very fine interstitial and common fine interstitial pores; 3 percent fine prominent irregular weakly cemented carbonate nodules on bottom of rock fragments and 5 percent fine prominent irregular carbonate masses throughout; 10 percent nonflat subrounded indurated 250 to 600 millimeter limestone fragments and 25 percent nonflat subrounded indurated 75 to 250 millimeter limestone fragments and 30 percent nonflat rounded indurated 2 to 75 millimeter limestone fragments of which 18 percent are 2 to 20 millimeters; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 7.9 by pH meter; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "extremely stony", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--59 to 200 cm, (23.2 to 78.7 inches); brown (10YR 5/3) extremely stony sandy clay loam, dark yellowish brown (10YR 4/4), moist; 65 percent sand; 22 percent clay; weak fine subangular blocky structure; slightly hard, friable, , slightly sticky, slightly plastic; common very fine roots and few medium roots and few fine roots; common fine interstitial pores; 10 percent fine prominent irregular carbonate masses throughout and 5 percent medium prominent irregular weakly cemented carbonate nodules on bottom of rock fragments; 10 percent nonflat subrounded indurated 250 to 600 millimeter limestone fragments and 25 percent nonflat subrounded indurated 75 to 250 millimeter limestone fragments and 40 percent nonflat rounded indurated 2 to 75 millimeter limestone fragments of which 24 percent are 2 to 20 millimeters; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 7.9 by pH meter;" diff --git a/inst/extdata/OSD/P/PINEVAL.json b/inst/extdata/OSD/P/PINEVAL.json index b73c5e446f..3b6cd99cc8 100644 --- a/inst/extdata/OSD/P/PINEVAL.json +++ b/inst/extdata/OSD/P/PINEVAL.json @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqk2--53 to 152 cm; variegated extremely gravelly coarse sand; massive; slightly hard, very friable to friable, nonsticky and nonplastic; few very fine roots; 70 percent gravel; continuous weak brittle matrix with several 1.2 to 18 cm thick discontinuous lenses of strong silica cementation; carbonate coats on underside of rock fragments; slightly effervescent in matrix and strongly effervescent on carbonate coats; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/P/PINICON.json b/inst/extdata/OSD/P/PINICON.json index e6b2202375..5153a6c2f1 100644 --- a/inst/extdata/OSD/P/PINICON.json +++ b/inst/extdata/OSD/P/PINICON.json @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--57 to 60 inches; mottled yellowish brown (10YR 5/6) and gray (5Y 5/1) loam (23 percent clay); massive; firm; few pebbles; few white (10YR 8/1) mycelia lime accumulations; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/P/PISHKUN.json b/inst/extdata/OSD/P/PISHKUN.json index 2a8a44ce97..edf01fcd4e 100644 --- a/inst/extdata/OSD/P/PISHKUN.json +++ b/inst/extdata/OSD/P/PISHKUN.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A12--4 to 10 inches; pale brown (10YR 6/3) gravelly loam, dark brown (10YR 4/3) moist; weak medium subangular blocky structure and weak granular structure; slightly hard, very friable, slightly sticky, nonplastic; common very fine roots; common fine and medium interstitial pores, and few medium tubular pores; 20 percent coarse fragments; very thin lime casts on lower sides of pebbles; slight effervescence; moderately alkaline; clear wavy boundary. (5 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--10 to 24 inches; light brownish gray (10YR 6/2) very gravelly loam, dark grayish brown (10YR 4/2) moist; single grained; loose, very friable, nonsticky, nonplastic; common very fine roots; 70 percent coarse fragments; slight effervescence; moderately alkaline; gradual boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2ca--24 to 48 inches; light brownish gray (10YR 6/2) very gravelly loam, dark grayish brown (10YR 4/2) moist; single grained; loose, very friable, nonsticky, nonplastic; few very fine roots; strong effervescence with light lime casts on all sand and gravel." diff --git a/inst/extdata/OSD/P/PITCHDRAW.json b/inst/extdata/OSD/P/PITCHDRAW.json index 1314b459fe..15696ff744 100644 --- a/inst/extdata/OSD/P/PITCHDRAW.json +++ b/inst/extdata/OSD/P/PITCHDRAW.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--9 to 31 inches; brown (10YR 5/3) fine sandy loam, brown (10YR 4/3) moist; weak fine and medium subangular blocky structure; soft, very friable; few fine roots throughout; few fine pores; strong effervescence; few fine irregular light gray (10YR 7/2) carbonate threads throughout; carbonates disseminated throughout; moderately alkaline (pH 8.2); clear wavy boundary. (15 to 32 inches thick)" diff --git a/inst/extdata/OSD/P/PLANKINTON.json b/inst/extdata/OSD/P/PLANKINTON.json index 84a9f37453..8a30e4b559 100644 --- a/inst/extdata/OSD/P/PLANKINTON.json +++ b/inst/extdata/OSD/P/PLANKINTON.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--28 to 40 inches; very dark gray (10YR 3/1) and dark gray (N 4/0) silty clay loam, dark gray (10YR 4/1) and grayish brown (2.5Y 5/2) dry; weak medium and coarse prismatic structure parting to moderate fine and medium subangular blocky; hard, firm, slightly sticky and slightly plastic; few fine roots; few fine dark concretions (iron and manganese oxides); common fine accumulations of carbonate on vertical faces of peds; strong effervescence; moderately alkaline; gradual wavy boundary. (5 to 24 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--40 to 55 inches; grayish brown (2.5Y 5/2) clay loam, light gray (2.5Y 7/2) dry; common fine and medium prominent dark reddish brown (5YR 3/2) mottles and common medium distinct dark gray (N 4/0) mottles; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine concretions (iron and manganese oxides); few fine accumulations of carbonate; violent effervescence." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--55 to 60 inches; grayish brown (2.5Y 5/2) and light olive brown (2.5Y 5/4) clay loam, light gray (2.5Y 7/2) and light yellowish brown (2.5Y 6/4) dry; common fine prominent strong brown (7.5YR 5/6) mottles; massive; hard, friable, slightly sticky and slightly plastic; common fine dark concretions (iron and manganese oxides); few fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PLATTE.json b/inst/extdata/OSD/P/PLATTE.json index 6b55753419..882f677e84 100644 --- a/inst/extdata/OSD/P/PLATTE.json +++ b/inst/extdata/OSD/P/PLATTE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 centimeters (0 to 5 inches); dark gray (10YR 4/1) loam, very dark gray (10YR 3/1) moist; weak fine granular structure; soft, friable; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--13 to 20 centimeters (5 to 8 inches); dark gray (10YR 4/1) very fine sandy loam, very dark gray (10YR 3/1) moist; common medium distinct brown (7.5YR 5/4) iron masses in the soil matrix; weak medium and fine granular structure; soft; very friable; strong effervescence; moderately alkaline; clear smooth boundary. (Combined A horizon ranges from 15 to 23 centimeters (6 to 9 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--20 to 41 centimeters (8 to 16 inches); light gray (10YR 7/2) very fine sandy loam, grayish brown (10YR 5/2) moist; common fine to coarse distinct brown (7.5YR 5/4) iron masses in the matrix; massive; soft, very friable; strata of loamy sand in the lower part; strong effervescence; moderately alkaline; gradual smooth boundary. (13 to 20 centimeters (5 to 8 inches) thick)" diff --git a/inst/extdata/OSD/P/PLAYMOOR.json b/inst/extdata/OSD/P/PLAYMOOR.json index 2879305302..6341710258 100644 --- a/inst/extdata/OSD/P/PLAYMOOR.json +++ b/inst/extdata/OSD/P/PLAYMOOR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Az--0 to 6 inches; black (5Y 2/1) silty clay loam, dark gray (5Y 4/1) dry; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; common fine accumulations of salt; strong effervescence; slightly alkaline; clear wavy boundary. (6 to 22 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bz--6 to 16 inches; very dark gray (5Y 3/1) silty clay loam, gray (N 5/0) dry; weak medium and coarse subangular blocky structure parting to weak fine and medium granular; slightly hard, friable, slightly sticky and slightly plastic; many fine accumulations of salt; common fine nests of gypsum; strong effervescence; slightly alkaline; abrupt wavy boundary. (0 to 24 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz--16 to 23 inches; black (5Y 2/1) silty clay loam, dark gray (N 4/0) dry; weak medium and coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine accumulations of salt; few medium accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--23 to 38 inches; very dark gray (5Y 3/1) silty clay loam, gray (N 5/1) dry; few fine faint very dark grayish brown (10YR 3/2) redox concentrations; weak coarse subangular blocky structure; hard, friable, sticky and slightly plastic; few fine and medium accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary. (Combined Bk horizons are 0 to 32 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--38 to 60 inches; gray (5Y 5/1) silty clay loam, light gray (5Y 6/1) dry; many fine distinct very dark grayish brown (10YR 3/2) and few medium distinct yellowish brown (10YR 5/6) redox concentrations; massive; hard, firm, sticky and plastic; few fine and medium accumulations of carbonate; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/P/PLAYORICO.json b/inst/extdata/OSD/P/PLAYORICO.json index 7eb5f9e90b..9744fbc978 100644 --- a/inst/extdata/OSD/P/PLAYORICO.json +++ b/inst/extdata/OSD/P/PLAYORICO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "^A--0 to 23 inches, (0 to 58 cm); grayish brown (2.5Y 5/2) fine sandy loam, very dark grayish brown(2.5Y 3/2) moist; 10 percent clay; slightly hard, very friable, slightly sticky, nonplastic; slight effervescence, by HCl, 1 normal; slightly alkaline, ph 7.4; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--23 to 35 inches, (58 to 90 cm); light brownish gray (2.5Y 6/2) loamy sand, dark grayish brown(2.5Y 4/2) moist; 80 percent sand; 5 percent clay; loose, loose, nonsticky, nonplastic; very slight effervescence, by HCl, 1 normal; neutral, pH 7.2 by Phenol red; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--35 to 43 inches, (90 to 108 cm); light yellowish brown (2.5Y 6/3) silt loam, olive brown (2.5Y 4/3) moist; 25 percent sand; 10 percent clay; loose, loose, nonsticky, nonplastic; strong effervescence, by HCl, 1 normal; moderately alkaline, ph 8.0 clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--43 to 61 inches, (108 to 155 cm); light yellowish brown (2.5Y 6/3) sandy loam, olive brown (2.5Y 4/3) moist; 60 percent sand; 10 percent clay; loose, loose, nonsticky, nonplastic; violent effervescence, by HCl, 1 normal; moderately alkaline, ph 8.2." diff --git a/inst/extdata/OSD/P/PLEDGER.json b/inst/extdata/OSD/P/PLEDGER.json index 5e8cd208b8..396391081c 100644 --- a/inst/extdata/OSD/P/PLEDGER.json +++ b/inst/extdata/OSD/P/PLEDGER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss1--133 to 171 cm (52 to 67 in); yellowish red (5YR 4/6) silty clay, yellowish red (5YR 5/6), dry; moderate medium wedge structure parts to moderate medium angular blocky structure; extremely firm, extremely hard, very sticky, very plastic; few fine roots; few fine tubular and common very fine tubular pores; 25 percent prominent pressure faces and 50 percent slickensides (pedogenic); 1 percent fine and medium distinct strong brown (7.5YR 5/8) masses of oxidized iron with clear boundaries on faces of peds and 2 percent fine distinct grayish brown (10YR 5/2) iron depletions with clear boundaries on slickensides; 2 percent fine carbonate nodules; wedge shaped peds tilted at 50 to 60 degrees to the horizontal; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined thickness of the Bkss horizons is 61 to 157 cm [24 to 62 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss2--171 to 182 cm (67 to 72 in); yellowish red (5YR 4/6) clay, yellowish red (5YR 5/6), dry; moderate medium wedge structure parts to moderate medium angular blocky structure; extremely firm, extremely hard, very sticky, very plastic; few fine roots; few fine tubular and common very fine tubular pores; 10 percent prominent pressure faces and 30 percent prominent slickensides (pedogenic); 1 percent fine and medium prominent gray (10YR 6/1) iron depletions with clear boundaries on slickensides; 1 percent fine and medium black (7.5YR 2.5/1) iron-manganese nodules; 2 percent fine carbonate nodules; wedge-shaped peds tilted at 50 to 60 degrees to the horizontal; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss3--182 to 220 cm (72 to 87 in); red (2.5YR 4/6) silty clay, red (2.5YR 5/6), dry; moderate medium wedge structure parts to moderate medium angular blocky structure; extremely firm, extremely hard,very sticky, very plastic; few fine roots; few fine tubular and common very fine tubular pores; 10 percent distinct pressure faces and 25 percent prominent slickensides (pedogenic); 1 percent fine and medium prominent gray (10YR 6/1) iron depletions with clear boundaries on slickensides; 1 percent fine and medium black (7.5YR 2.5/1) iron-manganese nodules; 1 percent fine and medium prominent black (10YR 2/1) iron-manganese masses with clear boundaries lining pores; 1 percent fine carbonate nodules; wedge-shaped peds tilted at 50 to 60 degrees to the horizontal; strong effervescence; slightly alkaline; gradual smooth boundary." diff --git a/inst/extdata/OSD/P/POBLANO.json b/inst/extdata/OSD/P/POBLANO.json index e94e30ba48..653d8dad7c 100644 --- a/inst/extdata/OSD/P/POBLANO.json +++ b/inst/extdata/OSD/P/POBLANO.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--27 to 34 inches; brown (7.5YR 5/4) crushed, gravelly clay, brown (7.5YR 4/4) crushed, moist; weak coarse subangular blocky structure; very hard, extremely firm; very sticky and very plastic; few fine roots throughout; few fine dendritic tubular pores; 45 percent clay; 5 percent medium, irregular calcium carbonate masses on faces of peds; 20 percent patchy prominent clay films on faces of peds; 15 percent nonflat subrounded 0.1- to 3-inch monzonite gravel; slight effervescence with violent effervescence in patches by HCL, 1 normal; moderately alkaline; gradual wavy boundary. (4 to 13 inches thick)" diff --git a/inst/extdata/OSD/P/POE.json b/inst/extdata/OSD/P/POE.json index 86f6bf741d..3fe73f95ad 100644 --- a/inst/extdata/OSD/P/POE.json +++ b/inst/extdata/OSD/P/POE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--16 to 22 inches; very dark grayish brown (10YR 3/2) loamy sand, light brownish gray (10YR 5/2) dry; massive; soft, very friable; few very fine roots; few very fine tubular pores; weakly effervescent; moderately alkaline (pH 8.0); gradual smooth boundary. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/P/POGANEAB.json b/inst/extdata/OSD/P/POGANEAB.json index cec4a61d33..d133f9f6ab 100644 --- a/inst/extdata/OSD/P/POGANEAB.json +++ b/inst/extdata/OSD/P/POGANEAB.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 10 cm; dark grayish brown (10YR 4/2) loam; light brownish gray (10YR 6/2) dry; weak fine granular structure; soft, very friable, slightly sticky, slightly plastic; many very fine and fine roots; common very fine vesicular pores; moderately effervescent; moderately alkaline (pH 8.2); abrupt smooth boundary." diff --git a/inst/extdata/OSD/P/POHAKUPU.json b/inst/extdata/OSD/P/POHAKUPU.json index b29592dc23..dcedbd54a1 100644 --- a/inst/extdata/OSD/P/POHAKUPU.json +++ b/inst/extdata/OSD/P/POHAKUPU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 33 centimeters (0 to 13 inches); dark reddish brown (5YR 3/3) silty clay loam, reddish brown (5YR 4/3) dry; strong very fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; many fine roots; many very fine and fine interstitial pores; common worm holes and casts; slight effervescence with hydrogen peroxide; slightly acid (pH 6.1); abrupt smooth boundary. (20 to 33 centimeters {8 to 13 inches} thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.2, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw1--33 to 53 centimeters (13 to 21 inches); dark reddish brown (5YR 3/3) silty clay loam, reddish brown (5YR 4/4) dry; moderate very fine subangular blocky structure; hard, friable, slightly sticky and moderately plastic; many very fine roots; many very fine and fine tubular pores; common patchy pressure faces; slight effervescence with hydrogen peroxide; slightly acid (pH 6.2); abrupt smooth boundary. (10 to 23 centimeters {4 to 9 inches} thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Bw2--53 to 97 centimeters (21 to 38 inches); dark brown (7.5YR 3/4) silty clay loam, brown (7.5YR 4/4) dry; strong very fine angular and subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine roots; many very fine and fine tubular pores; continuous pressure faces; many black stains in pores and on peds that have strong effervescence with hydrogen peroxide; 2 percent gravel; slightly acid (pH 6.4); clear irregular boundary. (10 to 46 centimeters {4 to 18 inches} thick)" diff --git a/inst/extdata/OSD/P/POHOCCO.json b/inst/extdata/OSD/P/POHOCCO.json index 8aaa9cca54..7368b83fd5 100644 --- a/inst/extdata/OSD/P/POHOCCO.json +++ b/inst/extdata/OSD/P/POHOCCO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--15 to 20 inches; olive brown (2.5Y 4/4) silt loam; light yellowish brown (2.5Y 6/4) dry; common fine faint grayish brown (2.5Y 5/2), and few prominent strong brown (7.5YR 5/6) iron masses in the matrix; the matrix color and iron accumulations are relict redoximorphic features; weak coarse subangular blocky structure parting to moderate medium granular; slightly hard, friable; few fine roots throughout; common fine tubular pores; common fine and medium soft masses of carbonates; violent effervescence; slightly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--20 to 28 inches; olive brown (2.5Y 4/4) crushed silt loam; light yellowish brown (2.5Y 6/4) crushed dry; common medium faint grayish brown (2.5Y 5/2), and few prominent strong brown (7.5YR 5/8) mottles; weak coarse subangular blocky structure parting to moderate medium granular; friable; few fine roots throughout; common fine tubular pores; few fine rounded soft masses of iron-manganese; fine and medium soft masses of carbonates; violent effervescence; slightly alkaline (7.6); gradual smooth boundary. (Combined thickness of Bw and Bk1 horizons is 10 to 24 inches.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--28 to 60 inches; light olive brown (2.5Y 5/4) silt loam, pale yellow (2.5Y 7/4) dry; common coarse faint light brownish gray (2.5Y 6/2), and few prominent yellowish red (5YR 5/8) iron masses in the matrix; the matrix color and iron accumulations are relict redoximorphic features; massive; slightly hard, friable; few fine roots throughout; common fine tubular pores; common fine rounded soft masses of iron-manganese; few medium soft masses of carbonates and carbonate nodules; violent effervescence; slightly alkaline (7.5)." diff --git a/inst/extdata/OSD/P/POINSETT.json b/inst/extdata/OSD/P/POINSETT.json index af3d510aa2..8b4b79c215 100644 --- a/inst/extdata/OSD/P/POINSETT.json +++ b/inst/extdata/OSD/P/POINSETT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--58 to 89 centimeters (23 to 35 inches); olive brown (2.5Y 4/3) silty clay loam, light brownish gray (2.5Y 6/2) dry; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable, moderately sticky and moderately plastic; common very fine pores; common fine and medium accumulations of calcium carbonate; violent effervescence; moderately alkaline (pH 8.2); clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--89 to 117 centimeters (35 to 46 inches); dark grayish brown (2.5Y 4/2) silty clay loam, light brownish gray (2.5Y 6/2) dry; few fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; weak coarse prismatic structure; hard, friable, moderately sticky and moderately plastic; few very fine pores; common fine and medium accumulations of calcium carbonate; violent effervescence; moderately alkaline (pH 8.4); clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--117 to 157 centimeters (46 to 62 inches); grayish brown (2.5Y 5/2) silty clay loam, light gray (2.5Y 7/2) dry; common medium and coarse prominent yellowish red (5YR 4/6) and yellowish brown (10YR 5/6) redoximorphic concentrations and few fine faint light brownish gray (2.5Y 6/2) redoximorphic depletions; weak coarse subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few very fine pores; strata of loam to silty clay loam; common fine accumulations of calcium carbonate; strong effervescence; moderately alkaline (pH 8.4); clear wavy boundary. [Combined thickness of the Bk horizon is 15 to 102 centimeters (6 to 40 inches).]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--157 to 173 centimeters (62 to 68 inches); light olive brown (2.5Y 5/4) clay loam, light yellowish brown (2.5Y 6/4) dry; common medium and coarse prominent yellowish brown (10YR 5/6) redoximorphic concentrations and few fine distinct light brownish gray (2.5Y 6/2) redoximorphic depletions; few fine prominent very dark gray (10YR 3/1) Fe concretions; massive; hard, firm, slightly sticky and slightly plastic; few very fine pores; 3 percent gravel; few fine accumulations of calcium carbonate; strong effervescence; moderately alkaline (pH 8.0); gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--173 to 203 centimeters (68 to 80 inches); light olive brown (2.5Y 5/4) clay loam, light yellowish brown (2.5Y 6/4) dry; few fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations and common fine distinct light brownish gray (2.5Y 6/2) redoximorphic depletions; few fine prominent very dark gray (10YR 3/1) Fe concretions; massive; hard, firm, slightly sticky and slightly plastic; few very fine pores; 3 percent gravel; strong effervescence; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/P/PONCA.json b/inst/extdata/OSD/P/PONCA.json index 06cef896c3..b0e67f72f4 100644 --- a/inst/extdata/OSD/P/PONCA.json +++ b/inst/extdata/OSD/P/PONCA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BC--18 to 24 inches; brown (10YR 5/3) silty clay loam, light brownish gray (10YR 6/2) dry; few medium distinct reddish brown (5YR 5/4) iron masses the the matrix; the matrix color and iron accumulations are relict redoximorphic features; weak medium prismatic structure; hard, friable; few medium and small lime concretions; many small dark concretions; violent effervescence; moderately alkaline; clear wavy boundary. (2 to 7 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--24 to 30 inches; yellowish brown (10YR 5/4) silty clay loam, pale brown (10YR 6/3) dry; many medium distinct reddish brown (5YR 5/4) iron masses the the matrix; the matrix color and iron accumulations are relict redoximorphic features; massive; hard, friable; a few dark lime concretions; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--30 to 80 inches; yellowish brown (10YR 5/4) silty clay loam, pale brown (10YR 6/3) dry; massive; hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PONDEROSA.json b/inst/extdata/OSD/P/PONDEROSA.json index 1dc14be2f2..2ff3b681bf 100644 --- a/inst/extdata/OSD/P/PONDEROSA.json +++ b/inst/extdata/OSD/P/PONDEROSA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--27 to 60 inches; very pale brown (10YR 7/3) loamy very fine sand; brown (10YR 5/3) moist; single grain; loose; 7 percent by volume of sandstone gravel; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/P/PORTAGEVILLE.json b/inst/extdata/OSD/P/PORTAGEVILLE.json index c3f572aeca..c139338919 100644 --- a/inst/extdata/OSD/P/PORTAGEVILLE.json +++ b/inst/extdata/OSD/P/PORTAGEVILLE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg1--15 to 25 inches; dark gray (10YR 4/1) clay; moderate medium angular blocky structure; very firm; few slickensides; common medium prominent reddish brown (5YR 4/3) and few coarse prominent yellowish red (5YR 4/6) masses of iron accumulation; slightly effervescence; moderately alkaline; gradual smooth boundary." diff --git a/inst/extdata/OSD/P/PORTAL.json b/inst/extdata/OSD/P/PORTAL.json index b76000e0da..e4888de312 100644 --- a/inst/extdata/OSD/P/PORTAL.json +++ b/inst/extdata/OSD/P/PORTAL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btkn--12 to 22 inches; grayish brown (10YR 5/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; moderate medium prismatic structure parting to moderate medium angular blocky; slightly hard, friable, slightly sticky and slightly plastic; many fine and medium roots; common distinct clay films on faces of peds; few clean sand grains on faces of peds; common medium masses of carbonates in interior of peds; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--22 to 40 inches; light yellowish brown (2.5Y 6/3) fine sandy loam, light olive brown (2.5Y 5/4) moist; moderate medium angular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common fine and medium masses of carbonates; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--40 to 60 inches; light yellowish brown (2.5Y 6/4) fine sandy loam, light olive brown (2.5Y 5/4) moist; common medium prominent olive gray (5Y 5/2) moist mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; common fine masses of carbonates; strong effervescence; moderately alkaline. (0 to 30 inches thick)" diff --git a/inst/extdata/OSD/P/POSEN.json b/inst/extdata/OSD/P/POSEN.json index 6a76408e6f..9041b479ef 100644 --- a/inst/extdata/OSD/P/POSEN.json +++ b/inst/extdata/OSD/P/POSEN.json @@ -181,7 +181,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--16 to 60 inches; brown (10YR 5/3) very cobbly fine sandy loam; massive; friable; few fine roots; about 30 percent gravel and 30 percent cobbles; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/POSO.json b/inst/extdata/OSD/P/POSO.json index 5d333fee95..1b9c045060 100644 --- a/inst/extdata/OSD/P/POSO.json +++ b/inst/extdata/OSD/P/POSO.json @@ -89,7 +89,7 @@ "cf_class": "extremely gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 2 inches; brown (10YR 5/3) extremely gravelly loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, very friable, slightly sticky and slightly plastic; common very fine and few fine roots; common very fine tubular pores; slight effervescence; 50 percent gravel and 10 percent cobbles; slightly alkaline (pH 7.8); clear smooth boundary. (1 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--2 to 4 inches; brown (10YR 4/3) very gravelly loam, very dark grayish brown (10YR 3/2) moist; moderate medium and fine subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; common very fine, fine and few medium roots; few very fine tubular pores; slight effervescence; 25 percent gravel and 10 percent cobbles; slightly alkaline (pH 7.8); clear wavy boundary. (2 to 4 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--4 to 12 inches; pale brown (10YR 6/3) very gravelly loam, brown (10YR 4/3) moist; weak fine subangular blocky structure; soft, very friable; slightly sticky and slightly plastic; common very fine, fine and few medium roots; few very fine tubular pores; violent effervescence; 40 percent gravel and 10 percent cobbles; slightly alkaline (pH 7.8); clear wavy boundary. (8 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--12 to 32 inches; variegated, very pale brown (10YR 7/3) extremely gravelly sandy loam, yellowish brown (10YR 5/4) moist; massive; soft, very friable, slightly sticky and slightly plastic; few very fine and fine roots; violent effervescence; 50 percent gravel and 15 percent cobbles; moderately alkaline (pH 8.0); clear wavy boundary. (20 to 40 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--32 to 61 inches; light yellowish brown (10YR 6/4) extremely gravelly sandy loam, yellowish brown (10YR 5/4) moist; massive; soft, very friable, slightly sticky and slightly plastic; few very fine roots; violent effervescence; 60 percent gravel and 20 percent cobbles; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/P/POTWISHA.json b/inst/extdata/OSD/P/POTWISHA.json index 9bb6fa2025..34f497555b 100644 --- a/inst/extdata/OSD/P/POTWISHA.json +++ b/inst/extdata/OSD/P/POTWISHA.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--2 to 10 cm; brown (10YR 4/3) gravelly sandy loam, dark brown (10YR 3/3) moist; 8 percent clay; weak medium subangular blocky parting to weak medium granular structure; soft, very friable, nonsticky, nonplastic; many very fine roots throughout; many very fine irregular pores; 20 percent subangular indurated marble gravel, 3 percent subangular indurated marble cobbles; very slight effervescence; neutral (pH 7.2); clear smooth boundary. (7 to 26 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk--10 to 42 cm; brown (10YR 5/3) gravelly sandy loam, dark brown (10YR 3/3) moist; 12 percent clay; moderate medium subangular blocky parting to moderate fine subangular blocky structure; slightly hard, very friable, nonsticky, nonplastic; many very fine and common fine roots throughout; many very fine irregular and common very fine dendritic tubular pores; 25 percent carbonate coats on bottom of rock fragments; 15 percent subangular indurated marble gravel, 10 percent subangular indurated marble cobbles, 1 percent subangular indurated marble stones; slight effervescence; neutral (pH 7.0); abrupt smooth boundary. (10 to 35 cm thick)" diff --git a/inst/extdata/OSD/P/POWER.json b/inst/extdata/OSD/P/POWER.json index 060ec37eea..d63aeddc96 100644 --- a/inst/extdata/OSD/P/POWER.json +++ b/inst/extdata/OSD/P/POWER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--31 to 46 inches; very pale brown (10YR 7/3) silt loam, pale brown (10YR 6/3) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; threads of segregated calcium carbonate; moderately effervescent; slightly alkaline (pH 8.4); clear smooth boundary. (Combined Bk horizon - 15 to 35 inches thick)" diff --git a/inst/extdata/OSD/P/PRIM.json b/inst/extdata/OSD/P/PRIM.json index 02c4422d5a..7395c09e4d 100644 --- a/inst/extdata/OSD/P/PRIM.json +++ b/inst/extdata/OSD/P/PRIM.json @@ -89,7 +89,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 7 inches; black (10YR 2/1) very cobbly clay loam; moderate medium granular structure; friable; slightly sticky; many fine roots; about 40 percent by volume of chalk and hard limestone fragments ranging from 2 mm to 30 cm in diameter; strong effervescence; mildly alkaline; clear smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--7 to 15 inches; olive gray (5Y 5/2) extremely cobbly sandy loam; weak granular structure; friable, slightly sticky; few fine calcium carbonate concretions; about 60 to 70 percent by volume light gray (5Y 7/2) chalk fragments that range from 2 mm to 35 cm in diameter; few distinct streaks of olive yellow in soil material and in chalk fragments; few fine and medium roots in soil material between fracture faces; strong effervescence; mildly alkaline; gradual wavy boundary. (0 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--15 to 60 inches; light gray (5Y 7/2) soft chalk; few fine steaks or splotches of olive yellow; very weak platy structure to massive; can be cut with spade; common fine calcium carbonate concretions; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PROMISE.json b/inst/extdata/OSD/P/PROMISE.json index 62d2187698..f3ce8bc332 100644 --- a/inst/extdata/OSD/P/PROMISE.json +++ b/inst/extdata/OSD/P/PROMISE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss--20 to 41 centimeters (8 to 16 inches); grayish brown (2.5Y 5/2) clay, very dark grayish brown (2.5Y 3/2) moist; moderate medium and coarse blocky and subangular blocky structure; extremely hard, very firm, very sticky and very plastic; few fine roots; cracks 1.5 to 3 centimeters (1/2 to 1 inch) wide; few intersecting slickensides; common tongues of very dark gray (10YR 3/1) moist; strong effervescence; moderately alkaline; gradual wavy boundary. [20 to 56 centimeters (8 to 22 inches) thick.]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss--41 to 64 centimeters (16 to 25 inches); light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate coarse subangular blocky structure; extremely hard, very firm, very sticky and very plastic; few fine roots; cracks 1.5 to 3 centimeters (1/2 to 1 inch) wide; few intersecting slickensides; few tongues of very dark gray (10YR 3/1) moist; few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. [0 to 41 centimeters (0 to 16 inches) thick.]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Css--64 to 91 centimeters (25 to 36 inches); light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; extremely hard, very firm, very sticky and very plastic; few fine roots; few intersecting slickensides; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cy--91 to 119 centimeters (36 to 47 inches); light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm, sticky and plastic; few fine roots; common fine distinct iron stains of light yellowish brown (10YR 6/4) moist; common fine and medium nests and seams of gypsum crystals; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--119 to 152 centimeters (47 to 60 inches); grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) and grayish brown (2.5Y 5/2) moist; massive; hard, firm, sticky and plastic; few fine distinct iron stains of light yellowish brown (10YR 6/4) moist; few fine nests of gypsum crystals; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PROSPER.json b/inst/extdata/OSD/P/PROSPER.json index b91db4fc27..fbb8b70846 100644 --- a/inst/extdata/OSD/P/PROSPER.json +++ b/inst/extdata/OSD/P/PROSPER.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--24 to 30 inches; light brownish gray (2.5Y 6/3) clay loam, olive brown (2.5Y 4/3) moist; weak medium prismatic structure parting to weak medium blocky; hard, friable, sticky; shiny film on faces of peds; few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk--30 to 45 inches; light brownish gray (2.5Y 6/3) clay loam, grayish brown (2.5Y 5/3) moist; few fine distinct gray (2.5Y 6/1) redox depletions; weak coarse blocky structure; hard, friable, slightly sticky; many medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; diffuse wavy boundary. (8 to 16 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--45 to 60 inches; light brownish gray (2.5Y 6/3) clay loam, dark grayish brown (2.5Y 4/3) moist; many coarse distinct gray (2.5Y 6/1) redox depletions and olive yellow (2.5Y 6/6) redox concentrations; weak coarse blocky structure; hard, friable, slightly sticky; common fine dark concretions (iron and manganese oxides); few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PUHI.json b/inst/extdata/OSD/P/PUHI.json index 9032481256..957002a7d4 100644 --- a/inst/extdata/OSD/P/PUHI.json +++ b/inst/extdata/OSD/P/PUHI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap--0 to 12 inches; brown (10YR 4/3) silty clay loam, same color when rubbed, yellowish brown (10YR 5/4) dry; moderate very fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; many roots; many very fine and fine tubular pores; common interstitial pores; many gritty particles that are hard to break down; delayed effervescence with hydrogen peroxide; very strongly acid (pH 5.0); abrupt wavy boundary. (11 to 14 inches thick)" diff --git a/inst/extdata/OSD/P/PULEHU.json b/inst/extdata/OSD/P/PULEHU.json index deab4bcbac..49d0e4ec1a 100644 --- a/inst/extdata/OSD/P/PULEHU.json +++ b/inst/extdata/OSD/P/PULEHU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap1--0 to 7 inches; dark brown (10YR 3/3) clay loam, very dark brown (10YR 2/2) moist; weak fine and medium granular structure; hard, friable, sticky and plastic; many fine and fine roots; common fine and very fine interstitial pores; few pebbles; slight effervescence with hydrogen peroxide; neutral (pH 7.0); gradual smooth boundary. (5 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.1, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap2--7 to 21 inches; dark brown (10YR 3/3) clay loam, very dark brown (10YR 2/2) moist; weak fine and medium subangular blocky structure; hard, friable, sticky and plastic; many very fine and fine roots; common fine and very fine interstitial pores, common fine tubular pores; slight effervescence with hydrogen peroxide; neutral (pH 7.1); abrupt wavy boundary. (9 to 14 inches thick)" diff --git a/inst/extdata/OSD/P/PULLOUT.json b/inst/extdata/OSD/P/PULLOUT.json index c91be78495..d5ffa4a91c 100644 --- a/inst/extdata/OSD/P/PULLOUT.json +++ b/inst/extdata/OSD/P/PULLOUT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 20 cm; very pale brown (10YR 8/2) loam, light brownish gray (10YR 6/2) moist; moderate fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; many very fine and fine roots; few very fine tubular and interstitial pores; violent effervescence; very strongly alkaline, (pH 9.6); clear wavy boundary. (10 to 30 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--20 to 50 cm; very pale brown (10YR 8/2) loam, light brownish gray (10YR 6/2) moist; moderate fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine and fine roots; few very fine interstitial and tubular pores; violent effervescence; very strongly alkaline, (pH 9.6); clear wavy boundary. (25 to 40 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--50 to 74 cm; very pale brown (10YR 8/2) loam, light brownish gray (10YR 6/2) moist; weak fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine roots; few very fine interstitial and tubular pores; slight effervescence; very strongly alkaline, (pH 9.2); clear wavy boundary. (20 to 60 cm thick)" diff --git a/inst/extdata/OSD/P/PURDIN.json b/inst/extdata/OSD/P/PURDIN.json index 5cebfb1c9e..977227a3a9 100644 --- a/inst/extdata/OSD/P/PURDIN.json +++ b/inst/extdata/OSD/P/PURDIN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--37 to 50 inches; yellowish brown (10YR 5/6) clay loam; moderate medium prismatic structure parting to weak fine subangular blocky; very firm; few fine roots; many medium and coarse prominent light brownish gray (10YR 6/2) Fe depletions and few medium distinct yellowish brown (10YR 5/4) and few medium faint dark yellowish brown (10YR 4/6) Fe masses in ped interiors; common soft black stains (oxides); 2 percent gravel; few soft masses of calcium carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--50 to 77 inches; variegated yellowish brown (10YR 5/6), dark yellowish brown (10YR 4/6), and light brownish gray (10YR 6/2) clay loam; weak medium prismatic structure; very firm; few black stains (oxides); 2 percent gravel; common soft masses of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PUTCO.json b/inst/extdata/OSD/P/PUTCO.json index 619bf79299..727c519ec7 100644 --- a/inst/extdata/OSD/P/PUTCO.json +++ b/inst/extdata/OSD/P/PUTCO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 4 inches; very dark gray (10YR 3/1) silty clay loam, gray (10YR 5/1) dry; weak fine granular structure; friable; common fine roots; 30 percent soft shale fragments; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 6 inches thick)." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--4 to 60 inches; mixed grayish brown (2.5Y 5/2), very dark gray (N 3/0), and dark reddish brown (2.5YR 3/4) silty clay; massive; firm; few fine roots; 50 percent soft shale fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PUTNEY.json b/inst/extdata/OSD/P/PUTNEY.json index 32e28d4901..390ee10081 100644 --- a/inst/extdata/OSD/P/PUTNEY.json +++ b/inst/extdata/OSD/P/PUTNEY.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz1--15 to 20 inches; light gray (2.5Y 7/2) silty clay loam, light yellowish brown (2.5Y 6/4) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; hard, friable, slightly sticky and slightly plastic; common fine and very fine roots; common fine pores; common fine nests and threads of salt; violent effervescence (35 percent calcium carbonate equivalent); moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz2--20 to 25 inches; light gray (2.5Y 7/2) silt loam, light yellowish brown (2.5Y 6/4) moist; weak coarse subangular blocky structure; slightly hard, friable; few fine pores; many fine and common medium nests of gypsum crystals and other salts; violent effervescence (12 percent calcium carbonate equivalent); moderately alkaline; clear wavy boundary. (Combined Bkz horizons is 4 to 20 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--25 to 40 inches; pale yellow (2.5Y 7/4) silt loam, olive brown (2.5Y 4/4) moist; massive; slightly hard, very friable; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--40 to 60 inches; pale yellow (2.5Y 7/4) silt loam, light yellowish brown (2.5Y 6/4) moist; few fine distinct yellowish brown (10YR 5/6) moist redox concentrations; massive; slightly hard, very friable; 1 to 2 mm varves; few fine nests of gypsum and other salts; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/P/PUUONE.json b/inst/extdata/OSD/P/PUUONE.json index 1ce681e2aa..3136448059 100644 --- a/inst/extdata/OSD/P/PUUONE.json +++ b/inst/extdata/OSD/P/PUUONE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--0 to 20 inches; grayish brown (10YR 5/2) sand, light brownish gray (10YR 6/2) dry; single grained; loose; many fine roots; porous; violent effervescence with hydrochloric acid; moderately alkaline (pH 8.0); abrupt wavy boundary. (20 to 40 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2cam--20 to 40 inches; grayish brown (10YR 5/2) cemented sand, light brownish gray (10YR 6/2) dry; massive; very hard, very firm, nonsticky and nonplastic; few fine roots in cracks; breaks down under treatment with dilute hydrochloric acid but not with water; violent effervescence with hydrochloric acid; strongly alkaline (pH 8.5)." diff --git a/inst/extdata/OSD/P/PUU_OPAE.json b/inst/extdata/OSD/P/PUU_OPAE.json index a38326b9cb..45f47d7411 100644 --- a/inst/extdata/OSD/P/PUU_OPAE.json +++ b/inst/extdata/OSD/P/PUU_OPAE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.3, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A11--0 to 7 inches; dusky red (2.5YR 3/2) silty clay loam, weak red (2.5YR 4/2) dry; moderate fine and very fine subangular blocky structure; slightly hard, friable, sticky and plastic; many roots; many fine pores; strong effervescence with hydrogen peroxide; strongly acid (pH 5.3); clear smooth boundary. (6 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.6, "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A12--7 to 10 inches; dusky red (2.5YR 3/2) loam, dark reddish brown (2.5YR 3/3) dry; weak fine subangular blocky structure; weakly coherent, very friable, slightly sticky and slightly plastic; many roots; many fine pores; strong effervescence with hydrogen peroxide; medium acid (pH 5.6); clear smooth boundary. (3 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.5, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B1--10 to 14 inches; dark reddish brown (2.5YR 3/3) light silty clay, reddish brown (2.5YR 4/3) dry; moderate fine and very fine subangular blocky structure; hard, friable, sticky and plastic; many roots; many fine pores; very few thin clay films on faces of peds; moderate effervescence with hydrogen peroxide; strongly acid (pH 5.5); clear smooth boundary. (3 to 5 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 5.3, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B21t--14 to 29 inches; reddish brown (2.5YR 4/4) silty clay, same color dry; weak fine and very fine subangular blocky structure; hard, firm, very sticky and plastic; common roots; common fine and very fine pores; thin patchy clay films on faces of peds; no effervescence with hydrogen peroxide; strongly acid (pH 5.3); gradual smooth boundary. (12 to 18 inches thick)" diff --git a/inst/extdata/OSD/P/PYRON.json b/inst/extdata/OSD/P/PYRON.json index 903b04f5b0..a9d3e3aca1 100644 --- a/inst/extdata/OSD/P/PYRON.json +++ b/inst/extdata/OSD/P/PYRON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; brown (7.5YR 4/2) clay loam, dark brown (7.5YR 3/2), moist; moderate fine and medium subangular blocky structure; friable, slightly hard; common very fine, fine and medium roots throughout; common fine and very fine tubular pores; 1 percent fine insect casts throughout; 1 percent rounded quartz pebbles; slight effervescence, moderately alkaline; clear smooth boundary. (7 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt1--6 to 15 inches; brown (7.5YR 4/3) clay, dark brown (7.5YR 3/3), moist; weak fine and medium prismatic structure parting to strong fine and medium subangular blocky; firm, hard; common very fine, fine and medium roots throughout; common very fine, fine and medium tubular pores; 15 percent faint clay films on all faces of peds; 2 percent insect casts throughout; 1 percent rounded quartz pebbles; strong effervescence, moderately alkaline; clear smooth boundary. (combined thickness of the Bt horizons 9 to 26 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt2--15 to 29 inches; brown (7.5YR 5/4) clay, brown (7.5YR 4/4) moist; weak fine and medium prismatic structure parting to strong fine and medium subangular blocky; firm, hard; common fine and very fine roots throughout; common very fine, fine and medium tubular pores; 25 percent faint clay films on all faces of peds; 2 percent insect casts throughout; 1 percent rounded quartz pebbles; strong effervescence, moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--29 to 37 inches; pink (7.5YR 8/3) clay loam, light brown (7.5YR 6/4), moist; moderate fine and medium subangular blocky structure; firm, moderately hard; common fine and very fine roots throughout; common medium tubular pores; 4 percent insect casts throughout and 10 percent fine and 10 percent coarse prominent irregular carbonate masses throughout and 10 percent fine prominent irregular weakly cemented carbonate nodules with sharp boundaries throughout; 1 percent rounded quartz pebbles; violent effervescence, moderately alkaline; clear smooth boundary. (combined thickness of the Bk horizons 18 to 53 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--37 to 47 inches); reddish yellow (5YR 6/6) silty clay, yellowish red (5YR 5/6), moist; weak medium and coarse prismatic structure parting to moderate fine and medium subangular blocky; firm, moderately hard; common fine and very fine roots throughout; common medium tubular pores; 5 percent insect casts throughout and 5 percent fine and 5 percent coarse prominent irregular carbonate masses throughout and 5 percent fine prominent irregular weakly cemented carbonate nodules with sharp boundaries throughout; 1 percent rounded quartz pebbles; violent effervescence, moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk1--47 to 72 inches; yellowish red (5YR 5/6) clay loam, yellowish red (5YR 4/6), moist; moderate coarse and medium prismatic structure parting to moderate fine and medium angular blocky; very firm, very hard; common fine and very fine roots throughout; common medium tubular pores; 50 percent distinct clay films on all faces of peds; 4 percent insect casts throughout and 2 percent fine and 2 percent medium prominent spherical weakly cemented carbonate nodules with sharp boundaries throughout and 5 percent very coarse and 5 percent coarse prominent irregular carbonate masses throughout; 1 percent rounded quartz pebbles; strong effervescence, moderately alkaline; gradual smooth boundary. (combined thickness of the Btk horizons 5 to 65 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk2--72 to 82 inches; reddish yellow (5YR 6/6) clay, yellowish red (5YR 5/6), moist; moderate coarse and medium prismatic structure parting to moderate fine and medium angular blocky; very firm, very hard; common fine and very fine roots throughout; common fine tubular pores; 50 percent distinct clay films on all faces of peds; 3 percent insect casts throughout and 3 percent coarse and 3 percent very coarse prominent irregular carbonate masses throughout; 1 percent rounded quartz pebbles; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/P/PYXO.json b/inst/extdata/OSD/P/PYXO.json index 0aeec20737..96aa0fea8f 100644 --- a/inst/extdata/OSD/P/PYXO.json +++ b/inst/extdata/OSD/P/PYXO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 13 cm (0 to 5 inches); pale brown (10YR 6/3) loam, brown (10YR 4/3), moist; moderate coarse and medium angular blocky structure; very friable, slightly hard, slightly sticky, slightly plastic; many very fine roots; common very fine tubular pores; slight effervescence; moderately alkaline (pH 8.0); clear wavy boundary. (5 to 50 cm (2 to 20 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--13 to 30 cm (5 to 12 inches); very pale brown (10YR 7/4) loam, yellowish brown (10YR 5/4), moist; weak medium and coarse angular blocky structure; very friable, slightly hard, slightly sticky, slightly plastic; common very fine roots; many very fine tubular pores; few fine threadlike carbonate masses; violent effervescence; strongly alkaline, pH 8.5; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--30 to 56 cm (12 to 22 inches); very pale brown (10YR 7/3) loam, yellowish brown (10YR 5/4), moist; weak medium and coarse blocky structure; very friable, slightly hard, slightly sticky, slightly plastic; few very fine roots; common very fine tubular pores; few fine threadlike carbonate; violent effervescence; strongly alkaline, pH 8.5; clear wavy boundary. (Combined thickness of Bk is 15 to 66 cm (6 to 26 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck--56 to 76 cm (22 to 30 inches); very pale brown (10YR 8/2) sandy loam, light yellowish brown (10YR 6/4), moist; massive; very friable, slightly hard, slightly sticky, slightly plastic; few very fine roots; few very fine tubular pores; violent effervescence; strongly alkaline, pH 8.5; abrupt wavy boundary. (10 to 69 cm (4 to 27 inches) thick)" diff --git a/inst/extdata/OSD/Q/QUARTERBACK.json b/inst/extdata/OSD/Q/QUARTERBACK.json index d40c3e7c29..d3b6869def 100644 --- a/inst/extdata/OSD/Q/QUARTERBACK.json +++ b/inst/extdata/OSD/Q/QUARTERBACK.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--30 to 43 centimeters (12 to 17 inches); brown (10YR 5/3) coarse sandy loam, very dark grayish brown (10YR 3/2) moist; massive; hard, loose, nonsticky and nonplastic; many very fine and few fine roots; few very fine and fine continuous random irregularly shaped pores; 10 percent pebbles; slight effervescence, calcium carbonate disseminated; moderately alkaline (pH 8.0); abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--43 to 53 centimeters (17 to 21 inches); light yellowish brown (10YR 6/4) very fine sandy loam, brown (10YR 4/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine roots; common very fine continuous random irregularly shaped pores; slight effervescence, calcium carbonate disseminated; moderately alkaline (pH 8.0); clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C3--53 to 132 centimeters (21 to 52 inches); brown (10YR 5/3) fine sandy loam, very dark grayish brown (10YR 3/2) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine roots; common very fine continuous random irregularly shaped pores; strong effervescence, calcium carbonate disseminated; moderately alkaline (pH 8.2); clear wavy boundary. (13 to 89 centimeters (5 to 35 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--132 to 152 centimeters (52 to 60 inches); brown (10YR 5/3) fine sandy loam, dark brown (10YR 3/3) moist; massive; soft, very friable, nonsticky and nonplastic; common very fine roots; common very fine continuous random irregularly shaped pores; strong effervescence, calcium carbonate disseminated; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/Q/QUEENCREEK.json b/inst/extdata/OSD/Q/QUEENCREEK.json index e308d4ac43..4a06dabd9c 100644 --- a/inst/extdata/OSD/Q/QUEENCREEK.json +++ b/inst/extdata/OSD/Q/QUEENCREEK.json @@ -89,7 +89,7 @@ "cf_class": "extremely gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--0 to 7 inches; brown (10YR 5/3) extremely gravelly sandy loam, brown (10YR 4/3) moist; single grain; loose, nonsticky and nonplastic; many very fine and fine roots; many fine interstitial pores; 60 percent gravel and 5 percent cobble; slight effervescence; slightly alkaline (pH 7.6); abrupt wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--7 to 17 inches; brown (10YR 5/3) very gravelly sand, brown (10YR 4/3) moist; single grain; loose, nonsticky and nonplastic; common fine, medium, and coarse roots; many fine interstitial pores; 37 percent gravel; slight effervescence; slightly alkaline (pH 7.8); abrupt wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--17 to 60 inches; brown (10YR 5/3) stratified very gravelly coarse sand with thin strata of gravelly fine sand and gravelly coarse sand, brown (10YR 4/3) moist; single grain; loose, nonsticky and nonplastic; common fine and coarse roots; many fine interstitial pores; 46 percent gravel; slight effervescence; slightly alkaline (pH 7.8). (Combined thickness of the C horizons is 50 to 80 inches)" diff --git a/inst/extdata/OSD/R/RABER.json b/inst/extdata/OSD/R/RABER.json index f8ff40117b..d96c193b0b 100644 --- a/inst/extdata/OSD/R/RABER.json +++ b/inst/extdata/OSD/R/RABER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--13 to 20 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate medium and fine subangular blocky structure; very hard, firm, slightly sticky and slightly plastic; common fine roots; patchy film on faces of peds; common medium and coarse accumulations of carbonate; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--20 to 32 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; moderate medium and fine subangular blocky structure; very hard, firm, sticky and slightly plastic; few fine roots; many medium and coarse accumulations of carbonate; violent effervescence; moderately alkaline; clear wavy boundary. (8 to 25 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--32 to 44 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct mottles of yellowish red (5YR 4/8) and dark gray (5Y 4/1); weak medium subangular blocky structure; very hard, firm, slightly sticky and slightly plastic; few fine roots; few fine accumulations of carbonate; slight effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--44 to 60 inches; light brownish gray (2.5Y 6/2) and light gray (5Y 6/1) clay loam, dark grayish brown (2.5Y 4/2) and dark gray (5Y 4/1) moist; massive; hard, firm, slightly sticky and plastic; few fine roots; common fine iron stains; few fine accumulations of carbonate; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RAD.json b/inst/extdata/OSD/R/RAD.json index edd7158346..d12b4cd048 100644 --- a/inst/extdata/OSD/R/RAD.json +++ b/inst/extdata/OSD/R/RAD.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bqk--51 to 86 cm; light gray (10YR 7/2) very fine sandy loam, brown (10YR 4/3) moist; massive; hard, friable, nonsticky and nonplastic; common very fine and few fine roots; many very fine and few fine tubular pores; 50 percent extremely hard, firm and brittle cylindrical durinodes; few thin silica films line pores and bridge sand grains; slightly effervescent in occasional spots in the durinodes; noneffervescent matrix; strongly alkaline (pH 8.8); clear smooth boundary. (0 to 38 cm thick)" diff --git a/inst/extdata/OSD/R/RADIUM.json b/inst/extdata/OSD/R/RADIUM.json index 26c0096fb5..547b02e6af 100644 --- a/inst/extdata/OSD/R/RADIUM.json +++ b/inst/extdata/OSD/R/RADIUM.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw2--19 to 33 inches; dark grayish brown (10YR 4/2) sand; single grain; loose; 8 percent gravel; slightly alkaline; slight effervescence; abrupt smooth boundary. (Combined Bw horizons 0 to 19 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--33 to 43 inches; dark grayish brown (10YR 4/2) very gravelly coarse sand; few fine faint grayish brown (10YR 5/2) redoximorphic depletions and few fine prominent olive yellow (2.5Y 6/6) redoximorphic concentrations; single grain; loose; 50 percent gravel; moderately alkaline; strong effervescence; abrupt smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--43 to 62 inches; light brownish gray (10YR 6/2) sand; few fine and medium prominent olive yellow (2.5Y 6/6) redoximorphic concentrations; single grain; loose; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--62 to 74 inches; dark grayish brown (10YR 4/2) coarse sand; few fine faint grayish brown (10YR 5/2) redoximorphic depletions and few fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; single grain; loose; 3 percent gravel; moderately alkaline; slight effervescence; abrupt smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--74 to 80 inches; light brownish gray (10YR 6/2) sand; few fine prominent yellowish brown (10YR 5/6) and common fine and medium prominent olive yellow (2.5Y6/6) redoximorphic concentrations; single grain; loose; moderately alkaline; slight effervescence." diff --git a/inst/extdata/OSD/R/RAGLAN.json b/inst/extdata/OSD/R/RAGLAN.json index 3a494e6519..ae27208b5c 100644 --- a/inst/extdata/OSD/R/RAGLAN.json +++ b/inst/extdata/OSD/R/RAGLAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bqk--36 to 89 cm; light gray (2.5Y 7/2) silt loam, grayish brown (2.5Y 5/2) moist; massive; slightly hard and very hard, friable and firm, slightly sticky and slightly plastic; common very fine, and few fine roots; few very fine tubular, few very fine and fine interstitial pores; 70 percent hard durinodes; carbonates are disseminated; violently effervescence; strongly alkaline (pH 9.0); clear smooth boundary. (30 to 64 cm thick)" diff --git a/inst/extdata/OSD/R/RAINDANCE.json b/inst/extdata/OSD/R/RAINDANCE.json index 938ec31276..9dfe1c71ff 100644 --- a/inst/extdata/OSD/R/RAINDANCE.json +++ b/inst/extdata/OSD/R/RAINDANCE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 15 cm; gray (10YR 5/1) loam, very dark gray (10YR 3/1) moist; moderate fine subangular blocky structure; soft, very friable, moderately sticky and moderately plastic; many fine and very fine roots throughout; common very fine tubular and interstitial pores; slight effervescence; moderately alkaline (pH 8.4); clear smooth boundary. (10 to 25 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--15 to 33 cm; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium subangular blocky structure; soft, very friable, moderately sticky and moderately plastic; many fine and very fine roots throughout; common very fine interstitial and tubular pores; slight effervescence; moderately alkaline (pH 8.4); clear wavy boundary. (10 to 25 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--33 to 46 cm; pale olive (5Y6/3) sandy clay loam, olive (5Y 5/3) moist; massive; hard, friable, moderately sticky and moderately plastic; common fine and very fine roots throughout; common very fine interstitial and tubular pores; slight effervescence; moderately alkaline (pH 8.4); clear wavy boundary. (10 to 25 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ck--46 to 66 cm; pale olive (5Y 6/3) sandy clay loam, olive (5Y 5/3) moist; massive; hard, friable, moderately sticky and moderately plastic; common fine and very fine roots throughout; common very fine interstitial and tubular pores; 25 percent medium soft carbonate masses; violent effervescence; moderately alkaline (pH 8.4); clear wavy boundary. (13 to 38 cm thick)" diff --git a/inst/extdata/OSD/R/RALOCK.json b/inst/extdata/OSD/R/RALOCK.json index 9c33ed33cd..cfb30a4210 100644 --- a/inst/extdata/OSD/R/RALOCK.json +++ b/inst/extdata/OSD/R/RALOCK.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btk1--27 to 36 inches; yellowish brown (10YR 5/4) gravelly loam, brown to dark brown (10YR 4/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 distinct clay films lining root channels and pores; few fine discontinuous carbonate coatings lining root channels and pores; 20 percent pebbles; slight effervescence; moderately alkaline (pH 8.0); abrupt wavy boundary. (6 to 9 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Btk2--36 to 49 inches; pale brown (10YR 6/3) gravelly loam, brown (10YR 5/3) moist; weak fine subangular blocky structure parting to weak medium subangular blocky; soft, very friable, slightly sticky and slightly plastic; common distinct clay films in root channels and pores; common very fine discontinuous carbonate coatings in root channels and pores; many fine rounded soft masses of lime; 20 percent pebbles; violent effervescence; strongly alkaline (pH 8.6); clear wavy boundary. (8 to 13 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Btk3--49 to 60 inches; brown (10YR 5/3) gravelly loam, brown (10YR 4/3) moist; moderate medium subangular blocky structure parting to moderate fine subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; many very fine tubular pores; many discontinuous light gray (10YR 7/2) lime coatings throughout; few faint clay films lining root channels and pores and on faces of peds; 30 percent pebbles; slight effervescence; moderately alkaline (pH 8.2 ); clear wavy boundary. (7 to 12 inches thick)" diff --git a/inst/extdata/OSD/R/RALPH.json b/inst/extdata/OSD/R/RALPH.json index afa5c22915..59bd2dce30 100644 --- a/inst/extdata/OSD/R/RALPH.json +++ b/inst/extdata/OSD/R/RALPH.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--17 to 27 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; moderate medium and coarse prismatic structure parting to moderate medium and coarse blocky; hard, firm, slightly sticky and slightly plastic; common fine roots; patchy films on faces of peds; many medium accumulations of carbonate; violent effervescence; slightly alkaline; clear wavy boundary. (0 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--27 to 34 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; weak medium and coarse subangular blocky structure; slightly hard, friable; few fine roots; many medium accumulations of carbonate; violent effervescence; slightly alkaline; clear wavy boundary. (5 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cr1--34 to 51 inches; gray (5Y 6/1 and 5/1) soft shale, olive gray (5Y 4/2) and very dark gray (5Y 3/1) moist; many medium prominent mottles of yellowish red (5YR 4/6) moist; bedded; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr2--51 to 60 inches; pale olive (5Y 6/3) soft sandstone, olive (5Y 5/3) moist; common fine prominent mottles of strong brown (7.5YR 5/6) moist; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/RALTON.json b/inst/extdata/OSD/R/RALTON.json index c027ffad60..b3053185e1 100644 --- a/inst/extdata/OSD/R/RALTON.json +++ b/inst/extdata/OSD/R/RALTON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1--0 to 15 centimeters (0 to 6 inches); grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine granular structure; soft, very friable; violent effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--15 to 36 centimeters (6 to 14 inches); dark grayish brown (10YR 4/2) loam, very dark grayish brown (10YR 3/2) moist; moderate fine subangular blocky structure; soft, very friable; violent effervescence; slightly alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--36 to 61 centimeters (14 to 24 inches); grayish brown (10YR 5/2) and light brownish gray (10YR 6/2); stratified very fine sandy loam and loam, brown (10YR 4/3), brown (10YR 5/3) moist; weak fine granular structure; soft, very friable; violent effervescence; moderately alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--61 to 86 centimeters (24 to 34 inches); light brownish gray (10YR6/2), light gray (10YR 7/2) very fine sandy loam, brown (10YR 5/3), pale brown (10YR 6/3) moist; massive; soft, very friable; violent effervescence; moderately alkaline; abrupt smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--86 to 130 centimeters (34 to 51 inches); Stratified, dark grayish brown (10YR 4/2), grayish brown (10YR 5/2), light brownish gray (10YR 6/2) and light gray (10YR 7/2) loam, black (10YR 2/1), very dark brown (10YR 2/2), very dark grayish brown (10YR 3/2), dark grayish brown (10YR 4/2) moist; moderately course prismatic structure parting to weak fine granular; soft, very friable; violent effervescence; moderately alkaline; abrupt smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C4--130 to 180 centimeters (51 to 71 inches); Stratified, light gray (2.5Y 7/1) and light gray (10YR 7/2) very fine sandy loam, grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) moist; massive; soft, very friable; violent effervescence; slightly alkaline; abrupt smooth boundary." diff --git a/inst/extdata/OSD/R/RAMIRES.json b/inst/extdata/OSD/R/RAMIRES.json index 1292fcd758..a97ef0aaee 100644 --- a/inst/extdata/OSD/R/RAMIRES.json +++ b/inst/extdata/OSD/R/RAMIRES.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "but effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--56 to 66 cm; pale brown (10YR 6/3) gravelly sandy clay, brown (10YR 4/3) moist; massive; hard, friable, moderately sticky and moderately plastic; few very fine and fine roots; many very fine tubular and interstitial pores; 30 percent gravel; noneffervescent matrix but effervescent in a few medium and coarse soft masses of carbonate; slightly alkaline (pH 7.8); gradual wavy boundary. (0 to 20 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--66 to 86 cm; very pale brown (10YR 8/2) sandy loam, very pale brown (10YR 7/3) moist with many coarse distinct brown (10YR 5/3) and brown (10YR 4/3) mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; few very fine tubular pores; slightly effervescent matrix and strongly effervescent in medium soft seams of carbonate; moderately alkaline (pH 8.2); gradual wavy boundary. (0 to 40 cm thick)" diff --git a/inst/extdata/OSD/R/RANSLO.json b/inst/extdata/OSD/R/RANSLO.json index c4d7d0b795..a2eb90359b 100644 --- a/inst/extdata/OSD/R/RANSLO.json +++ b/inst/extdata/OSD/R/RANSLO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btnkz1--14 to 26 inches; very dark gray (10YR 3/1) silty clay loam, gray (10YR 5/1) dry; weak coarse prismatic structure parting to moderate medium blocky; very hard, firm, sticky and plastic; shiny films on faces of peds; few fine accumulations of salt; few fine accumulations of calcium carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btnkz2--26 to 35 inches; dark gray (10YR 4/1) silty clay, gray (10YR 6/1) dry; common medium prominent strong brown (7.5YR 5/6) mottles; weak coarse prismatic structure parting to moderate fine blocky; very hard, very firm, very sticky and very plastic; few fine accumulations of salt; few fine accumulations of calcium carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of Btnkz horizon is 0 to 30 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--35 to 42 inches; grayish brown (2.5Y 5/2) clay loam, light gray (2.5Y 7/2) and light brownish gray (2.5Y 6/2) dry; weak medium subangular blocky structure; very hard, firm, sticky and plastic; many fine and medium accumulations of salt; many fine and medium accumulations of calcium carbonate; violent effervescence; strongly alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--42 to 60 inches; grayish brown (2.5Y 5/2) clay loam, light gray (2.5Y 7/2) dry; massive; hard, firm, sticky and plastic; few to common fine and medium accumulations of salt; few to common fine and medium accumulations of calcium carbonate; violent effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/R/RAPHO.json b/inst/extdata/OSD/R/RAPHO.json index f0b1da53b6..97d36562d6 100644 --- a/inst/extdata/OSD/R/RAPHO.json +++ b/inst/extdata/OSD/R/RAPHO.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "very violently effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Cl--10 to 28 cm; pink (7.5YR 7/3) gravelly fine sandy loam, light brown (7.5YR 6/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine pores; 25 percent gravel; very violently effervescent; moderately alkaline (pH 8.2); clear wavy boundary. (15 to 30 cm thick)" diff --git a/inst/extdata/OSD/R/RAPIDCREEK.json b/inst/extdata/OSD/R/RAPIDCREEK.json index 80bd34f137..9cf1292efe 100644 --- a/inst/extdata/OSD/R/RAPIDCREEK.json +++ b/inst/extdata/OSD/R/RAPIDCREEK.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 4 cm; very dark grayish brown (10YR 3/2) gravelly loam, dark grayish brown (10YR 4/2) dry; weak medium and moderate fine granular structure; soft, very friable, slightly sticky; many very fine, common fine and medium roots; about 15 percent subrounded limestone gravel and subangular channers; slight effervescence; slightly alkaline; abrupt smooth boundary. (2 to 15 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--4 to 20 cm; about 80 percent stratified dark grayish brown (10YR 4/2) very gravelly loam, light brownish gray (10YR 6/2) dry, and 20 percent grayish brown (10YR 5/2) fine sandy loam, light brownish gray (10YR 6/2) dry; weak medium platy structure; slightly hard, friable, moderately sticky and moderately plastic; many very fine, common fine and medium roots; about 40 percent subangular and subrounded gravel, 2 percent subrounded cobble; strong effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--20 to 38 cm; about 80 percent brown (10YR 4/3), pale brown (10YR 6/3) dry, and 20 percent dark brown (10YR 3/3), brown (10YR 5/3) dry very gravelly fine sandy loam; massive; slightly hard, friable, slightly sticky and slightly plastic; many very fine, common fine and medium roots; about 43 percent subangular and subrounded gravel and 2 percent subrounded cobbles; strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the C horizon is 25 to 51 cm)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C3--38 to 53 cm; dark grayish brown (10YR 4/2) very gravelly loamy coarse sand, light brownish gray (10YR 6/2) dry; massive; soft, very friable, nonsticky and nonplastic; common very fine and finea and few medium roots; about 50 percent subangular and subrounded gravel; violent effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C4--53 to 157 cm; brown (10YR 4/3) extremely cobbly loamy coarse sand, pale brown (10YR 6/3) dry; single grain; loose; common very fine and few fine and medium roots; about 70 percent mixed sedimentary fragments, of which 35 percent are rounded cobbles, 30 percent subrounded and rounded gravel,and 5 percent rounded stones; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "3C5--157 to 173 cm; 60 percent dark grayish brown (10YR 4/2) gravelly fine sandy loam, grayish brown (10YR 5/2) dry, and 40 percent very dark grayish brown (10YR 3/2) gravelly very fine sandy loam, dark grayish brown (10YR 4/2) dry; massive; soft, very friable; few very fine and fine roots; 30 percent mixed sedimentary fragments, of which 20 percent are subrounded gravel and 10 percent rounded cobble; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 20 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C4'--173 to 200 cm (68 to 80 inches); brown (10YR 4/3) extremely cobbly loamy coarse sand, pale brown (10YR 6/3) dry; single grain; loose; few very fine roots; 60 percent mixed sedimentary fragments, of which 40 percent are rounded cobble and 20 percent rounded gravel; strong effervescence; moderately alkaline. (Combined thickness of the 2C horizon is 102 to 171 cm)" diff --git a/inst/extdata/OSD/R/RATONWEST.json b/inst/extdata/OSD/R/RATONWEST.json index d3155d1780..adf10fea26 100644 --- a/inst/extdata/OSD/R/RATONWEST.json +++ b/inst/extdata/OSD/R/RATONWEST.json @@ -112,7 +112,7 @@ "cf_class": "very cobbly", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 13 centimeters (0 to 5 inches); dark reddish brown (5YR 3/3) very cobbly loam, dark reddish brown (5YR 2.5/2) moist; moderate fine granular structure; soft, very friable, slightly sticky and slightly plastic; many very fine and common coarse roots; common very fine irregular pores; 10 percent gravel and 30 percent cobbles and 5 percent stones; no effervescence; neutral (pH 7.0); clear smooth boundary. (13 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "very cobbly", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt1--13 to 23 centimeters (6 to 9 inches); reddish brown (5YR 4/3) very cobbly clay, dark reddish brown (5YR 3/3) moist; moderate medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few very fine and fine and common coarse roots; common fine tubular pores; common distinct clay films on faces of peds and in pores; 10 percent gravel and 30 percent cobbles; no effervescence; neutral (pH 7.0); clear wavy boundary. (9 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "very cobbly", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bt2--23 to 33 centimeters (9 to 13inches); reddish brown (5YR 4/4) very cobbly clay, dark reddish brown (5YR 3/3) moist; moderate medium subangular blocky structure; very hard, very firm, moderately sticky and moderately plastic; few very fine and fine and common coarse roots; few fine tubular pores; common distinct clay films on faces of peds and in pores; 10 percent gravel and 45 percent cobbles; no effervescence; neutral (pH 7.0); abrupt smooth boundary. (10 centimeters thick)" diff --git a/inst/extdata/OSD/R/RAUVILLE.json b/inst/extdata/OSD/R/RAUVILLE.json index 1984362ce1..9ccba1a8f8 100644 --- a/inst/extdata/OSD/R/RAUVILLE.json +++ b/inst/extdata/OSD/R/RAUVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 7 inches; black (10YR 2/1) silty clay loam, gray (10YR 5/1 and dark gray (10YR 4/1) dry; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many fine roots; few fine and medium snail shell fragments; strong effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--7 to 27 inches; black (10YR 2/1) silty clay loam, dark gray (10YR 4/1) dry; moderate fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; common fine roots; few fine and medium snail shell fragments; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the A horizon is 24 to 42 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Cg--27 to 45 inches; dark gray (2.5Y 4/1) silty clay loam, light gray (10YR 6/1) dry; massive; hard, friable, sticky and plastic; few fine roots; common fine and medium snail shell fragments; strong effervescence; moderately alkaline; abrupt smooth boundary. (0 to 35 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--45 to 60 inches; light olive brown (2.5Y 5/3) stratified gravelly sand and clay loam, light yellowish brown (2.5Y 6/3) dry; common medium prominent yellowish brown (10YR 5/8) and common medium distinct greenish gray (5G 6/1) mottles; massive; very hard, firm; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RAVINE.json b/inst/extdata/OSD/R/RAVINE.json index ddfb468e84..f74efa41e0 100644 --- a/inst/extdata/OSD/R/RAVINE.json +++ b/inst/extdata/OSD/R/RAVINE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 3 inches; brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; moderate fine granular structure; very friable, soft, slightly sticky and slightly plastic; many fine and medium roots throughout; strong effervescence (11 percent calcium carbonate equivalent); slightly alkaline (pH 7.8); abrupt smooth boundary. (3 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--3 to 14 inches; yellowish brown (10YR 5/4) silty clay, dark yellowish brown (10YR 4/4) moist; moderate medium subangular blocky structure; very firm, very hard, moderately sticky and moderately plastic; many fine and medium roots throughout; 30 percent continuous distinct clay films on faces of peds; 3 percent medium distinct irregular carbonate masses; violent effervescence (11 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk2--14 to 21 inches; light yellowish brown (2.5Y 6/3) silty clay, olive brown (2.5Y 4/4) moist; moderate medium prismatic parting to strong fine and medium subangular blocky structure; very firm, extremely hard, very sticky and very plastic; common fine and medium roots throughout; 40 percent continuous distinct clay films on faces of peds; 8 percent medium distinct irregular carbonate masses; 2 percent angular gravel; violent effervescence (19 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); clear smooth boundary. (Combined thickness of the Bt1 and Bt2 horizons is 12 to 25 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btk3--21 to 28 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; strong coarse prismatic parting to strong fine and medium subangular blocky structure; very firm, extremely hard, very sticky and very plastic; few very fine roots throughout; 45 percent continuous distinct clay films on faces of peds; 10 percent medium and coarse distinct irregular carbonate masses; 2 percent angular gravel and 10 percent flat weakly cemented 2 to 75 millimeter shale fragments; violent effervescence (12 percent calcium carbonate equivalent); moderately alkaline (pH 8.2); abrupt smooth boundary. (5 to 10 inches thick)" diff --git a/inst/extdata/OSD/R/RAZOR.json b/inst/extdata/OSD/R/RAZOR.json index 0be6ebfc23..3dcba2d9df 100644 --- a/inst/extdata/OSD/R/RAZOR.json +++ b/inst/extdata/OSD/R/RAZOR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--6 to 13 inches; light yellowish brown (2.5Y 6/4) silty clay, light olive brown (2.5Y 5/3) moist; moderate medium prismatic structure parting to moderate medium angular blocky; hard, firm; many roots penetrating peds, few faint clay films on faces of peds; strong effervescence; moderately alkaline (pH 8.0); clear wavy boundary. (7 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCk--13 to 23 inches; pale olive (5Y 6/3) silty clay, olive (5Y 5/3) moist; weak medium prismatic structure parting to weak medium subangular blocky; hard, firm; fewer roots and channels than horizon above; few faint clay films on faces of peds; gypsum concretions are common, medium, and faint; strong effervescence; moderately alkaline (pH 7.9); gradual boundary. (6 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--23 to 31 inches; light yellowish brown (2.5Y 6/3) silty clay, light olive brown (2.5Y 5/3) moist; very weak coarse prismatic structure; hard, firm; few roots and channels; slight effervescence in spots; moderately alkaline (pH 8.0) gradual boundary. (5 to 9 inches thick)" diff --git a/inst/extdata/OSD/R/REAKOR.json b/inst/extdata/OSD/R/REAKOR.json index c7e2d1e8a9..8a2179ccea 100644 --- a/inst/extdata/OSD/R/REAKOR.json +++ b/inst/extdata/OSD/R/REAKOR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 2 inches; brown (10YR 5/3) loam, brown (10YR 4/3) moist; moderate thin platy and fine granular structure; soft, very friable, nonsticky, slightly plastic; many fine and very fine roots; common very fine pores; moderately effervescent; moderately alkaline; clear smooth boundary. (0 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A2--2 to 7 inches; light brown (7.5YR 6/4) loam, brown (7.5YR 4/4) moist; moderate fine subangular blocky and granular structure; slightly hard, very friable, slightly sticky, slightly plastic; many fine and very fine roots; common fine, very fine and few medium pores; few worm casts; moderately effervescent; moderately alkaline; clear smooth boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/R/REDBIRD.json b/inst/extdata/OSD/R/REDBIRD.json index 9566c3a94b..4d13c072ae 100644 --- a/inst/extdata/OSD/R/REDBIRD.json +++ b/inst/extdata/OSD/R/REDBIRD.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--20 to 24 inches; grayish brown (10YR 5/2) extremely cobbly silty clay loam, very dark grayish brown (10YR 3/2) moist; weak coarse subangular blocky structure; slightly hard, friable; 75 percent by volume of fragments of rock; strong effervescence; slightly alkaline; gradual smooth boundary. (2 to 6 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--24 to 60 inches; pale brown (10YR 6/3) extremely cobbly loam, brown (10YR 4/3) moist; massive; slightly hard, friable; 80 percent by volume of fragments of rock; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/REDIG.json b/inst/extdata/OSD/R/REDIG.json index b7a302d643..0c1dc94684 100644 --- a/inst/extdata/OSD/R/REDIG.json +++ b/inst/extdata/OSD/R/REDIG.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 3 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; weak fine granular structure; slightly hard, friable, slightly sticky; many fine roots; about 10 percent by volume of rock fragments; slight effervescence; neutral; clear smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--3 to 7 inches; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky; many fine roots; about 12 percent by volume of rock fragments; strong effervescence; slightly alkaline; clear wavy boundary. (2 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cy1--7 to 18 inches; white (10YR 8/1) loam, pale brown (10YR 6/3) moist; massive; hard, friable, slightly sticky; common roots; about 10 percent by volume of rock fragments; many gypsum crystals; rock fragments are coated with carbonates; strong effervescence; slightly alkaline; gradual wavy boundary. (6 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cy2--18 to 30 inches; white (10YR 8/1) gravelly loam, light brownish gray (2.5Y 6/2) moist; massive; hard, friable, slightly sticky; few roots; about 20 percent by volume of rock fragments; many gypsum crystals; rock fragments are coated with carbonates; strong effervescence; slightly alkaline; clear wavy boundary. (10 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cy3--30 to 45 inches; light brownish gray (2.5Y 6/2) gravelly loam, light olive brown (2.5Y 5/3) moist; massive; slightly hard, friable, slightly sticky; about 30 percent by volume of rock fragments; many gypsum crystals; rock fragments are coated with carbonates; violent effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--45 to 60 inches; light brownish gray (2.5Y 6/2) and light gray (2.5Y 7/2) gravelly clay loam, grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) moist; many fine yellowish brown (10YR 5/6) redoximorphic concentrations; massive; soft, friable, slightly sticky; about 40 percent by volume of rock fragments; common gypsum crystals; rock fragments are coated with carbonates; violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/REDMORE.json b/inst/extdata/OSD/R/REDMORE.json index 5f78beec56..2485ea50a7 100644 --- a/inst/extdata/OSD/R/REDMORE.json +++ b/inst/extdata/OSD/R/REDMORE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkn--19 to 28 inches; yellowish brown (10YR 5/4) silty clay loam, dark yellowish brown (10YR 3/4) moist; moderate medium prismatic structure parting to moderate medium angular blocky; hard, friable, sticky and plastic; few fine and very fine roots; common very fine tubular pores; common faint and distinct discontinuous clay films on faces of peds; slightly effervescent from disseminated lime, strongly effervescent in common fine seams (3 percent calcium carbonate equivalent); exchangeable sodium percentage of 13; strongly alkaline (pH 8.6); clear wavy boundary. (2 to 12 inches thick)" diff --git a/inst/extdata/OSD/R/REDSTOE.json b/inst/extdata/OSD/R/REDSTOE.json index bf58b13051..4c0738d3ea 100644 --- a/inst/extdata/OSD/R/REDSTOE.json +++ b/inst/extdata/OSD/R/REDSTOE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 4 inches; very dark grayish brown (10YR 3/2) loam, black (10YR 2/1) crushing to very dark brown (10YR 2/2) moist; moderate fine granular structure; soft, very friable; strong effervescence; 32 percent calcium carbonate equivalent; slightly alkaline; clear wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ak--4 to 9 inches; grayish brown (10YR 5/2) loam, dark brown (10YR 3/3) moist; weak fine subangular blocky structure; soft, very friable; few fine accumulations of carbonate; strong effervescence; 43 percent calcium carbonate equivalent; slightly alkaline; clear wavy boundary. (Combined A horizon ranges from 7 to 10 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--9 to 15 inches; pale brown (10YR 6/3) silt loam, brown (10YR 4/3) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, very friable; few dark brown (10YR 3/3) organic stains on the vertical faces of the peds in the upper 2 or 3 inches; few fragments of soft siltstone; few fine accumulations of carbonate; strong effervescence; 52 percent calcium carbonate equivalent; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--15 to 23 inches; very pale brown (10YR 7/4) silt loam, yellowish brown (10YR 5/4) moist; weak medium subangular blocky structure; slightly hard, very friable; few fragments of soft siltstone; few fine accumulations of carbonate; violent effervescence; 70 percent calcium carbonate equivalent; slightly alkaline; gradual wavy boundary. (Combined Bk horizons is 0 to 24 thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "By1--23 to 28 inches; very pale brown (10YR 7/4) and light yellowish brown (10YR 6/4) silt loam, yellowish brown (10YR 5/4) and dark yellowish brown (10YR 4/4) moist; weak coarse and medium subangular blocky structure; slightly hard, very friable; 6 percent by volume fragments of soft siltstone; few fine threads and common medium nests of gypsum; strong effervescence; 31 percent calcium carbonate equivalent; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "By2--28 to 32 inches; very pale brown (10YR 7/4) silt loam, yellowish brown (10YR 5/4) moist; thick platy structure; slightly hard, very friable; 12 percent by volume fragments of soft siltstone; many threads and nests of gypsum, strong effervescence; 70 percent calcium carbonate equivalent; slightly alkaline; gradual smooth boundary. (Combined By horizons is 0 to 15 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--32 to 44 inches; very pale brown (10YR 8/4) siltstone, brownish yellow (10YR 6/6) moist; many nests and seams of gypsum between rock fracture planes; 68 percent calcium carbonate equivalent; strong effervescence; neutral." diff --git a/inst/extdata/OSD/R/REE.json b/inst/extdata/OSD/R/REE.json index 38ff6a6d41..64ef813946 100644 --- a/inst/extdata/OSD/R/REE.json +++ b/inst/extdata/OSD/R/REE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--18 to 25 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few fine accumulations of carbonate; slight effervescence; moderately alkaline; clear smooth boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--25 to 46 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak coarse subangular structure; slightly hard, friable, slightly sticky and slightly plastic; common fine soft accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (10 to 24 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--46 to 60 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; massive; soft, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/REEDER.json b/inst/extdata/OSD/R/REEDER.json index 350241cb4c..7170cce7ac 100644 --- a/inst/extdata/OSD/R/REEDER.json +++ b/inst/extdata/OSD/R/REEDER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--17 to 32 inches; light brownish gray (2.5Y 6/3) loam, dark grayish brown (2.5Y 4/3) moist; weak coarse and medium prismatic and moderate medium subangular blocky structure; friable; few roots; many fine pores; common masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--32 to 36 inches; light yellowish brown (2.5Y 6/4) loam, light olive brown (2.5Y 5/4) moist; weak medium subangular blocky structure; friable; few fine roots; many fine threads of carbonates, strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 0 to 28 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--36 to 60 inches; pale yellow (5Y 7/3), soft sandstone and siltstone, olive (5Y 5/3) moist; few masses of carbonates; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/REGAL.json b/inst/extdata/OSD/R/REGAL.json index ee60064311..89f6a83703 100644 --- a/inst/extdata/OSD/R/REGAL.json +++ b/inst/extdata/OSD/R/REGAL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 10 inches; black (N 2/0) loam, very dark gray (10YR 3/1) dry; weak medium subangular blocky structure parting to weak fine granular; friable; many roots; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--10 to 14 inches; very dark gray (10YR 3/1) loam, dark grayish brown (10YR 4/2) dry; weak fine subangular blocky structure; friable; few roots; slight effervescence; slightly alkaline; clear wavy boundary. (Combined thickness of A horizon is 10 to 20 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bg--14 to 18 inches; grayish brown (2.5Y 5/2) sandy clay loam; common medium distinct olive brown (2.5Y 4/4) mottles; weak medium subangular blocky structure; friable; slight effervescence; slightly alkaline; abrupt smooth boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Cg1--18 to 27 inches; olive gray (5Y 5/2) gravelly loamy sand; few fine distinct light olive brown (2.5Y 5/4) mottles; single grain; loose; 25 percent gravel; slight effervescence; slightly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--27 to 60 inches; olive gray (5Y 5/2) gravelly coarse sand with thin strata of sand; single grain; loose; 20 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/REGAN.json b/inst/extdata/OSD/R/REGAN.json index 67cb88bc5e..36b1efe7a2 100644 --- a/inst/extdata/OSD/R/REGAN.json +++ b/inst/extdata/OSD/R/REGAN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--0 to 4 inches; very dark gray (2.5Y 3/1) silty clay loam, dark gray (2.5Y 4/1) dry; moderate fine granular structure; hard, friable, slightly sticky and slightly plastic; many roots; slight effervescence; moderately alkaline; clear wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A2--4 to 9 inches; very dark gray (5Y 3/1) silty clay loam, gray (5Y 5/1) dry; strong fine and very fine subangular blocky structure parting to strong fine granular; hard, friable, sticky and slightly plastic; common roots; strong effervescence; moderately alkaline; clear very wavy boundary. (Combined A horizons 4 to 14 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg1--9 to 16 inches; gray (5Y 5/1) silty clay loam, light gray (5Y 6/1) dry; moderate medium granular structure; very hard, friable, sticky and slightly plastic; common roots; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg2--16 to 28 inches; dark gray (5Y 4/1) silty clay loam, gray (5Y 5/1) dry; massive; extremely hard, firm; few roots; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Bkg and BCk horizons 8 to 40 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Cg1--28 to 54 inches; olive gray (5Y 4/2) clay loam, gray (5Y 5/1) dry; massive; extremely hard, friable; few roots, few pores; few salt crystals; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg2--54 to 60 inches; olive gray (5Y 4/2) sandy clay loam, gray (5Y 5/1) dry; few fine distinct dark yellowish brown (10YR 4/4) redoximorphic concentrations; massive; stratified with clay loam and sandy loam layers; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/REINACH.json b/inst/extdata/OSD/R/REINACH.json index ac67fa01ab..e04624e7d6 100644 --- a/inst/extdata/OSD/R/REINACH.json +++ b/inst/extdata/OSD/R/REINACH.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--36 to 76 cm (14 to 30 in); reddish brown (2.5YR 5/3) silt loam, dark reddish brown (2.5YR 3/3) moist; weak fine and medium granular structure; slightly hard, very friable; many fine roots; many fine pores; many wormcasts; few dark colored krotovinas; slight effervescent; slightly alkaline; gradual smooth boundary. (Combined thickness of the A horizon is 13 to 76 cm [5 to 30 in])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Bwk--76 to 127 cm (30 to 50 in); red (2.5YR 5/6) silt loam, red (2.5YR 4/6) moist; weak fine and medium granular structure; slightly hard, very friable; many fine roots; many fine pores; many wormcasts, few dark colored krotovinas; few soft masses and threads of calcium carbonate beginning at 35 inches; calcareous; strong effervescent; moderately alkaline; gradual smooth boundary. (Thickness of the Bw horizon is 15 to 102 cm [6 to 40 in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Ck--127 to 203 cm (50 to 80 in); red (2.5YR 5/6) very fine sandy loam, red (2.5YR 4/6) moist; massive; slightly hard, very friable; many fine roots and pores; few wormcasts; few soft masses and films of calcium carbonate; few fine concretions of calcium carbonate; calcareous; strong effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/R/REINER.json b/inst/extdata/OSD/R/REINER.json index 13c4b48ea0..2300d46c4a 100644 --- a/inst/extdata/OSD/R/REINER.json +++ b/inst/extdata/OSD/R/REINER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--17 to 21 inches; brown (10YR 5/3) clay loam; common medium distinct dark grayish brown (10YR 4/2) redox depletions and few fine prominent yellowish brown (10YR 5/4) redox concentrations; weak coarse subangular blocky structure parting to moderate very fine subangular blocky; friable; common very fine roots; about 2 percent gravel; slight effervescence; moderately alkaline; gradual smooth boundary. (0 to 6 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--21 to 29 inches; grayish brown (2.5Y 5/2) clay loam; common fine distinct light olive brown (2.5Y 5/4) and few fine distinct dark grayish brown (2.5Y 4/2) redox concentrations; weak medium subangular blocky structure parting to weak thin platy; few fine irregularly shaped masses of carbonates; friable; few very fine and fine roots; about 2 percent gravel; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--29 to 35 inches; light olive brown (2.5Y 5/4) loam; few fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations and many medium distinct grayish brown (2.5Y 5/2) redoximorphic concentrations and coatings on faces of peds; weak coarse prismatic structure parting to weak medium platy; friable; fine irregular filaments and threads of carbonates; few fine roots; about 2 percent gravel; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined Bk horizons 0 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--35 to 53 inches; light olive brown (2.5Y 5/4) loam; few fine prominent yellowish brown (10YR 5/6) redox concentrations and many medium prominent gray (5Y 5/1) redoximorphic depletions and coatings on faces of plates; massive; friable; hard when dry; about 5 percent gravel; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--53 to 70 inches; grayish brown (2.5Y 5/2) loam; few fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; friable; about 3 percent gravel and 2 percent cobbles; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--70 to 80 inches; grayish brown (2.5Y 5/2) and light olive brown (2.5Y5/3) loam; common medium prominent light olive brown (2.5Y 5/6) and few fine prominent dark yellowish brown (10YR 4/6) and many coarse distinct light olive brown (2.5Y 5/4) redoximorphic concentrations; massive; friable; about 3 percent gravel and 2 percent cobbles with 1 percent weathered granite fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RELIANCE.json b/inst/extdata/OSD/R/RELIANCE.json index 7b5fc3fb24..07c7f0f3b4 100644 --- a/inst/extdata/OSD/R/RELIANCE.json +++ b/inst/extdata/OSD/R/RELIANCE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--56 to 66 centimeters (22 to 26 inches); brown (10YR 5/3) silty clay loam, brown (10YR 4/3) moist; weak coarse prismatic structure parting to moderate medium and fine blocky and subangular blocky; hard, firm, slightly sticky and slightly plastic; clay films on faces of peds; few fine soft accumulations of carbonate; slight effervescence; slightly alkaline; clear wavy boundary. [0 to 15 centimeters (0 to 6 inches thick).]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--66 to 84 centimeters (26 to 33 inches); brown (10YR 5/3) silty clay loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to moderate medium blocky; hard, friable, slightly sticky and slightly plastic; common fine soft accumulation of carbonates; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--84 to 104 centimeters (33 to 41 inches); pale brown (10YR 6/3) silty clay loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to weak subangular blocky; hard, friable; common fine soft accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. [Combined thickness of the Bk horizon is 18 to 51 centimeters (7 to 20 inches thick).]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--104 to 152 centimeters (41 to 60 inches); brown (10YR 5/3) silty clay loam, dark grayish brown (10YR 4/2) moist; massive; hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RENNER.json b/inst/extdata/OSD/R/RENNER.json index b3d6e8295d..6443e00222 100644 --- a/inst/extdata/OSD/R/RENNER.json +++ b/inst/extdata/OSD/R/RENNER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--46 to 60 inches; light olive brown (2.5Y 5/3) clay loam, olive brown (2.5Y 4/3) moist; few fine distinct strong brown (7.5YR 5/6) and very dark brown (10YR 2/2) redox accumulations; weak very coarse and coarse subangular blocky structure; hard, firm, sticky and plastic; common fine and medium accumulations of calcium carbonate; few fine dark concretions (iron and manganese oxides); slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/RENSHAW.json b/inst/extdata/OSD/R/RENSHAW.json index 452dd3d6d4..7470aaca57 100644 --- a/inst/extdata/OSD/R/RENSHAW.json +++ b/inst/extdata/OSD/R/RENSHAW.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "2Bk--15 to 20 inches; light brownish gray (2.5Y 6/2) very gravelly loamy sand, dark grayish brown (2.5Y 4/2) moist; single grain; loose; about 50 percent gravel; common carbonates coat the undersides of rock fragments; about 20 percent calcium carbonate equivalent; strong effervescence; slightly alkaline; diffuse wavy boundary. (0 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--20 to 80 inches; light yellowish brown (2.5Y 6/3) very gravelly sand, olive brown (2.5Y 4/3) moist; single grain; loose; about 50 percent gravel; few carbonate coats on undersides of rock fragments; about 10 percent calcium carbonate equivalent; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/RENTILL.json b/inst/extdata/OSD/R/RENTILL.json index d0480dfef5..bcc5e3ee11 100644 --- a/inst/extdata/OSD/R/RENTILL.json +++ b/inst/extdata/OSD/R/RENTILL.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bk1--38 to 53 centimeters (15 to 21 inches); brown (10YR 4/3) gravelly loamy sand, brown (10YR 5/3) dry; single grain; loose; 26 percent by volume gravel; underside of gravel coated with carbonate; strong effervescence; moderately alkaline; abrupt wavy boundary. [0 to 38 centimeters (0 to 15 inches) thick]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "3Bk2--53 to 94 centimeters (21 to 37 inches); olive brown (2.5Y 4/4) clay loam, light brownish gray (2.5Y 6/2) dry; many brownish yellow (10YR 6/8), strong brown (7.5YR 5/8) redoximophic concentrations, and many light gray (2.5Y 7/2) redoximophic depletions; strong medium prismatic structure parting to moderate medium blocky and subangular blocky; hard, firm, sticky and plastic; many medium and coarse accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. [0 to 38 centimeters (0 to 16 inches) thick]" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--94 to 152 centimeters (21 to 60 inches); light olive brown (2.5Y 5/4) clay loam; light yellowish brown (2.5Y 6/4) dry; common fine and medium prominent brownish yellow (10YR 6/8), strong brown (7.5YR 5/8) redoximophic concentrations, and common fine and medium prominent light gray (2.5Y 7/2) redoximophic depletions; massive; hard, firm, sticky and plastic; few fine and medium accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/REVA.json b/inst/extdata/OSD/R/REVA.json index 8a2356dd7f..c9a8fe2433 100644 --- a/inst/extdata/OSD/R/REVA.json +++ b/inst/extdata/OSD/R/REVA.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 3 inches; light brownish gray (2.5Y 6/2) gravelly very fine sandy loam, very dark grayish brown (2.5Y 3/2) moist; weak fine granular structure; soft, very friable; many fine and medium roots; 20 percent pebbles of hard sandstone; slight effervescence; slightly alkaline; abrupt wavy boundary. (1 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--3 to 8 inches; light brownish gray (2.5Y 6/2) very gravelly very fine sandy loam; olive brown (2.5Y 4/3) moist; massive; soft, very friable; many fine and medium roots; 35 percent pebbles of sandstone; strong effervescence; slightly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "irregular", "narrative": "C2--8 to 16 inches; white (2.5Y 8/2) very gravelly very fine sandy loam, olive (5Y 5/4) moist; massive; soft, very friable; common fine and medium roots between the rock fragments; 45 percent pebbles and cobbles of sandstone; rock fragments coated with carbonate, interiors lack carbonates; strong effervescence in the matrix; slightly alkaline; diffuse irregular boundary. (Combined thickness of the C horizons is 9 to 16 inches.)" diff --git a/inst/extdata/OSD/R/RHAME.json b/inst/extdata/OSD/R/RHAME.json index 0cd381d5b7..13e21a0c1f 100644 --- a/inst/extdata/OSD/R/RHAME.json +++ b/inst/extdata/OSD/R/RHAME.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--26 to 34 inches; pale yellow (2.5Y 7/3) fine sandy loam, light olive brown (2.5Y 5/4) moist; weak coarse and medium subangular blocky structure; hard, very friable; common very fine roots; few fine specks of carbonates; slight effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--34 to 60 inches; pale yellow (5Y 7/3) very soft bedded sandstone, olive (5Y 5/3) moist; massive; slightly hard and hard in strata and brittle when dry, very friable; strong effervescence." diff --git a/inst/extdata/OSD/R/RHINEBECK.json b/inst/extdata/OSD/R/RHINEBECK.json index 3257ad663c..ee9603354b 100644 --- a/inst/extdata/OSD/R/RHINEBECK.json +++ b/inst/extdata/OSD/R/RHINEBECK.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C2 -- 45 to 72 inches, brown (10YR 4/3) varved silt and clay, and very fine sand; moderately alkaline, moderately effervescent." diff --git a/inst/extdata/OSD/R/RHOADES.json b/inst/extdata/OSD/R/RHOADES.json index d6268c653e..3106ec0bd7 100644 --- a/inst/extdata/OSD/R/RHOADES.json +++ b/inst/extdata/OSD/R/RHOADES.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btknyz--8 to 14 inches; grayish brown (2.5Y 5/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; moderate coarse prismatic structure parting to moderate fine angular blocky; very hard, very firm, very sticky and very plastic; common fine roots on faces of peds; common fine pores; common faint clay films on faces of peds; common fine flecks of gypsum and other salt crystals; few fine masses of carbonates; strong effervescence; strongly alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyz--14 to 24 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; very hard, very firm, very sticky and very plastic; common fine roots; common fine pores; few faint clay films on faces of peds; common fine flecks of gypsum and other salt crystals; few fine masses of carbonates; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bky1--24 to 40 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; very hard, very firm, very sticky and very plastic; few fine roots, common fine pores; common fine gypsum accumulations; common fine masses of carbonates; strong effervescence, strongly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bky2--40 to 46 inches; light yellowish brown (2.5Y 6/4) silty clay, light olive brown (2.5Y 5/4) moist; few fine prominent strong brown (7.5YR 5/6) redoximorphic concentrations; weak coarse subangular structure; hard, firm, very sticky and very plastic; few fine pores; few fine gypsum accumulations; common fine masses of carbonates; strong effervescence, strongly alkaline; clear wavy boundary. (Combined Bky horizons 0 to 50 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--46 to 60 inches; pale yellow (2.5Y 7/4) stratified silt loam and silty clay loam, light yellowish brown (2.5Y 6/4) moist; few fine prominent strong brown (7.5YR 5/6) redoximorphic concentrations; massive; hard, firm sticky and plastic; few fine masses of carbonates; violent effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/R/RICHFIELD.json b/inst/extdata/OSD/R/RICHFIELD.json index cab6df5cba..06e84a8860 100644 --- a/inst/extdata/OSD/R/RICHFIELD.json +++ b/inst/extdata/OSD/R/RICHFIELD.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BCk1--41 to 51 centimeters (16 to 20 inches); grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; hard, firm; few soft accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCk2--51 to 76 centimeters (20 to 30 inches); light gray (10YR 7/2) silty clay loam, grayish brown (10YR 5/2) moist; weak granular structure; slightly hard, friable; few soft accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. Combined thickness for BCk horizons ranges from 46 to 127 centimeters (18 to 50 inches)." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--76 to 152 centimeters (30 to 60 inches); very pale brown (10YR 7/3) silt loam, brown (10YR 5/3) moist; massive; slightly hard, friable; porous; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/R/RIDGEVIEW.json b/inst/extdata/OSD/R/RIDGEVIEW.json index 9f1c207fa4..9c7f090ecc 100644 --- a/inst/extdata/OSD/R/RIDGEVIEW.json +++ b/inst/extdata/OSD/R/RIDGEVIEW.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Bt1--10 to 17 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to strong coarse and medium blocky; extremely hard, extremely firm, very sticky and plastic; few roots; cracks 1/2 inch wide; few tongues of dark grayish brown (2.5YR 4/2) material; pressure faces on peds; slight effervescence; neutral; clear irregular boundary. (6 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bt2--17 to 25 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak very coarse prismatic structure parting to strong coarse blocky; extremely hard, extremely firm, very sticky and plastic; few roots; cracks 1/4 inch wide; few tongues of dark grayish brown (10YR 4/2) material; pressure faces on peds; strong effervescence; slightly alkaline; gradual boundary. (8 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--25 to 34 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate coarse subangular blocky structure; very hard, very firm, very sticky and plastic; few fine and medium accumulations of carbonate; strong effervescence; slightly alkaline; gradual boundary. (5 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bky--34 to 44 inches; grayish brown (2.5Y 5/2) clay, very dark grayish brown (2.5Y 3/2) moist; massive; very hard, very firm, sticky and plastic; few medium accumulations of carbonate; few striations and nests of gypsum; strong effervescence; slightly alkaline; gradual boundary. (0 to 14 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--44 to 60 inches; grayish brown (2.5Y 5/2) clay, very dark grayish brown (2.5Y 3/2) moist; massive; hard, firm, sticky and plastic; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/RIDOTT.json b/inst/extdata/OSD/R/RIDOTT.json index fa29934e28..3986e456c4 100644 --- a/inst/extdata/OSD/R/RIDOTT.json +++ b/inst/extdata/OSD/R/RIDOTT.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--44 to 60 inches; mixed light olive brown (2.5Y 5/4) and greenish gray (5G 6/1) shale; extremely firm; streaks and spots of white (10YR 8/1) concretions (calcium carbonate); strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RIFLEPIT.json b/inst/extdata/OSD/R/RIFLEPIT.json index bd05d2a3eb..84a80eb376 100644 --- a/inst/extdata/OSD/R/RIFLEPIT.json +++ b/inst/extdata/OSD/R/RIFLEPIT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--76 to 112 cm; reddish brown (2.5YR 4/4) clay, reddish brown (2.5YR 5/4) dry; moderate medium and coarse subangular blocky structure; extremely hard, very firm, very sticky and very plastic; about 10 percent angular sandstone channers; few distinct clay films on all faces of peds and many distinct clay films lining soil pores; common coarse calcium carbonate coatings on the bottom of rock fragments; strong effervescence; slightly alkaline; clear smooth boundary. (0 to 65 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--112 to 152 cm; reddish brown (5YR 5/3) clay loam, light reddish brown (5YR 6/3) dry; massive; slightly hard, friable; slightly sticky and slightly plastic; about 15 percent subangular and subrounded gravel; strong effervescence; moderately alkaline. (0 to 70 cm thick)" diff --git a/inst/extdata/OSD/R/RILLOSO.json b/inst/extdata/OSD/R/RILLOSO.json index 583ccd30e2..f3b20ea553 100644 --- a/inst/extdata/OSD/R/RILLOSO.json +++ b/inst/extdata/OSD/R/RILLOSO.json @@ -227,7 +227,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--40 to 50 inches; pinkish gray (7.5YR 7/2) very gravelly sand, brown (7.5YR 5/2) moist; massive and single grain; soft and loose, very friable, nonsticky and nonplastic; few fine roots; 35 percent gravel; parts slightly effervescent and parts noneffervescent; moderately alkaline." diff --git a/inst/extdata/OSD/R/RIMLAP.json b/inst/extdata/OSD/R/RIMLAP.json index 99c424e25e..8e9c930741 100644 --- a/inst/extdata/OSD/R/RIMLAP.json +++ b/inst/extdata/OSD/R/RIMLAP.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "C1--45 to 55 inches; grayish brown (2.5Y 5/2) loam, light gray (2.5Y 7/2) dry; many fine and medium prominent yellowish brown (10YR 5/6) redox concentrations and common fine distinct gray (10YR 5/1) redox depletions; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots throughout; common very fine tubular pores; common fine masses of iron-manganese; slightly effervescent; strongly effervescent on ped faces; moderately alkaline; clear smooth boundary." diff --git a/inst/extdata/OSD/R/RITA.json b/inst/extdata/OSD/R/RITA.json index e87f1cc6d6..35b9ff9e9b 100644 --- a/inst/extdata/OSD/R/RITA.json +++ b/inst/extdata/OSD/R/RITA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--43 to 68 inches; dark greenish gray (5GY 4/1) loamy very fine sand; massive; slightly effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RITIDIAN.json b/inst/extdata/OSD/R/RITIDIAN.json index 7a6dabda41..aa0d0ba929 100644 --- a/inst/extdata/OSD/R/RITIDIAN.json +++ b/inst/extdata/OSD/R/RITIDIAN.json @@ -89,7 +89,7 @@ "cf_class": "extremely cobbly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 1 inch; dark reddish brown (5YR 3/3) extremely cobbly clay loam, dark reddish brown (5YR 3/4) dry; strong medium granular structure; hard, friable, slightly sticky and slightly plastic; many very fine and fine roots, common medium roots and few coarse roots; many very fine, fine and medium pores; about 30 percent gravel and 40 percent cobbles that are angular, porous coralline limestone fragments; sand grains and rock fragments are weakly effervescent; slightly alkaline (pH 7.6); abrupt smooth boundary. (0.5 to 2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "extremely cobbly", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "abrupt", "topography": "irregular", "narrative": "A2--1 to 4 inches; reddish brown (5YR 4/4) extremely cobbly clay loam, yellowish red (5YR 4/6) dry; weak very fine granular structure; soft, very friable slightly sticky and slightly plastic; many very fine and fine roots, common medium roots and few coarse roots; many very fine and few fine interstitial pores; about 30 percent gravel and 40 percent cobbles, all as angular porous coralline limestone fragments; many very fine nodules that crush to silty clay; weakly effervescent; moderately alkaline (pH 7.9); abrupt irregular boundary. (0 to 9 inches thick)" diff --git a/inst/extdata/OSD/R/RITOAZUL.json b/inst/extdata/OSD/R/RITOAZUL.json index 57e13539f4..d1b91bec22 100644 --- a/inst/extdata/OSD/R/RITOAZUL.json +++ b/inst/extdata/OSD/R/RITOAZUL.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slighltly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--36 to 60 inches; gray (2.5Y 5/1) thin platy soft to moderately cemented shale, dark gray (2.5Y 4/1) moist; massive with moderate medium platy and angular rock structure,; extremely hard, extremely firm, very sticky and very plastic; slighltly effervescent (2 percent calcium carbonate equivalent); slightly alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/R/RIVERWAY.json b/inst/extdata/OSD/R/RIVERWAY.json index d2de1587b6..881b7cb2be 100644 --- a/inst/extdata/OSD/R/RIVERWAY.json +++ b/inst/extdata/OSD/R/RIVERWAY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 43 centimeters (0.0 to 16.9 inches); light brown (7.5YR 6/3) crushed sandy clay loam, brown(7.5YR 4/3) crushed, moist; 53 percent sand; 24 percent silt; 23 percent clay; strong coarse cloddy structure; noncemented, nonsticky, nonplastic; moderate excavation difficulty; electrical conductivity of 1.6 mmhos/cm by ECe meter, 1:1 water; slight effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; clear smooth boundary. Lab sample # D7356. (15 to 30 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--43 to 102 centimeters (16.9 to 40.2 inches); light brown (7.5YR 6/3) crushed sandy clay loam, brown (7.5YR 4/3) crushed, moist; 55 percent sand; 21 percent silt; 24 percent clay; massive; noncemented, nonsticky, nonplastic; moderate excavation difficulty; electrical conductivity of 2.4mmhos/cm by ECe meter, 1:1 water; strong effervescence, by HCl, 1 normal; moderately alkaline, pH8.0, pH meter 1:1 water; abrupt smooth boundary. Lab sample # D7357." diff --git a/inst/extdata/OSD/R/ROCKCUT.json b/inst/extdata/OSD/R/ROCKCUT.json index 75288a23e2..19d35e1c98 100644 --- a/inst/extdata/OSD/R/ROCKCUT.json +++ b/inst/extdata/OSD/R/ROCKCUT.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--35 to 60 inches; light brownish gray (10YR 6/2), brown (7.5YR 4/4) and reddish brown (5YR 5/4) stratified silt, silt loam and silty clay; few fine distinct strong brown (7.5YR 5/6) and common fine prominent greenish gray (5GY 5/1) mottles; massive; firm; moderate effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROCKERVILLE.json b/inst/extdata/OSD/R/ROCKERVILLE.json index 375cd2db59..1fac28f9c2 100644 --- a/inst/extdata/OSD/R/ROCKERVILLE.json +++ b/inst/extdata/OSD/R/ROCKERVILLE.json @@ -112,7 +112,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--2 to 9 cm; dark gray (10YR 4/1) channery silt loam, very dark gray (10YR 3/1) moist; weak medium and moderate very fine and fine granular structure; soft, very friable, slightly sticky and slightly plastic; many very fine, common fine, and few medium roots; about 20 percent subangular limestone fragments; slight effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--9 to 18 cm; dark gray (10YR 4/1) channery silt loam, very dark gray (10YR 3/1) moist; weak fine and medium subangular blocky structure parting to moderate very fine and fine granular; soft, very friable, slightly sticky and moderately plastic; common very fine and fine and few medium roots; about 25 percent subangular limestone fragments; about 7 percent calcium carbonate equivalent; strong effervescence; slightly alkaline; clear smooth boundary. (Combined thickness of the A horizon is 2 to 23 cm)" @@ -158,7 +158,7 @@ "cf_class": "extremely flaggy", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ABk--18 to 37 cm; dark grayish brown (10YR 4/2) extremely flaggy silt loam, very dark grayish brown (10YR 3/2) moist; moderate fine and very fine granular structure; soft, very friable, slightly sticky and moderately plastic; common very fine, few fine roots; about 85 percent limestone fragments, of which 60 percent are subangular flagstones and 25 percent are subangular channers; calcium carbonate disseminated throughout; thin continuous calcium carbonate coatings on the bottom of rock fragments; about 16 percent calcium carbonate equivalent; violent effervescence; slightly alkaline; clear smooth boundary. (0 to 20 cm thick)" diff --git a/inst/extdata/OSD/R/ROCKSPRING.json b/inst/extdata/OSD/R/ROCKSPRING.json index a573a10759..31fd4145e1 100644 --- a/inst/extdata/OSD/R/ROCKSPRING.json +++ b/inst/extdata/OSD/R/ROCKSPRING.json @@ -204,7 +204,7 @@ "cf_class": "extremely cobbly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bk--71 to 91 cm; extremely cobbly clay loam, very pale brown (10YR 7/3) dry, brown (10YR 5/3) moist; strong medium angular blocky structure; hard, very firm, sticky and plastic; common fine and medium roots; common very fine and fine pores; 30 percent gravel and 50 percent cobbles; violently effervescent on faces of peds, strongly effervescent in interior of peds; coatings of soft carbonates on faces of peds; moderately alkaline (pH 8.2); abrupt smooth boundary" diff --git a/inst/extdata/OSD/R/ROCKWELL.json b/inst/extdata/OSD/R/ROCKWELL.json index 53c9c20ace..419fc3c410 100644 --- a/inst/extdata/OSD/R/ROCKWELL.json +++ b/inst/extdata/OSD/R/ROCKWELL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 9 inches; black (N 2/0) sandy clay loam; weak very fine subangular blocky structure; very friable; many roots; strong effervescence; slightly alkaline; clear smooth boundary. (7 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg--9 to 19 inches; dark gray (5Y 4/1) and gray (5Y 5/1) fine sandy loam; weak very fine granular structure; very friable; few roots; discontinuous very dark gray (10YR 3/1) layer in lower part; violent effervescence; slightly alkaline; clear wavy boundary. (6 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Cg1--19 to 27 inches; light olive gray (5Y 6/2) and pale olive (5Y 6/3) fine sand; common medium prominent yellowish brown (10YR 5/6), strong brown (7.5YR 5/8), and brown (7.5YR 4/4) redoximorphic concentrations; single grain; loose; few roots; few thin strata with up to 5 percent gravel; slight effervescence; slightly alkaline; clear smooth boundary. (0 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Cg2--27 to 60 inches; light olive gray (5Y 6/2) silt loam; many medium prominent yellowish brown (10YR 5/8) and reddish brown (5YR 4/4) redoximorphic concentrations; massive; friable; common layers of very fine sandy loam in upper part and few layers of loam in the lower part; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/ROETEX.json b/inst/extdata/OSD/R/ROETEX.json index cff1aed596..52370d9e91 100644 --- a/inst/extdata/OSD/R/ROETEX.json +++ b/inst/extdata/OSD/R/ROETEX.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCss1--53 to 61 inches; reddish brown (5YR 4/4) clay; some ped surfaces are gray (5YR 5/1); weak medium and coarse angular blocky structure; very firm, extremely hard, few fine roots; common intersecting slickensides; few fine concretions of calcium carbonate; strongly effervescence; moderately alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/R/ROGRUBE.json b/inst/extdata/OSD/R/ROGRUBE.json index ccd192c124..1592cf4268 100644 --- a/inst/extdata/OSD/R/ROGRUBE.json +++ b/inst/extdata/OSD/R/ROGRUBE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 3 inches; pale brown (10YR 6/3) loam, dark yellowish brown (10YR 4/4) moist; moderate medium platy structure; soft, very friable, slightly sticky and slightly plastic; strong effervescence, 10 percent calcium carbonate equivalent; strongly alkaline (pH 9.0); abrupt smooth boundary. (2 to 3 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--3 to 13 inches; light yellowish brown (10YR 6/4) clay loam, dark yellowish brown (10YR 4/4) moist; moderate medium and coarse subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; strong effervescence, 16 percent calcium carbonate equivalent; calcium carbonate disseminated; strongly alkaline (pH 9.0); clear smooth boundary. (0 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--13 to 20 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; weak coarse subangular blocky structure; hard, firm, slightly sticky and slightly plastic; violent effervescence, 35 percent calcium carbonate equivalent; strongly alkaline (pH 9.0); clear smooth boundary. (7 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--20 to 28 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; massive; hard, firm, slightly sticky and slightly plastic; violent effervescence; 16 percent calcium carbonate equivalent; strongly alkaline (pH 8.8); clear wavy boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bky--28 to 36 inches; light yellowish brown (10YR 6/4) sandy clay loam, yellowish brown (10YR 5/4) moist; massive; very hard, firm, slightly sticky and slightly plastic; strong effervescence, 14 percent calcium carbonate equivalent, 13 percent calcium sulfate; moderately alkaline (pH 8.4); clear wavy boundary. (7 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "By1--36 to 48 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; massive; very hard, very firm, slightly sticky and plastic; slight effervescence, 9 percent calcium carbonate equivalent, 15 percent calcium sulfate; moderately alkaline (pH 8.2); clear smooth boundary. (8 to 14 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "By2--48 to 60 inches; light yellowish brown (10YR 6/4) sandy clay loam, yellowish brown (10YR 5/6) moist; massive; hard, firm, slightly sticky slightly plastic; slight effervescence, 9 percent calcium carbonate equivalent, 10 percent calcium sulfate; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/R/ROLETTE.json b/inst/extdata/OSD/R/ROLETTE.json index c7d9fa55a3..bd176b71fd 100644 --- a/inst/extdata/OSD/R/ROLETTE.json +++ b/inst/extdata/OSD/R/ROLETTE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 60 inches; olive (5Y 4/3) silty clay, light olive gray (5Y 6/2) dry; many fine prominent strong brown (7.5YR 5/8) moist and fine faint olive (5Y 5/3) moist mottles; moderate medium angular blocky structure; extremely hard, very firm, very sticky and very plastic; few fine pores; soft shale particles in the lower part; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/ROLLA.json b/inst/extdata/OSD/R/ROLLA.json index 9bb3f27c3e..cc6506110e 100644 --- a/inst/extdata/OSD/R/ROLLA.json +++ b/inst/extdata/OSD/R/ROLLA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--21 to 34 inches; dark grayish brown (2.5Y 4/2) clay, light brownish gray (2.5Y 6/2) dry; strong medium angular blocky structure; extremely hard, extremely firm, sticky and very plastic; few fine roots; many distinct clay films on faces of peds and lining pores; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bt horizons 12 to 25 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--34 to 62 inches; dark grayish brown (2.5Y 4/2) clay, light brownish gray (2.5Y 6/2) and grayish brown (2.5Y 5/2) dry; moderate medium angular blocky structure; very hard, firm, sticky and plastic; few fine roots; common medium masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROLLINGER.json b/inst/extdata/OSD/R/ROLLINGER.json index 128b9f908e..6282c81e29 100644 --- a/inst/extdata/OSD/R/ROLLINGER.json +++ b/inst/extdata/OSD/R/ROLLINGER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "3Bk--31 to 40 inches; brown (10YR 5/3) silt loam, dark brown (10YR 3/3) moist; moderate medium prismatic structure parting to fine subangular blocky; slightly hard, friable, slightly sticky and nonplastic; few very fine, fine and medium roots; many fine and medium interstitial and tubular pores; common distinct lime coats in root channels and pores; slight effervescence; slightly alkaline (pH 8.0); abrupt wavy boundary. (8 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "4Btk--40 to 48 inches; brown (10YR 4/3) silty clay loam, dark brown (10YR 3/3) moist; moderate fine and medium prismatic structure; hard, friable, sticky and plastic; few fine and medium roots; many fine and medium irregular and common fine and medium tubular pores; few medium soft masses of light gray (10YR 7/2) carbonate; many distinct dark brown (7.5YR 4/3) clay films lining pores and on faces of peds; slight effervescence; moderately alkaline (pH 8.4); clear wavy boundary. (0 to 12 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "5Bk1--48 to 51 inches; pale brown (10YR 6/3) silt loam, dark brown (10YR 3/3) moist; weak fine and medium prismatic structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; many fine and medium irregular and few fine tubular pores; moderate effervescence, strongly alkaline (pH 8.6); clear wavy boundary. (0 to 6 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "6Bk2--51 to 60 inches; brown (10YR 5/3) sandy loam, dark brown (10YR 3/3) moist; moderate medium and coarse prismatic structure; hard, firm, slightly sticky and nonplastic; few fine roots; many fine and medium irregular, common fine and medium vesicular and few fine tubular pores; moderate effervescence; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/R/ROMAR_RANCH.json b/inst/extdata/OSD/R/ROMAR_RANCH.json index 7e1dcb49c1..eafbd63a81 100644 --- a/inst/extdata/OSD/R/ROMAR_RANCH.json +++ b/inst/extdata/OSD/R/ROMAR_RANCH.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk--97 to 135 centimeters (38 to 53 inches); gray (2.5Y 6/1) gravelly sandy clay loam; moderate medium angular blocky structure; soft, friable, nonsticky, nonplastic; nonfluid; 15 percent distinct discontinuous dark gray (2.5Y 4/1) clay films on all faces of peds; 10 percent fine prominent spherical light yellowish brown (10YR 6/4) masses of oxidized iron accumulations throughout; 5 percent fine distinct irregular moderately coherent cemented carbonate masses throughout; 25 percent subangular limestone gravel; strong effervescence; moderately alkaline; abrupt wavy boundary. [25 to 76 centimeters (10 to 30 inches) thick]" diff --git a/inst/extdata/OSD/R/RONDELL.json b/inst/extdata/OSD/R/RONDELL.json index 790b3a2b2c..16deb1c2b9 100644 --- a/inst/extdata/OSD/R/RONDELL.json +++ b/inst/extdata/OSD/R/RONDELL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; dark gray (10YR 4/1) silt loam, black (10YR 2/1) moist; weak fine subangular blocky structure parting to weak fine granular; slightly hard, friable; strong effervescence (3 percent calcium carbonate); neutral; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--7 to 12 inches; dark gray (10YR 4/1) silt loam, very dark gray (10YR 3/1) moist; weak medium and fine subangular blocky structure; slightly hard, friable; few fine accumulations of carbonate; strong effervescence (4 percent calcium carbonate); neutral, clear wavy boundary. (Combined A horizons are 7 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--12 to 24 inches; pale yellow (2.5Y 8/2) silt loam, light brownish gray (2.5Y 6/2) moist; weak coarse subangular blocky structure parting to weak medium and fine subangular blocky; slightly hard, friable; violent effervescence (39 percent calcium carbonate); moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--24 to 35 inches; pale yellow (2.5Y 8/2) silt loam, light yellowish brown (2.5Y 6/4) moist; weak coarse subangular blocky structure parting to weak medium and fine subangular blocky; slightly hard, friable; violent effervescence (36 percent calcium carbonate); moderately alkaline; gradual wavy boundary. (Combined Bk horizons are 15 to 35 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--35 to 45 inches; light gray (2.5Y 7/2) silt loam, light olive brown (2.5Y 5/4) moist; common medium and fine distinct gray (10YR 6/1) and yellowish brown (10YR 5/6) moist redoximorphic concentrations; massive; slightly hard, very friable; strong effervescence (23 percent calcium carbonate); slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--45 to 60 inches; light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; many coarse and medium distinct gray (10YR 6/1) moist redoximorphic depletions and common medium and fine distinct yellowish brown (10YR 5/6) moist redoximorphic concentrations; massive; slightly hard, very friable; laminations 1 to 2 mm thick; strong effervescence (13 percent calcium carbonate); slightly alkaline." diff --git a/inst/extdata/OSD/R/RONSON.json b/inst/extdata/OSD/R/RONSON.json index 44ec9bf309..c51edbb267 100644 --- a/inst/extdata/OSD/R/RONSON.json +++ b/inst/extdata/OSD/R/RONSON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 4 inches; dark gray (10YR 4/1) fine sandy loam, very dark brown (10YR 2/2) moist; weak medium granular structure; soft, very friable; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--4 to 12 inches; grayish brown (10YR 5/2) fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure parting to weak fine granular; soft, very friable; strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of A horizons is 7 to 20 inches.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--12 to 15 inches; light gray (10YR 7/2) fine sandy loam, grayish brown (10YR 5/2) moist; weak medium subangular blocky structure; soft, very friable; violent effervescence; moderately alkaline; clear wavy boundary. (3 to 7 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--15 to 35 inches; very pale brown (10YR 8/3) sandy loam, pale brown (10YR 6/3) moist; massive; soft, very friable, violent effervescence; moderately alkaline; abrupt wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--35 to 60 inches; very pale brown (10YR 8/3) weakly cemented sandstone, pale brown (10YR 6/3) moist; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROOKS.json b/inst/extdata/OSD/R/ROOKS.json index 6862f4f1db..074180c539 100644 --- a/inst/extdata/OSD/R/ROOKS.json +++ b/inst/extdata/OSD/R/ROOKS.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3C--130 to 152 cm (51 to 60 inches); grayish brown (2.5Y 5/2) and light olive brown (2.5Y 5/4) silty clay loam; massive; firm; many faint gray (2.5Y 5/1) pressure faces on vertical cleavage planes; 3 percent gravel; strong effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROOT.json b/inst/extdata/OSD/R/ROOT.json index cdee174ae4..4b7b651b10 100644 --- a/inst/extdata/OSD/R/ROOT.json +++ b/inst/extdata/OSD/R/ROOT.json @@ -135,7 +135,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC3--34 to 60 inches; very dark gray (10YR 3/1) channery loam; common medium distinct dark brown (7.5YR 3/2) mottles; massive; very friable; about 30 percent channers and about 20 percent gravel, mostly limestone; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/ROSEBUD.json b/inst/extdata/OSD/R/ROSEBUD.json index 50c0ff80ee..f87748a5ac 100644 --- a/inst/extdata/OSD/R/ROSEBUD.json +++ b/inst/extdata/OSD/R/ROSEBUD.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--28 to 38 centimeters (11 to 15 inches); very pale brown (10YR 7/3) clay loam, pale brown (10YR 6/3) moist; weak medium subangular blocky structure; slightly hard, friable; few fine pebbles; secondary calcium carbonates occuring as soft masses of lime; violent effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--38 to 48 centimeters (15 to 19 inches); very pale brown (10YR 7/3) sandy clay loam, brown (10YR 5/3) moist; weak coarse subangular blocky structure; soft, very friable; secondary calcium carbonates occurring as soft masses of lime, violent effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the Bk horizon is 41 centimeters (16 inches) thick)." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C--48 to 76 centimeters (19 to 30 inches); very pale brown (10YR 7/3) sandy loam, light yellowish brown (10YR 6/4) moist; massive; soft, very friable; many pebbles and hard caliche fragments; disseminated lime and lime coatings on pebbles; violent effervescence; moderately alkaline; abrupt wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--76 to 203 centimeters (30 to 80 inches); reddish yellow (7.5YR 6/6) weakly cemented sandstone; few small pebbles; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROSEGLEN.json b/inst/extdata/OSD/R/ROSEGLEN.json index aae324b109..f418f3eff3 100644 --- a/inst/extdata/OSD/R/ROSEGLEN.json +++ b/inst/extdata/OSD/R/ROSEGLEN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "Bk--24 to 34 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; weak coarse prismatic structure parting to weak medium angular blocky; hard, firm, sticky and plastic; many masses of carbonates; violent effervescence; moderately alkaline; gradual irregular boundary. (8 to 25 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "C1--34 to 53 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; weak coarse prismatic structure; hard, firm, slightly sticky and slightly plastic; strong effervescence; slightly alkaline; abrupt irregular boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--53 to 60 inches; laminated very pale brown (10YR 8/4) silt loam, dark grayish brown (10YR 4/2) moist; few large distinct light gray (10YR 7/1) and few medium prominent reddish yellow (7.5YR 6/8) mottles; massive; slightly hard, firm, slightly sticky and slightly plastic; many fine pores; few masses of carbonates; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/ROSEWOOD.json b/inst/extdata/OSD/R/ROSEWOOD.json index 47572e3915..a2a8a9c646 100644 --- a/inst/extdata/OSD/R/ROSEWOOD.json +++ b/inst/extdata/OSD/R/ROSEWOOD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 20 cm; black (10YR 2/1) fine sandy loam, dark gray (10YR 4/1) dry; weak fine and medium subangular blocky structure; very friable; few very fine roots; about 2 percent gravel; strong effervescence; slightly alkaline; abrupt smooth boundary. (18 to 41 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkg1--20 to 28 cm; gray (5Y 5/1) fine sandy loam; common medium prominent light brownish gray (2.5Y 6/2) and common medium distinct dark grayish brown (2.5Y 4/2) redoximorphic concentrations; weak medium subangular blocky structure; very friable; few very fine roots; about 2 percent gravel; violent effervescence; moderately alkaline; abrupt wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg2--28 to 46 cm; grayish brown (2.5Y 5/2) fine sandy loam; few medium distinct light yellowish brown (2.5Y 6/4) redoximorphic concentrations; weak fine and medium subangular blocky structure; very friable; about 2 percent gravel; violent effervescence; moderately alkaline; clear smooth boundary. (Combined Bk horizons 15 to 36 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--46 to 58 cm; light brownish gray (2.5Y 6/2) fine sand; many medium prominent olive yellow (2.5Y 6/6) redoximorphic concentrations; single grain; loose; about 5 percent gravel; strong effervescence; slightly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg2--58 to 119 cm; light gray (2.5Y 7/2) fine sand; common coarse prominent olive yellow (2.5Y 6/6) and yellowish brown (10YR 5/6) redoximorphic concentrations; single grain; loose; about 2 percent gravel; strong effervescence; slightly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--119 to 200 cm; light brownish gray (2.5Y 6/2) fine sand; common medium prominent yellowish brown (10YR 5/6) and many coarse prominent olive yellow (2.5Y 6/6) redoximorphic concentrations; single grain; loose; about 5 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/R/ROSIE.json b/inst/extdata/OSD/R/ROSIE.json index 1c8b652373..30c8ddfb60 100644 --- a/inst/extdata/OSD/R/ROSIE.json +++ b/inst/extdata/OSD/R/ROSIE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "extremely effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Crk--28 to 72 inches, (70 to 183 cm); Fractured schist bedrock; extremely effervescent" diff --git a/inst/extdata/OSD/R/ROSSFIELD.json b/inst/extdata/OSD/R/ROSSFIELD.json index 7879e57d3c..7a782e3bab 100644 --- a/inst/extdata/OSD/R/ROSSFIELD.json +++ b/inst/extdata/OSD/R/ROSSFIELD.json @@ -204,7 +204,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--32 to 60 inches; olive yellow (2.5Y 6/6) channery fine sandy loam, soft limestone fragments comprise about 20 percent of volume; massive; friable; few roots; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROTHSAY.json b/inst/extdata/OSD/R/ROTHSAY.json index 98fbb2725c..77dfb3c536 100644 --- a/inst/extdata/OSD/R/ROTHSAY.json +++ b/inst/extdata/OSD/R/ROTHSAY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--22 to 30 inches; light olive brown (2.5Y 5/4) silt loam; weak fine subangular blocky structure; friable; few roots; few soft accumulations of carbonates: strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC--30 to 60 inches; light yellowish brown (2.5Y 6/4) silt loam; weak fine subangular blocky structure; friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROTURA.json b/inst/extdata/OSD/R/ROTURA.json index a332e9f3e1..9902da572e 100644 --- a/inst/extdata/OSD/R/ROTURA.json +++ b/inst/extdata/OSD/R/ROTURA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--28 to 39 inches; pink (7.5YR 8/4) sandy loam, slightly less clay than above, light brown (7.5YR 6/4) moist; contains 30 to 50 percent of 1/4 to 1/2 inch diameter reddish brown (5YR 5/4) sandy loam nodules, reddish brown (5YR 4/4) moist; very weak coarse subangular blocky structure; hard; very few roots; reddish brown nodules less hard than pink matrix; some reddish brown parts noneffervescent, most slightly effervescent; pink material strongly effervescent; moderately alkaline; clear wavy boundary. (3 to 12 inches thick)" @@ -411,7 +411,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--125 to 134 inches; gravel and sand; single grain; loose; most pebbles have very little or no calcium carbonate as coatings; slightly effervescent to noneffervescent; moderately alkaline." diff --git a/inst/extdata/OSD/R/ROXANA.json b/inst/extdata/OSD/R/ROXANA.json index 65c2233f9e..e722d2880c 100644 --- a/inst/extdata/OSD/R/ROXANA.json +++ b/inst/extdata/OSD/R/ROXANA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ab--47 to 52 inches; dark reddish brown (5YR 3/4) sandy clay loam; weak medium subangular blocky structure; friable; slight effervescence; mildly alkaline; abrupt smooth boundary. (0 to 8 inches thick)" diff --git a/inst/extdata/OSD/R/ROXBURY.json b/inst/extdata/OSD/R/ROXBURY.json index 311886e5dc..44bd322a0e 100644 --- a/inst/extdata/OSD/R/ROXBURY.json +++ b/inst/extdata/OSD/R/ROXBURY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A1--0 to 51 centimeters) (0 to 20 inches); dark grayish brown (10YR 4/2) silt loam, very dark brown (10YR 2/2) moist; weak fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; many worm casts; strong effervescence; slightly alkaline; gradual smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--51 to 78 centimeters (20 to 31 inches); grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate medium granular structure; slightly hard, friable, slightly sticky and slightly plastic; few worm casts; many fine pores; strong effervescence; slightly alkaline; gradual smooth boundary. (Combined thickness of the A horizon is 51 to 152 centimeters (20 to 60 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--78 to 132 centimeters (31 to 52 inches); light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; thinly and faintly stratified with darker colors of less than 1/2 unit lower value; massive; hard, friable, sticky and plastic; many pores; many films and fine threads of lime; strong effervescence; slightly alkaline; gradual smooth boundary. (25 to 76 centimeters (10 to 30 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--132 to 203 centimeters (52 to 80 inches); light gray (10YR 7/2) loam, grayish brown (10YR 5/2) moist; massive; hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RUELLA.json b/inst/extdata/OSD/R/RUELLA.json index af3364953b..c5e00ca525 100644 --- a/inst/extdata/OSD/R/RUELLA.json +++ b/inst/extdata/OSD/R/RUELLA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ak--0 to 23 cm (0 to 9 in); reddish brown (5YR 5/4) loam, reddish brown (5YR 4/4) moist; moderate medium and fine granular structure; soft, very friable; few small, calcium carbonate concretions on surface and throughout upper 6 inches; slight effervescence; slightly alkaline; clear smooth boundary. (Thickness of the A horizon is 10 to 38 cm [4 to 15 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--23 to 81 cm (9 to 32 in); yellowish red (5YR 5/6) loam, yellowish red (5YR 4/6) moist; moderate medium and fine subangular blocky; slightly hard, very friable; common fine threads of calcium carbonate and few small and medium calcium carbonate concretions comprising about 5 percent of the soil mass; strong effervescence; moderately alkaline; gradual smooth boundary. (Thickness of the Bk horizon is 38 to 89 cm [15 to 35 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--81 to 152 cm (32 to 60 in); yellowish red (5YR 5/6) loam, yellowish red (5YR 4/6) moist; massive but porous; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RUMLEY.json b/inst/extdata/OSD/R/RUMLEY.json index f4d46a3fc0..307b17cbb7 100644 --- a/inst/extdata/OSD/R/RUMLEY.json +++ b/inst/extdata/OSD/R/RUMLEY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "extremely effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk4--48 to 63 inches; reddish yellow (7.5YR 6/6) clay loam, strong brown (7.5YR 5/6) moist; weak fine subangular blocky structure; hard, friable; about 15 percent by volume of fine and medium strongly cemented calcium carbonate; about 15 percent by volume of soft masses of calcium carbonate; extremely effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/R/RUNGE.json b/inst/extdata/OSD/R/RUNGE.json index 8f00f9060a..d07943b5df 100644 --- a/inst/extdata/OSD/R/RUNGE.json +++ b/inst/extdata/OSD/R/RUNGE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--111 to 152 cm (44 to 60 in); yellowish red (5YR 5/6) very fine sandy loam, yellowish red (5YR 4/6), moist; moderate coarse prismatic structure parting to moderate medium and coarse subangular blocky; very friable, slightly hard; 8 percent faint reddish brown (5YR 4/4) clay films; 1 percent fine threadlike carbonate masses; 2 percent fine carbonate masses; 2 percent medium carbonate nodules; strong effervescence; moderately alkaline; gradual smooth boundary. Thickness is 30 to 53 cm (12 to 21 in)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--152 to 184 cm (60 to 72 in); light brown (7.5YR 6/3) fine sandy loam, brown (7.5YR 5/3), moist; moderate coarse prismatic structure parting to moderate medium and coarse subangular blocky; very friable, slightly hard; 1 percent fine carbonate nodules; 5 percent medium and coarse carbonate masses; strong effervescence; moderately alkaline; gradual smooth boundary. Combined thickness of the Bk horizons is 33 to 66 cm (13 to 26 in)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--184 to 203 cm (72 to 80 in); light brown (7.5YR 6/4) fine sandy loam, brown (7.5YR 5/4), moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; very friable, slightly hard; 1 percent fine carbonate nodules; 7 percent medium and coarse carbonate masses; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RUSCO.json b/inst/extdata/OSD/R/RUSCO.json index 88d9758500..9e0a0d6d60 100644 --- a/inst/extdata/OSD/R/RUSCO.json +++ b/inst/extdata/OSD/R/RUSCO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--61 to 91 centimeters (24 to 36 inches); light gray (2.5Y 7/2) silt loam, grayish brown (2.5Y 5/2) moist; common medium distinct strong brown (7.5YR 5/6 moist) iron masses in the matrix; weak medium subangular blocky structure; slightly hard, friable; slight effervescence; moderately alkaline; clear smooth boundary. (15 to 76 centimeters (6 to 30 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--91 to 152 centimeters (36 to 60 inches); light gray (2.5Y 7/2) silt loam, light brownish gray (2.5Y 6/2) moist; common medium distinct strong brown (7.5YR 5/6 moist) iron masses in the matrix; massive; few small masses of carbonates, slightly hard, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RUSHCREEK.json b/inst/extdata/OSD/R/RUSHCREEK.json index 1a00385586..b7c04d9d67 100644 --- a/inst/extdata/OSD/R/RUSHCREEK.json +++ b/inst/extdata/OSD/R/RUSHCREEK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 18 centimeters (0 to 7 inches); dark grayish brown (10YR 4/2)loam; very dark grayish brown (10YR 3/2) moist; weak, fine granular structure; slightly hard, very friable; slight effervescence, slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--18 to 28 centimeters (7 to 11 inches); dark gray (10YR 4/1) loam; very dark gray (10YR 3/1) moist; weak, medium granular structure; slightly hard, friable; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the A horizon is 18 to 41 centimeters (7 to 16 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw1--28 to 61 centimeters (11 to 24 inches); yellowish brown (10YR 5/4) loam; dark yellowish brown (10YR 4/4) moist; moderate, medium subangular blocky structure; hard, friable; sodium adsorption ratio 9; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--61 to 86 centimeters (24 to 34 inches); light yellowish brown (10YR 6/4) loam, yellowish brown (10YR 5/6) moist; weak, medium subangular blocky structure; hard, friable; sodium adsorption ratio 11; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of Bw horizon is 25 to 76 centimeters (10 to 30 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--86 to 107 centimeters (34 to 42 inches); very pale brown (10YR 7/4) sandy loam; yellowish brown (10YR 5/4) moist; common, fine, faint yellowish brown (10YR 5/6) iron masses in the matrix; weak medium subangular blocky structure; slightly hard, very friable; common thin strata of loam; sodium adsorption ratio 11; soft masses of calcium carbonates; strong effervescence, moderately alkaline; clear smooth boundary. (8 to 46 centimeters (3 to 18 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Cg1--107 to 142 centimeters (42 to 56 inches); light gray (10YR 7/2) sandy loam; light yellowish brown (10YR 6/4) moist; common fine prominent gray (10YR 5/1) iron depletions in the matrix; massive; soft, very friable; few, fine strata of sand; strong effervescence, slightly alkaline; abrupt smooth boundary." diff --git a/inst/extdata/OSD/R/RUSKLYN.json b/inst/extdata/OSD/R/RUSKLYN.json index 41489e4d2e..7f553b61b0 100644 --- a/inst/extdata/OSD/R/RUSKLYN.json +++ b/inst/extdata/OSD/R/RUSKLYN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 9 inches; very dark gray (10YR 3/1) silty clay loam, dark grayish brown (10YR 4/2) dry; moderate medium granular structure; slightly hard, friable, slightly sticky and plastic; common fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--9 to 19 inches; light olive brown (2.5Y 5/4) silty clay loam, light yellowish brown (2.5Y 6/4) dry; weak coarse prismatic structure parting to moderate medium subangular blocky; slightly hard, friable, slightly sticky and plastic; few fine roots; common fine accumulations of calcium carbonate; violent effervescence (about 29 percent calcium carbonate equivalent); moderately alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--19 to 28 inches; light olive brown (2.5Y 5/4) silty clay loam, light yellowish brown (2.5Y 6/4) dry; few fine prominent yellowish brown (10YR 5/6) mottles; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable, slightly sticky and plastic; few fine roots; few medium accumulations of calcium carbonate; violent effervescence (about 26 percent calcium carbonate equivalent); moderately alkaline; gradual wavy boundary. (Combined Bk horizon thickness is 8 to 30 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--28 to 53 inches; grayish brown (2.5Y 5/2) and light olive brown (2.5Y 5/4) silty clay loam, light yellowish brown (2.5Y 6/4) and light gray (2.5Y 7/2) dry; common fine prominent yellowish brown (10YR 5/6) mottles; massive; hard, friable, slightly sticky and plastic; strong effervescence; strongly alkaline; clear wavy boundary. (0 to 25 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--53 to 60 inches; grayish brown (2.5Y 5/2) and light olive brown (2.5Y 5/4) clay loam, light brownish gray (2.5Y 6/2) and pale yellow (2.5Y 7/4) dry; common medium prominent yellowish brown (10YR 5/6) mottles; massive; hard, firm, sticky and plastic; about 5 percent pebbles; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/R/RUSO.json b/inst/extdata/OSD/R/RUSO.json index d1b8953590..bbaf3d7ff6 100644 --- a/inst/extdata/OSD/R/RUSO.json +++ b/inst/extdata/OSD/R/RUSO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--21 to 26 inches; light brownish gray (10YR 6/2) coarse sandy loam, brown (10YR 5/3) moist; massive; loose, slightly sticky and nonplastic; few fine roots; about 5 percent gravel; few fine masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--26 to 60 inches; light gray (10YR 7/2) very gravelly sand, grayish brown (10YR 5/2) moist; single grain; loose, nonsticky and nonplastic; about 45 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/R/RYAN.json b/inst/extdata/OSD/R/RYAN.json index 268925dc8e..8d2422bc52 100644 --- a/inst/extdata/OSD/R/RYAN.json +++ b/inst/extdata/OSD/R/RYAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn2--4 to 8 inches; black (10YR 2/1) silty clay, dark gray (5Y 4/1) dry; moderate medium and coarse prismatic structure parting to strong fine angular blocky; very hard, firm, very sticky and very plastic; many fine roots; many faint clay films on faces of peds; slight effervescence; strongly alkaline; clear wavy boundary. (Combined Btn horizons 5 to 25 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bg1--8 to 22 inches; black (10YR 2/1) silty clay, dark gray (N 4/0) dry; very weak coarse prismatic structure parting to moderate fine subangular blocky; very hard, firm, very sticky and very plastic; common fine roots; few carbonate masses; common fine salt crystals; strong effervescence; strongly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bg2--22 to 36 inches; black (10YR 2/1) silty clay, dark gray (N 4/0) dry; weak medium prismatic structure parting to moderate medium subangular blocky; very hard, firm, very sticky and very plastic; common fine salt crystals; few carbonate masses; strong effervescence; strongly alkaline; gradual wavy boundary. (Combined Bg horizons 0 to 35 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--36 to 60 inches; very dark gray (5Y 3/1) silty clay, gray (N 5/0) dry; massive; very hard, firm, very sticky and very plastic; common fine gypsum crystals; few fine carbonate masses; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/R/RYEGATE.json b/inst/extdata/OSD/R/RYEGATE.json index 8a0aad2edf..14762e3997 100644 --- a/inst/extdata/OSD/R/RYEGATE.json +++ b/inst/extdata/OSD/R/RYEGATE.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bk--32 to 38 inches; very pale brown (10YR 7/3) gravelly loam, light yellowish brown (10YR 6/4) moist; massive; very hard, friable, slightly sticky and nonplastic; 30 percent gravel; 20 percent calcium carbonate equivalent; visible common soft masses and filaments; calcium carbonate coating on rocks; violent effervescence; moderately alkaline (pH 8.4); abrupt wavy boundary. (3 to 8 inches)" diff --git a/inst/extdata/OSD/R/RYUS.json b/inst/extdata/OSD/R/RYUS.json index 6fc7729acf..00155bf471 100644 --- a/inst/extdata/OSD/R/RYUS.json +++ b/inst/extdata/OSD/R/RYUS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 15 centimeters (0 to 6 inches); grayish brown (10YR 5/2) silty clay loam; very dark grayish brown (10YR 3/2) moist; weak medium granular structure; slightly hard, friable; slight effervescence; moderately alkaline; clear smooth boundary. (13 to 20 centimeters (5 to 8 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BA--15 to 33 centimeters (6 to 13 inches); grayish brown (10YR 5/2) silty clay loam; very dark grayish brown (10YR 3/2) moist; moderate fine subangular blocky structure; hard, friable; strong effervescence; moderately alkaline; gradual smooth boundary. (13 to 20 centimeters (5 to 8 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt--33 to 66 centimeters (13 to 26 inches); grayish brown (10YR 5/2) silty clay loam; brown (10YR 4/3) moist; moderate medium subangular blocky structure; very hard, firm; strong effervescence; moderately alkaline; gradual smooth boundary. (25 to 38 centimeters (10 to 15 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--66 to 91 centimeters (26 to 36 inches); brown (10YR 5/3) silty clay loam; brown (10YR 4/3) moist; weak medium subangular blocky structure; hard, firm; strong effervescence; moderately alkaline; clear smooth boundary. (15 to 36 centimeters (15 to 36 centimeters (6 to 14 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--91 to 152 centimeters (36 to 60 inches); pale brown (10YR 6/3) silty clay loam; brown (10YR 5/3) moist; massive; slightly hard, friable; segregated lime in thin seams; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SAEMO.json b/inst/extdata/OSD/S/SAEMO.json index 960910d2f1..9a9347146d 100644 --- a/inst/extdata/OSD/S/SAEMO.json +++ b/inst/extdata/OSD/S/SAEMO.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 7.2, "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--34 to 60 inches; strong brown (7.5YR 5/6) extremely cobbly coarse sand, strong brown (7.5YR 4/6) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine and fine roots; common very fine irregular pores; 35 percent cobble and 40 percent gravel; few thin calcium carbonate coatings on undersides of rock fragments; noneffervescent matrix with slight effervescence on calcium carbonate features; neutral (pH 7.2)." diff --git a/inst/extdata/OSD/S/SAGOLA.json b/inst/extdata/OSD/S/SAGOLA.json index 8356e38c5b..2e7646d1fd 100644 --- a/inst/extdata/OSD/S/SAGOLA.json +++ b/inst/extdata/OSD/S/SAGOLA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--56 to 80 inches; strong brown (7.5YR 5/6) sandy loam; massive; friable; few very fine and fine roots; about 2 percent gravel and 3 percent cobbles; few thin strata of fine sand and sand, slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/S/SAKAKAWEA.json b/inst/extdata/OSD/S/SAKAKAWEA.json index 852c9b9473..2e4a779716 100644 --- a/inst/extdata/OSD/S/SAKAKAWEA.json +++ b/inst/extdata/OSD/S/SAKAKAWEA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; few very fine roots; strong effervescence; mildly alkaline; abrupt smooth boundary. (4 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--6 to 14 inches; very pale brown (10YR 7/3) silt loam, brown (10YR 5/3) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and plastic; few very fine roots; many fine irregular soft masses of carbonates; violent effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--14 to 21 inches; light yellowish brown (2.5Y 6/4) silt loam, olive brown (2.5Y 4/4) moist; hard, friable, slightly sticky and plastic; few very fine roots; few fine irregular soft masses of carbonates; violent effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the Bk horizon is 10 to 23 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--21 to 29 inches; stratified light brownish gray (2.5Y 6/2) and light yellowish brown (2.5Y 6/4) silt loam, grayish brown (2.5Y 5/2) and olive brown (2.5Y 4/4) moist; few fine prominent strong brown (7.5YR 5/6) moist relict mottles; massive; slightly hard, friable, slightly sticky and plastic; few very fine roots; few fine filaments of carbonates; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--29 to 41 inches; stratified light brownish gray (2.5Y 6/2) and pale yellow (2.5Y 7/4) loam, grayish brown (2.5Y 5/2) and light olive brown (2.5Y 5/4) moist; few fine prominent strong brown (7.5YR 5/6) moist relict mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; disseminated carbonates throughout; strong effervescence; moderately alkaline; abrupt smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--41 to 60 inches; stratified light brownish gray (2.5Y 6/2) silty clay loam and pale yellow (2.5Y 7/4) loamy sand, grayish brown (2.5Y 5/2) and light yellowish brown (2.5Y 6/4) moist; few fine prominent strong brown (7.5YR 5/6) moist relict mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; disseminated carbonates throughout; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SALIDA.json b/inst/extdata/OSD/S/SALIDA.json index ad094af97b..49e244429e 100644 --- a/inst/extdata/OSD/S/SALIDA.json +++ b/inst/extdata/OSD/S/SALIDA.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--11 to 45 inches; variegated brown (10YR 5/3), yellowish brown (10YR 5/4, 5/6), and dark brown (10YR 4/3) very gravelly coarse sand; few penetrations of gravelly loamy coarse sand; single grain; loose; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/S/SALINAS.json b/inst/extdata/OSD/S/SALINAS.json index 362c21a94d..fb73e46845 100644 --- a/inst/extdata/OSD/S/SALINAS.json +++ b/inst/extdata/OSD/S/SALINAS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "C2--40 to 49 inches; grayish brown (2.5Y 5/2) very fine sandy loam, olive brown (2.5Y 4/3) moist; massive; soft, very firm, nonsticky and nonplastic; many very fine interstitial, few very fine and fine tubular pores; slightly effervescent, disseminated lime, few fine bodies strongly effervescent; moderately alkaline (pH 8.0); gradual smooth boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/S/SALMO.json b/inst/extdata/OSD/S/SALMO.json index 63ef114c98..7b460b3267 100644 --- a/inst/extdata/OSD/S/SALMO.json +++ b/inst/extdata/OSD/S/SALMO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Az--0 to 5 inches; black (10YR 2/1) silt loam, very dark gray (10YR 3/1) dry; weak fine granular structure; slightly hard, friable, slightly sticky; very few fine accumulations of salt; slight effervescence; moderately alkaline; clear wavy boundary. (3 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bz1--5 to 10 inches; black (10YR 2/1) silt loam, dark gray (10YR 4/1) dry; weak medium prismatic structure parting to weak medium and fine subangular blocky; hard, friable, slightly sticky; many fine segregations of salt; few fine accumulations of gypsum; strong effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bz2--10 to 24 inches; black (10YR 2/1) silt loam, dark gray (10YR 4/1) dry; weak medium prismatic structure parting to weak medium and fine subangular blocky; hard, friable, slightly sticky; many fine accumulations of salt; common nests and crystals of gypsum; violent effervescence; moderately alkaline; clear wavy boundary. (Combined Bz horizons is 10 to 30 inches thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyg1--24 to 32 inches; very dark grayish brown (2.5Y 3/2) silt loam, grayish brown (2.5Y 5/2) dry; common medium faint light olive brown (2.5Y 5/6) mottles; weak coarse and medium subangular blocky structure; very hard, friable, slightly sticky; many nests and crystals of gypsum and other salts; few fine accumulations of carbonates; violent effervescence; slightly alkaline; gradual wavy boundary. (0 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkyg2--32 to 47 inches; dark grayish brown (2.5Y 4/2) silt loam, grayish brown (2.5Y 5/2) dry; few streaks of very dark grayish brown (2.5Y 3/2); common fine and medium distinct light olive brown (2.5Y 5/6) mottles; weak coarse subangular blocky structure; very hard, friable, slightly sticky; many nests and crystals of gypsum and other salts; common fine accumulations of carbonates; violent effervescence; slightly alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--47 to 60 inches; dark grayish brown (2.5Y 4/2) silty clay loam, grayish brown (2.5Y 5/2) dry; common fine and medium distinct light olive brown (2.5Y 5/6) mottles; massive; very hard, friable, slightly sticky; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SALTILLO.json b/inst/extdata/OSD/S/SALTILLO.json index 979d4683c3..3ae19de33b 100644 --- a/inst/extdata/OSD/S/SALTILLO.json +++ b/inst/extdata/OSD/S/SALTILLO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "An--0 to 15 centimeters (0 to 6 inches); very dark grayish brown (10YR 3/2) silt loam, grayish brown (10YR 5/2) dry; weak fine granular structure; 16.7 mmhos/cm electrical conductivity equivalent; 82.0 dS/m sodium absorption ratio; moderately alkaline; slight effervescence throughout; abrupt smooth boundary. (8 to 23 centimeters (3 to 9 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bn--15 to 43 centimeters (6 to 17 inches); dark gray (10YR 4/1) silt loam, grayish brown (10YR 5/2) dry; moderate medium subangular blocky structure parting to weak medium granular; 15.3 mmhos/cm electrical conductivity equivalent; 88.0 dS/m sodium absorption ratio; common medium rounded strong brown (7.5YR 5/6) soft masses of iron throughout; slight effervescence throughout; slightly alkaline; clear smooth boundary. (15 to 46 centimeters (6 to 18 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Anb1--43 to 81 centimeters (17 to 32 inches); very dark gray (10YR 3/1) silty clay loam, dark grayish brown (10YR 4/2) dry; weak medium subangular blocky structure; 12.0 mmhos/cm electrical conductivity equivalent; 78.0 dS/m sodium absorption ratio; common medium rounded strong brown (7.5YR 5/6) soft masses of iron throughout; slight effervescence throughout; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Anb2--81 to 127 centimeters (32 to 50 inches); very dark gray (N 3/0) silty clay loam, dark grayish brown (2.5Y 4/2) dry; weak coarse subangular blocky structure; 10.0 mmhos/cm electrical conductivity equivalent; 82.0 dS/m sodium absorption ratio; common medium rounded strong brown (7.5YR 5/6) soft masses of iron throughout; slight effervescence throughout; slightly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Anb3--127 to 152 centimeters (50 to 60 inches); black (N 2/0) silty clay loam, gray (N 5/0) dry; weak coarse subangular blocky structure; 8.0 mmhos/cm electrical conductivity equivalent; 65.0 dS/m sodium absorption ratio; many medium rounded strong brown (7.5YR 5/6) soft masses of iron throughout; slight effervescence throughout; slightly alkaline; gradual smooth boundary. (Combined thickness of the Anb horizon is 76 to 152 centimeters (30 to 60 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cn--152 to 203 centimeters (60 to 80 inches); stratified very dark gray (N 3/0) and black (N 2/0) silt loam and silty clay loam, gray (N 5/0) dry; massive; 6.0 mmhos/cm electrical conductivity equivalent; 40.0 dS/m sodium absorption ratio; many medium rounded strong brown (7.5YR 5/6) soft masses of iron throughout; slight effervescence throughout; slightly alkaline." diff --git a/inst/extdata/OSD/S/SALTINE.json b/inst/extdata/OSD/S/SALTINE.json index 4dc8e6b73d..ddb92885e7 100644 --- a/inst/extdata/OSD/S/SALTINE.json +++ b/inst/extdata/OSD/S/SALTINE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--18 to 30 centimeters (7 to 12 inches); grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; strong fine and medium blocky structure; hard, firm, sticky; common fine and medium roots; common fine and medium pores; sodium adsorption ratio > 13; slight effervescence; strongly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--30 to 76 centimeters (12 to 30 inches); grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; strong medium and coarse blocky structure; hard, firm, sticky; common fine roots; common fine pores; sodium adsorption ratio <13; violent effervescence; strongly alkaline; clear smooth boundary. (Combined thickness of the Bw horizon ranges from 0 to 86 centimeters (0 to 34 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--76 to 122 centimeters (30 to 48 inches); light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct yellowish brown (10YR 5/4) moist iron masses in the matrix; structureless massive; hard, firm, few fine roots and tubular pores; sodium adsorption ratio < 13; sticky; strong effervescence; very strongly alkaline; abrupt, smooth boundary." diff --git a/inst/extdata/OSD/S/SAMSIL.json b/inst/extdata/OSD/S/SAMSIL.json index 3682069ec9..94454b405b 100644 --- a/inst/extdata/OSD/S/SAMSIL.json +++ b/inst/extdata/OSD/S/SAMSIL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 2 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate fine granular structure; slightly hard, friable, sticky and plastic; common fine roots; few very fine fragments of shale; slight effervescence; slightly alkaline; clear wavy boundary. (2 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--2 to 7 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure parting to weak medium granular; hard, friable, sticky and plastic; common fine roots; common fine fragments of soft shale; slight effervescence; slightly alkaline; clear wavy boundary. (0 to 6 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--7 to 11 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) crushing to grayish brown (2.5Y 5/2) moist; massive; hard, friable, sticky and plastic; common fine roots; 30 percent by volume of fine and medium fragments of soft shale; few fine distinct olive yellow (2.5Y 6/6) stains on fragments of shale; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--11 to 17 inches; light olive gray (5Y 6/2) clay, olive gray (5Y 5/2) moist; massive; hard, friable, sticky and plastic; common fine roots; about 50 percent by volume of fragments of soft shale; common distinct olive yellow (2.5Y 6/6) stains on faces of shale fragments; few fine and medium accumulations of carbonate; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined C horizons 2 to 12 inches thick)" diff --git a/inst/extdata/OSD/S/SANBORN.json b/inst/extdata/OSD/S/SANBORN.json index 57db3de1a1..a2cf8a927e 100644 --- a/inst/extdata/OSD/S/SANBORN.json +++ b/inst/extdata/OSD/S/SANBORN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 13 centimeters (0 to 5 inches); dark grayish brown (10YR 4/2) loam, very dark grayish brown (10YR 3/2) moist; moderate medium subangular blocky structure; hard, friable; sodium adsorption ratio = 14; strong effervescence; moderately alkaline; clear smooth boundary. (5 to 20 centimeters (2 to 8 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--13 to 25 centimeters (5 to 10 inches); brown (10YR 5/3) loam, brown (10YR 4/3) moist; thin strata of loamy fine sand; weak medium granular structure; slightly hard, very friable; sodium adsorption ratio = 49; strong effervescence; very strongly alkaline; gradual wavy boundary. (5 to 36 (2 to 14 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--25 to 64 centimeters (10 to 25 inches); light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; common fine distinct dark gray (2.5Y 4/1) iron masses; thin strata of fine sandy loam; massive; slightly hard, very friable; sodium adsorption ratio = 44; strong effervescence; very strongly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg2--64 to 102 centimeters (25 to 40 inches); light brownish gray (2.5Y 6/2) very fine sandy loam, grayish brown (2.5Y 5/2) moist; many fine and medium prominent light yellowish brown (2.5Y 6/4) iron masses; thin strata of loam; massive; soft, very friable; sodium adsorption ratio = 33; strong effervescence; very strongly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg3--102 to 127 centimeters (40 to 50 inches); pale brown (10YR 6/3) sand, brown (10YR 5/3) moist; many fine and medium prominent light yellowish brown (2.5Y 6/4) iron masses; thin strata of loam; single grain; loose; sodium adsorption ratio = 2; slight effervescence; moderately alkaline; clear wavy boundary." diff --git a/inst/extdata/OSD/S/SANCAJO.json b/inst/extdata/OSD/S/SANCAJO.json index 62200f8ac9..e018b08246 100644 --- a/inst/extdata/OSD/S/SANCAJO.json +++ b/inst/extdata/OSD/S/SANCAJO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--97 to 203 cm (38 to 80 in); pale yellow (2.5Y 7/3) weakly cemented siltstone bedrock of silt loam texture; light yellowish brown (2.5Y 6/3) moist; massive; very hard, firm; few films and threads calcium carbonate between fractures that decrease with depth; strongly effervescent between fractures, noneffervescent in matrix; moderately alkaline." diff --git a/inst/extdata/OSD/S/SANDOSE.json b/inst/extdata/OSD/S/SANDOSE.json index 8c42b4f296..c80cbe8741 100644 --- a/inst/extdata/OSD/S/SANDOSE.json +++ b/inst/extdata/OSD/S/SANDOSE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--142 to 203 centimeters (56 to 80 inches); pale yellow (2.5Y 7/4) loam, light yellowish brown (2.5Y 6/4) moist; massive; soft, very friable; few very fine roots throughout; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/S/SANGER.json b/inst/extdata/OSD/S/SANGER.json index d252774501..73b6269e19 100644 --- a/inst/extdata/OSD/S/SANGER.json +++ b/inst/extdata/OSD/S/SANGER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 7 inches; dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; moderate medium granular and subangular blocky structure; extremely hard, very firm, sticky and plastic; many fine roots; common fine concretions of calcium carbonate; few fine black concretions; many wormcasts; slight effervescence, moderately alkaline; clear smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--7 to 38 inches, dark grayish brown (2.5Y 4/2) clay, very dark grayish brown (2.5Y 3/2) moist; moderate coarse blocky structure; extremely hard, very firm, sticky and plastic; common fine roots; common fine concretions and soft bodies of calcium carbonate; common fine slickensides below 22 inches; strong effervescence, moderately alkaline; gradual wavy boundary. (0 to 33 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss--38 to 55 inches; light yellowish brown (10YR 6/4) silty clay, yellowish brown (10YR 5/4) moist; few fine faint brownish yellow (10YR 6/6) mottles, weak coarse blocky structure; hard, firm, sticky and plastic; few fine roots; few pores; few fine concretions of calcium carbonate; few fine black concretions; few tilted slickensides; strong effervescence, moderately alkaline; gradual wavy boundary. (5 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--55 to 69 inches; light yellowish brown (10YR 6/4) silty clay, yellowish brown (10YR 5/4) moist; common medium distinct light gray (10YR 7/2) mottles; weak coarse blocky structure; hard, firm, sticky and plastic; few fine roots; common fine concretions and soft masses of calcium carbonate; few 1/2 to 1 inch clay balls with rock structure; violently effervescence, moderately alkaline; diffuse boundary. (4 to 23 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--69 to 90 inches, light yellowish brown (10YR 6/4) silty clay, yellowish brown (10YR 5/4) moist common medium distinct very pale brown (10YR 7/3) mottles; massive; extremely hard, very firm; common coarse masses of calcium carbonate; few fossil shells; few black coatings in fractures; violent effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/S/SANSARC.json b/inst/extdata/OSD/S/SANSARC.json index 4bb52e1264..37fac61f1d 100644 --- a/inst/extdata/OSD/S/SANSARC.json +++ b/inst/extdata/OSD/S/SANSARC.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 4 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate very fine granular structure; hard, friable; many fine roots; slight effervescence; slightly alkaline; clear wavy boundary. (2 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--4 to 10 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure parting to weak very fine granular; slightly hard, friable, plastic; common fragments of shale; many fine roots; slight effervescence; slightly alkaline; gradual wavy boundary. (4 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--10 to 14 inches; light brownish gray (2.5Y 6/2) clay, dark grayish brown (2.5Y 4/2) moist; fine-earth fraction is massive; loose, very friable; more than 50 percent partially weathered fragments of shale; common fine roots; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--14 to 50 inches; light olive gray (5Y 6/2) and olive gray (5Y 5/2) bedded shale, olive gray (5Y 4/2) moist; few iron and manganese stains along the seams of the shale; few fine roots to 36 inches; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/S/SANTA_CLARA.json b/inst/extdata/OSD/S/SANTA_CLARA.json index 596547ee9a..a369e4877b 100644 --- a/inst/extdata/OSD/S/SANTA_CLARA.json +++ b/inst/extdata/OSD/S/SANTA_CLARA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B--6 to 23 inches; dark yellowish brown (10YR 4/4) silty clay; weak medium and coarse subangular blocky structure; slightly hard, firm slightly sticky, plastic; common fine roots; worm channels; slight effervescence; clear smooth boundary. (15 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "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)" diff --git a/inst/extdata/OSD/S/SANTONI.json b/inst/extdata/OSD/S/SANTONI.json index 20a05ac3ed..ce3391dddc 100644 --- a/inst/extdata/OSD/S/SANTONI.json +++ b/inst/extdata/OSD/S/SANTONI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; very dark grayish brown (2.5Y 3/2) clay; weak coarse subangular blocky structure; hard, very firm, sticky, plastic; many fine roots; few pressure faces; strong effervescence; abrupt smooth boundary. 5 to 9 inches thick." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A12--7 to 12 inches; very dark grayish brown (2.5Y 3/2) clay with many medium faint olive brown (2.5Y 4/2) and common fine prominent yellowish red (5YR 5/8) mottles; weak coarse subangular blocky structure; firm, sticky, plastic; common fine roots common pressure faces; strong effervescence; clear smooth boundary. 5 to 7 inches thick." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B2g--12 to 18 inches; mixed colors; gray (5Y 7/1), olive brown (2.5Y 4/4), dark grayish brown (2.5Y 4/2), and few fine prominent dark reddish brown (5YR 3/4) mottless; crushed color dark grayish brown (2.5Y 4/2) clay; weak coarse subangular blocky structure; firm, sticky, plastic; few fine roots; common pressure faces; black stains due to root decay; strong effervescence; clear wavy boundary. 5 to 7 inches thick." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1g--18 to 29 inches; gray (5Y 5/1) clay with common medium prominent olive brown (2.5Y 4/4) mottles; massive; firm, sticky, plastic; few fine roots; common pressure faces; few fine calcareous fragments; slight effervescence; gradual wavy boundary. 9 to 12 inches thick." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2g--29 to 38 inches; mixed colors: dark gray (5Y 4/1), gray (5Y 5/1) olive brown (2.5Y 4/4), brownish yellow ( 10YR 6/6), crushed color olive (5Y 4/3) clay; massive; firm, sticky, plastic; few fine calcareous fragments; slight effervescence; gradual wavy boundary. 7 to 10 inches thick." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C3g--38 to 54 inches; dark gray (5Y 4/1) clay with common medium prominent olive brown (2.5Y 4/4) mottles; massive; firm, sticky, plastic; slight effervescence; gradual wavy boundary. 12 to 18 inches thick." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4g--54 to 61 inches plus; mixed colors; dark gray (5Y 4/1), yellowish brown (10YR 5/6), greenish gray (5BG 6/1), crushed color olive brown (2.5Y 4/4) clay; massive; firm, sticky, plastic; slight effervescence." diff --git a/inst/extdata/OSD/S/SAN_SEBASTIAN.json b/inst/extdata/OSD/S/SAN_SEBASTIAN.json index f9dd48c463..793725bbfa 100644 --- a/inst/extdata/OSD/S/SAN_SEBASTIAN.json +++ b/inst/extdata/OSD/S/SAN_SEBASTIAN.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 4 inches; dark brown (10YR 3/3) gravelly clay, moderate fine and medium granular structure; friable, slightly sticky, plastic; many fine roots; slight effervescence; clear wavy boundary. 3 to 6 inches thick." @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--4 to 9 inches; strong brown (7.5YR 5/6) very gravelly clay; weak medium subangular blocky structure; firm, sticky, plastic; few fine roots; few faint clay films; clay coatings on gravel faces; slight effervescence; from 50 to 60 percent by volume of gravel; clear smooth boundary. 4 to 7 inches thick." @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--9 to 14 inches; strong brown (7.5YR 5/6) extremely gravelly clay; weak medium subangular blocky structure; firm, sticky, plastic; few fine roots; few faint clay films; clay coatings on gravel faces; strong effervescence; more than 60 percent by volume of gravel; clear smooth boundary 4 to 8 inches thick." @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--14 to 22 inches; reddish yellow (7.5YR 6/8) extremely gravelly clay; weak fine subangular blocky structure; firm, sticky, plastic; clay coatings on gravel faces; strong effervescence; more than 60 percent by volume of grave; gradual wavy boundary. 7 to 11 inches thick." @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--22 to 33 inches; reddish yellow (7.5YR 7/6) very gravelly clay; massive; friable; sticky and plastic; strong effervescence; from 50 to 60 percent by volume of gravel; gradual wavy boundary. 9 to 13 inches thick." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--33 to 41 inches plus; reddish yellow (7.5YR 7/6) gravelly clay; massive; friable; slightly sticky, plastic; from 25 to 60 percent by volume of gravel; strong effervescence." diff --git a/inst/extdata/OSD/S/SARBEN.json b/inst/extdata/OSD/S/SARBEN.json index 06c0b2d0b8..4621d9593d 100644 --- a/inst/extdata/OSD/S/SARBEN.json +++ b/inst/extdata/OSD/S/SARBEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--74 to 203 centimeters (29 to 80 inches); very pale brown (10YR 7/3) loamy very fine sand, brown (10YR 5/3) moist; massive; soft, very friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SARDAK.json b/inst/extdata/OSD/S/SARDAK.json index dc7ddeef72..be8df2133d 100644 --- a/inst/extdata/OSD/S/SARDAK.json +++ b/inst/extdata/OSD/S/SARDAK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; grayish brown (2.5Y 5/2) loamy fine sand, very dark grayish brown (2.5Y 3/2) moist; weak medium subangular blocky structure parting to weak fine granular; slightly hard, very friable; many fine and very fine roots throughout; common very fine vesicular and tubular pores; slight effervescence; neutral; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--6 to 10 inches; light brownish gray (2.5Y 6/2) loamy fine sand, dark grayish brown (2.5Y 4/2) moist; massive; soft, very friable; common fine and very fine roots throughout; few fine and common very fine vesicular and tubular pores; slight effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--10 to 80 inches; light brownish gray (2.5Y 6/2) fine sand, grayish brown (2.5Y 5/2) moist; single grain; loose; few fine roots throughout upper part; many very fine interstitial pores; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/S/SATANTA.json b/inst/extdata/OSD/S/SATANTA.json index b1ced9c593..af61e3ab58 100644 --- a/inst/extdata/OSD/S/SATANTA.json +++ b/inst/extdata/OSD/S/SATANTA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Btk--89 to 104 centimeters (35 to 41 inches); pale brown (10YR 6/3) silty clay loam, 26 percent clay, brown (10YR 5/3) moist; moderate medium prismatic and moderate medium subangular blocky structure; friable, hard; common fine roots throughout; common fine and medium moderate continuity tubular pores; 10 percent continuous distinct clay films on faces of peds; strong effervescence; moderately alkaline; clear smooth boundary. Lab sample number 00P00445" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bk1--104 to 132 centimeters (41 to 52 inches); very pale brown (10YR 7/3) silty clay loam, 28 percent clay, brown (10YR 5/3), moist; moderate medium subangular blocky structure; friable, hard; common very fine and fine roots throughout; common fine and medium moderate continuity tubular pores; 3 percent medium spherical carbonate nodules throughout; violent effervescence; moderately alkaline; gradual smooth boundary. Lab sample number 00P00446" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bk2--132 to 152 centimeters (52 to 60 inches); pale brown (10YR 6/3), silt loam, 27 percent clay, brown (10YR 5/3), moist; moderate medium angular blocky structure; friable, hard; common very fine roots throughout; common fine and medium moderate continuity tubular pores; 3 percent medium spherical carbonate nodules throughout; violent effervescence; moderately alkaline; gradual smooth boundary. Lab sample number 00P00447" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "3Bk3--152 to 183 centimeters (60 to 72 inches); pale brown (10YR 6/3) loam, 25 percent clay, brown (10YR 5/3), moist; weak fine angular blocky structure; friable, hard; common very fine roots throughout; common fine and medium moderate continuity tubular pores; 3 percent fine and medium irregular carbonate threads throughout; strong effervescence; strongly alkaline; clear smooth boundary. Lab sample number 00P00448" @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Bk4--183 to 200 centimeters (72 to 79 inches); light yellowish brown (10YR 6/4) fine sandy loam, 13 percent clay, yellowish brown (10YR 5/4), moist; massive; friable, hard; common very fine roots throughout; common fine and medium moderate continuity tubular pores; 3 percent medium and coarse irregular carbonate threads throughout; strong effervescence; strongly alkaline. (Combined thickness of Bk horizon ranges from 50 to 100 centimeters (20 to 40 inches)) Lab sample number 00P00449" diff --git a/inst/extdata/OSD/S/SAVO.json b/inst/extdata/OSD/S/SAVO.json index fa484a0261..83cf9b86dd 100644 --- a/inst/extdata/OSD/S/SAVO.json +++ b/inst/extdata/OSD/S/SAVO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--16 to 21 inches; light yellowish brown (2.5Y 6/4) silty clay loam, light olive brown (2.5Y 5/4) moist; moderate coarse subangular blocky structure parting to moderate fine subangular blocky; very hard, firm; few very fine roots; common fine accumulations of carbonate; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk2--21 to 42 inches; pale yellow (2.5Y 7/4) silty clay loam, light olive brown (2.5Y 5/4) moist; weak coarse subangular blocky; very hard, firm; common fine accumulations of carbonate; violent effervescence; slightly alkaline; diffuse wavy boundary. (Combined Bk horizon is 6 to 45 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--42 to 60 inches; light yellowish brown (2.5Y 6/4) silty clay loam, light olive brown (2.5Y 5/4) moist; massive; very hard, firm; violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/S/SAWDUST.json b/inst/extdata/OSD/S/SAWDUST.json index cdff6da402..8090f243be 100644 --- a/inst/extdata/OSD/S/SAWDUST.json +++ b/inst/extdata/OSD/S/SAWDUST.json @@ -89,7 +89,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 4 inches; dark grayish brown (10YR 4/2) channery loam, very dark brown (10YR 2/2) moist; weak fine granular structure; soft, very friable; 30 percent coarse fragments; strong effervescence; slightly alkaline; gradual wavy boundary. (2 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--4 to 8 inches; pale brown (10YR 6/3) very channery loam, brown (10YR 4/3) moist; weak medium subangular blocky structure; soft, friable; 50 percent coarse fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--8 to 15 inches; light yellowish brown (10YR 6/4) very channery loam, dark yellowish brown (10YR 4/4) moist; massive; soft, friable; 60 percent coarse fragments; many partially weathered limestone pebbles; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "extremely channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--15 to 26 inches; very pale brown (10YR 7/4) extremely channery loam, light yellowish brown (10YR 6/4) moist; massive; soft, friable; 70 percent coarse fragments; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "extremely channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--26 to 60 inches; yellow (10YR 7/6) extremely channery sandy loam, brownish yellow (10YR 6/6) moist; massive; soft, friable; 85 percent coarse fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SCHAEFERVILLE.json b/inst/extdata/OSD/S/SCHAEFERVILLE.json index d2ef759ac8..4d724a35a6 100644 --- a/inst/extdata/OSD/S/SCHAEFERVILLE.json +++ b/inst/extdata/OSD/S/SCHAEFERVILLE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--3 to 6 cm; reddish gray (5YR 5/2) silt loam, dark reddish brown (5YR 3/2) moist; weak fine platy structure parting to weak very fine granular; soft, very friable, slightly sticky and nonplastic; common very fine and fine and few medium roots throughout; 12 percent very strongly cemented, fine and medium angular limestone gravel; very slight effervescence; neutral; clear smooth boundary. (3 to 17 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--6 to 35 cm; red (2.5YR 5/6) silt loam, red (2.5YR 4/6) moist; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine and fine and few medium roots throughout; about 10 percent weakly to moderately cemented, fine and medium, angular and subangular shale parachanners; very few (less than 1 percent) fine prominent pinkish white (5YR 8/2) calcium carbonate masses and threads; strong effervescence; slightly alkaline; clear smooth boundary. (14 to 32 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ck1--35 to 51 cm; red (2.5YR 5/6) parachannery silt loam, red (2.5YR 4/6) moist; massive parting to fine and medium block-like shale rock structure; slightly hard, firm, slightly sticky and slightly plastic; few very fine, fine and medium roots; about 30 percent weakly to moderately cemented, fine and medium, angular and subangular shale parachanners; common (about 7 percent) medium prominent pinkish white (5YR 8/2) calcium carbonate masses and threads; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "C2--51 to 72 cm; light red (2.5YR 6/6) extremely paragravelly silt loam, red (2.5YR 4/6) moist; massive parting to coarse and medium, block-like shale rock structure; hard, firm, slightly sticky and slightly plastic; few very fine and fine roots throughout; about 70 percent weakly to moderately cemented, fine and medium, angular and subangular shale parachanners; slight effervescence, calcium carbonate mostly disseminated; moderately alkaline; gradual irregular boundary. (Combined thickness of the C horizon is 16 to 48 cm)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--72 to 200 cm; red (2.5YR 5/6) and light red (2.5YR 6/6) weakly fragmented, slight effervescence; silty shale." diff --git a/inst/extdata/OSD/S/SCHALLER.json b/inst/extdata/OSD/S/SCHALLER.json index db326d1729..a497f07029 100644 --- a/inst/extdata/OSD/S/SCHALLER.json +++ b/inst/extdata/OSD/S/SCHALLER.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--9 to 15 inches; grayish brown (10YR 5/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; single grain; loose, nonsticky and nonplastic; few fine roots; 5 percent gravel; fine masses of carbonates; strong effervescence; slightly alkaline; abrupt wavy boundary. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/S/SCHAMBER.json b/inst/extdata/OSD/S/SCHAMBER.json index 447ba7b97f..6849454def 100644 --- a/inst/extdata/OSD/S/SCHAMBER.json +++ b/inst/extdata/OSD/S/SCHAMBER.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--2 to 6 inches; brown (10YR 5/3) gravelly loam, dark grayish brown (10YR 4/2) moist; weak fine granular and subangular blocky structure; slightly hard, friable; 20 percent gravel by volume; slight effervescence; moderately alkaline; clear wavy boundary. (Combined A horizons 4 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--6 to 20 inches; light brownish gray (10YR 6/2) very gravelly sand, grayish brown (10YR 5/2) moist; single grain; loose; 40 percent gravel by volume; common fine accumulations of carbonates and coatings of carbonates on lower sides of pebbles; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 40 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--20 to 60 inches; multicolored, very gravelly sand; single grain; loose; 45 percent gravel by volume; few fine accumulations of carbonates and coatings of carbonate on pebbles in the upper part; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SCHUELKE.json b/inst/extdata/OSD/S/SCHUELKE.json index e2c7290d2d..a16db275d3 100644 --- a/inst/extdata/OSD/S/SCHUELKE.json +++ b/inst/extdata/OSD/S/SCHUELKE.json @@ -135,7 +135,7 @@ "cf_class": "very cobbly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Btk1--9 to 13 inches; brown (10YR 5/3) very cobbly clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine and medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; common very fine roots; many very fine irregular pores; common faint pressure cutans on ped faces and clay films in pores; many aggregates of secondary lime and common lime coatings lime on the undersides of basalt fragments; 30 percent gravel and 25 percent cobbles; slightly effervescence; moderately alkaline (pH 8.3) clear wavy boundary. (3 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely cobbly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "2Btk2--13 to 22 inches; brown (10YR 5/3) extremely cobbly clay loam, dark brown (10YR 3/3) moist; massive; hard, firm, moderately sticky and moderately plastic; common very fine roots; many very fine irregular pores; common faint pressure cutans on ped faces and clay films in pores; many fine spheroidal aggregates of secondary lime and common coatings of lime on the underside of basalt fragments; 35 percent gravel and 30 percent cobbles; moderately alkaline (pH 8.3); violently effervescence; abrupt irregular boundary. (3 to 18 inches thick)" diff --git a/inst/extdata/OSD/S/SCORIO.json b/inst/extdata/OSD/S/SCORIO.json index 300f89b8b9..9033c9c779 100644 --- a/inst/extdata/OSD/S/SCORIO.json +++ b/inst/extdata/OSD/S/SCORIO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; strong coarse subangular blocky structure; very hard, very firm, very sticky and very plastic; many very fine and few fine and medium roots; strong effervescence; slightly alkaline; abrupt smooth boundary. (4 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--8 to 32 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; massive; 0 to 2 mm stratifications of silt throughout; very hard, very firm, very sticky and very plastic; common very fine roots; strong effervescence; slightly alkaline; gradual wavy boundary. (13 to 28 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--32 to 60 inches; stratified light yellowish brown (2.5Y 6/4) loam, olive brown (2.5Y 4/3) moist and pale yellow (2.5Y 7/4) very fine sandy loam, light olive brown (2.5Y 5/4) moist; many fine distinct dark yellowish brown (10YR 4/6) moist redox concentrations; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SCOTT.json b/inst/extdata/OSD/S/SCOTT.json index 5185aa7f2b..5350caf32c 100644 --- a/inst/extdata/OSD/S/SCOTT.json +++ b/inst/extdata/OSD/S/SCOTT.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--142 to 200 centimeters (56 to 80 inches); brown (10YR 4/3) silt loam, pale brown (10YR 6/3); moist; weak coarse prismatic structure; slightly hard, friable; carbonates disseminated throughout matrix; violent effervescence; slightly alkaline. & 01/2008 RRH: Typical pedon: put moist colors first; Range of Characteristics, Bt horizon: added silty clay loam; Competing series: revised; Geographic Setting: revised, narrowed the mean annual precipitation and mean annual temperature ranges; Geographically Associated Soils: revised, used only those soils at type location; Drainage: revised; Distribution and Extent: revised; Use and Vegetation: revised, plant community based on A Regional Guidebook for Applying the Hydrogeomorphic Approach to Assessing Wetland Functions of Rainwater Basin Depressional Wetlands in Nebraska, the component existing plants in NASIS is incorrect; Additional Data: revised" diff --git a/inst/extdata/OSD/S/SCOVILLE.json b/inst/extdata/OSD/S/SCOVILLE.json index becd1d55e1..3b0e774342 100644 --- a/inst/extdata/OSD/S/SCOVILLE.json +++ b/inst/extdata/OSD/S/SCOVILLE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--49 to 60 inches; light gray (10YR 7/2) very fine sandy loam, brown (10YR 5/3) moist; weak coarse prismatic structure; soft, very friable; violent effervescence; few fine accumulations of carbonates; moderately alkaline." diff --git a/inst/extdata/OSD/S/SCROGGIN.json b/inst/extdata/OSD/S/SCROGGIN.json index 39cf8a8f38..3a9a1496d0 100644 --- a/inst/extdata/OSD/S/SCROGGIN.json +++ b/inst/extdata/OSD/S/SCROGGIN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; brown (10YR 5/3) loam, dark grayish brown (10YR 4/2) moist; weak fine granular structure; soft, very friable, slightly sticky and slightly plastic; many fine roots; strong effervescence; slightly alkaline; clear smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--4 to 16 inches; light brownish gray (2.5Y 6/2) loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to weak medium and coarse subangular blocky; very hard, friable, slightly sticky and slightly plastic; few fine siltstone fragments in the lower part; common fine roots; many fine and medium accumulations of carbonates; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "BCk--16 to 23 inches; light gray (2.5Y 7/2) loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure; very hard, friable, slightly sticky and slightly plastic; few fine and very fine roots, common coarse accumulations of carbonates; violent effervescence; moderately alkaline; abrupt smooth boundary. (Combined Bk, BCk and C horizons 18 to 35 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cr1--23 to 27 inches; light gray (2.5Y 7/2) siltstone, light olive brown (2.5Y 5/3) moist; fine distinct yellowish brown (10YR 5/6) mottles; bedded; very hard, friable; may fine accumulations of salt and carbonates on fracture faces; violent effervescence; moderately alkaline; abrupt wavy boundary." diff --git a/inst/extdata/OSD/S/SEAGOVILLE.json b/inst/extdata/OSD/S/SEAGOVILLE.json index 58fa17192c..d309857426 100644 --- a/inst/extdata/OSD/S/SEAGOVILLE.json +++ b/inst/extdata/OSD/S/SEAGOVILLE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; moderate medium and fine blocky structure; very hard, very firm, very sticky and plastic; few fine roots; common fine pores; common wormcasts; strong effervescence; moderately alkaline; abrupt smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--6 to 14 inches; dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; moderate fine blocky structure; extremely hard, very firm, very sticky and plastic; few fine roots; many shiny pressure faces; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 17 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss1--14 to 30 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; moderate medium and coarse blocky grooved natural fragments; extremely hard, very firm, very sticky and plastic; few fine roots; common coarse slickensides; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 30 inches thick)" diff --git a/inst/extdata/OSD/S/SEARING.json b/inst/extdata/OSD/S/SEARING.json index 912a765232..056cb45da1 100644 --- a/inst/extdata/OSD/S/SEARING.json +++ b/inst/extdata/OSD/S/SEARING.json @@ -135,7 +135,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--23 to 33 inches; reddish yellow (5YR 6/6) channery loam, yellowish red (5YR 4/6) moist; massive; soft, friable, slightly sticky and slightly plastic; common fine roots; 15 percent porcelanite channers; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--33 to 60 inches; reddish yellow (5YR 7/6) shattered porcelanite, yellowish red (5YR 5/6) moist; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SEEPRID.json b/inst/extdata/OSD/S/SEEPRID.json index 4a4845c2a4..dc244fb864 100644 --- a/inst/extdata/OSD/S/SEEPRID.json +++ b/inst/extdata/OSD/S/SEEPRID.json @@ -204,7 +204,7 @@ "cf_class": "extremely channery", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bk2--38 to 47 inches; very pale brown (10YR 7/3) extremely channery loam, yellowish brown (10YR 5/4) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; 65 percent channers; very strongly effervescent, (64 percent calcium carbonate equivalent), carbonates are disseminated and segregated as common fine and medium and 1 mm thick coatings on rock fragments; moderately alkaline (pH 8.4); abrupt smooth boundary. (0 to 9 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely channery", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bk3--47 to 58 inches; yellow (10YR 7/6) extremely channery sandy loam, yellowish brown (10YR 5/4) moist; massive; soft, friable, slightly sticky and slightly plastic; 10 percent flagstones, 60 percent channers; very strongly effervescent, (73 percent calcium carbonate equivalent), carbonates are disseminated and segregated as common fine and medium and 1 mm thick coatings on rock fragments; moderately alkaline (pH 8.4); abrupt wavy boundary. (13 to 17 inches thick)" diff --git a/inst/extdata/OSD/S/SEEYA.json b/inst/extdata/OSD/S/SEEYA.json index 3d03ff17d1..4b457ff379 100644 --- a/inst/extdata/OSD/S/SEEYA.json +++ b/inst/extdata/OSD/S/SEEYA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 15 cm; grayish brown (10YR 5/2) mucky loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine and fine roots; many very fine interstitial pores; strong effervescence; moderately alkaline (pH 8.4); clear smooth boundary. (15 to 25 cm thick)" diff --git a/inst/extdata/OSD/S/SELIA.json b/inst/extdata/OSD/S/SELIA.json index 67eb479b77..0201cdcb16 100644 --- a/inst/extdata/OSD/S/SELIA.json +++ b/inst/extdata/OSD/S/SELIA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn1--10 to 30 centimeters (4 to 12 inches); dark gray (10YR 4/1) loamy fine sand, very dark gray (10YR 3/1) moist; weak coarse columnar structure parting to weak coarse subangular blocky; very hard, friable; few clay bridgings between sand grains; many fine and medium threadlike accumulations of carbonates; strong effervescence; very strongly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn2--30 to 41 centimeters (12 to 16 inches); grayish brown (10YR 5/2) loamy fine sand, dark gray (10YR 4/1) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; very hard, friable; few clay bridgings between sand grains; few fine thread-like accumulations of carbonates; slight effervescence; very strongly alkaline; clear wavy boundary. (Combined thickness of B2t horizons is 18 to 46 centimeters (7 to 18 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bn--41 to 64 centimeters (16 to 25 inches); light brownish gray (10YR 6/2) loamy fine sand, dark grayish brown (10YR 4/2) moist; few fine faint yellowish brown (10YR 5/6 moist) mottles; weak coarse prismatic structure; very hard, friable; few fine thread-like accumulations of carbonates; slight effervescence; very strongly alkaline; abrupt smooth boundary. (0 to 23 centimeters (0 to 9 inches) thick)" diff --git a/inst/extdata/OSD/S/SELPATS.json b/inst/extdata/OSD/S/SELPATS.json index 24a6ebc98c..c8bc2f3afd 100644 --- a/inst/extdata/OSD/S/SELPATS.json +++ b/inst/extdata/OSD/S/SELPATS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--48 to 61 centimeters (19 to 24 inches); pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; weak medium and coarse prismatic structure parting to weak fine subangular blocky; hard, friable, slightly sticky and slightly plastic; common very fine roots; many very fine, common fine and few medium continuous vesicular pores; few distinct clay films on faces of peds and in pores; strong effervescence; calcium carbonate as few distinct soft masses and seams; moderately alkaline (pH 8.0); gradual wavy boundary. (13 to 33 centimeters (5 to 13 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk--61 to 152 centimeters (24 to 60 inches); very pale brown (10YR 7/3) very gravelly sandy loam, brown (10YR 5/3) moist; massive; slightly hard, very friable, nonsticky and slightly plastic; few very fine roots; violent effervescence; calcium carbonate as common prominent soft masses, seams and pendants on the undersides of rock fragments; 35 percent gravel and 5 percent cobbles; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/S/SEN.json b/inst/extdata/OSD/S/SEN.json index 2577073ec4..923ec47710 100644 --- a/inst/extdata/OSD/S/SEN.json +++ b/inst/extdata/OSD/S/SEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--17 to 23 inches; pale yellow (2.5Y 7/3) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; slightly hard, friable, sticky and slightly plastic; common roots; medium generally rounded masses of carbonates; violent effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--23 to 34 inches; pale yellow (2.5Y 8/2) silt loam, light yellowish brown (2.5Y 6/4) moist; weak medium subangular blocky structure; slightly hard, friable, sticky and slightly plastic; common roots; many small iron concretions; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 5 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--34 to 60 inches; pale yellow (5Y 7/3) and pale olive (5Y 6/3) soft stratified siltstone, pale olive (5Y 6/3) moist; slight effervescence." diff --git a/inst/extdata/OSD/S/SENLAR.json b/inst/extdata/OSD/S/SENLAR.json index 70ea92036d..61b8de3181 100644 --- a/inst/extdata/OSD/S/SENLAR.json +++ b/inst/extdata/OSD/S/SENLAR.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 2 inches; light gray (10YR 7/2) silt loam, brown (10YR 5/3) moist; weak fine granular structure; a thin vesicular crust occurs on soil surface; soft, friable, slightly sticky and slightly plastic; many fine, few medium roots; slight effervescence, calcium carbonate disseminated; neutral (pH 6.8); clear smooth boundary. (1 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw1--2 to 8 inches; very pale brown (10YR 7/3) silt loam, brown (10YR 5/3) moist; weak medium prismatic structure parting to weak medium angular blocky; slightly hard, friable, slightly sticky and slightly plastic; common fine, few medium roots; strong effervescence, calcium carbonate disseminated; slightly alkaline (pH 7.6); clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--8 to 16 inches; very pale brown (10YR 7/3) silt loam, brown (10YR 5/3) moist; weak medium prismatic structure parting to weak medium angular blocky; slightly hard, friable, slightly sticky and slightly plastic; common fine, few medium roots; strong effervescence, calcium carbonate disseminated; strongly alkaline (pH 8.8); clear wavy boundary. (Combined Bw horizons 10 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--16 to 22 inches; light gray (10YR 7/2) silt loam, pale brown (10YR 6/3) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic common fine, few medium roots; violent effervescence, calcium carbonate disseminated and as few medium and fine filaments and threads; strongly alkaline (pH 8.9); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--22 to 28 inches; light gray (10YR 7/2) silt loam, brown (10YR 5/3) moist; massive; slightly hard, friable slightly sticky and slightly plastic; few medium and fine roots; violent effervescence, calcium carbonate disseminated and as common fine filaments and specks; strongly alkaline (pH 9.0); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk3--28 to 60 inches; very pale brown (10YR 7/3) very fine sandy loam containing thin strata of fine sandy loam and silt loam, brown (10YR 5/3) moist; moderate bedding planes; slightly hard, very friable nonsticky and nonplastic; few medium and fine roots; violent effervescence, calcium carbonate disseminated and as few fine soft masses; strongly alkaline (pH 9.0)." diff --git a/inst/extdata/OSD/S/SHAM.json b/inst/extdata/OSD/S/SHAM.json index 24838cfd15..b8cd5ab072 100644 --- a/inst/extdata/OSD/S/SHAM.json +++ b/inst/extdata/OSD/S/SHAM.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--4 to 10 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak medium and fine subangular blocky structure; hard, friable; common roots; few pores; slight effervescence; moderately alkaline; clear wavy boundary. (Combined A horizons 1 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--10 to 14 inches; light brownish gray (2.5Y 6/2) stratified fine sandy loam, grayish brown (2.5Y 5/2) moist; massive; very hard, friable; few roots; few pores; strong effervescence; strongly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--14 to 60 inches; light olive gray (5Y 6/2) stratified loam, silt loam, very fine sandy loam and fine sandy loam, olive gray (5Y 5/2) moist; massive; very hard, friable; few fine roots in upper part; few masses of carbonates; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/S/SHAMBO.json b/inst/extdata/OSD/S/SHAMBO.json index 562f6a8039..ccfb113abc 100644 --- a/inst/extdata/OSD/S/SHAMBO.json +++ b/inst/extdata/OSD/S/SHAMBO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--29 to 42 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; strong effervescence; moderately alkaline; gradual smooth boundary. (6 to 32 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCk--42 to 48 inches; light gray (2.5Y 7/2) loam, light brownish gray (2.5Y 6/2) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; light gray (2.5Y 7/2) loam, light yellowish brown (2.5Y 6/4) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SHEEPROCK.json b/inst/extdata/OSD/S/SHEEPROCK.json index 7e17f759a6..d7e22cf324 100644 --- a/inst/extdata/OSD/S/SHEEPROCK.json +++ b/inst/extdata/OSD/S/SHEEPROCK.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "C2--3 to 7 inches; light brownish gray (10YR 6/2) very gravelly coarse sandy loam, dark grayish brown (10YR 4/2) moist; weak fine granular structure; slightly hard, friable; few fine and coarse, and common medium roots; lime in pockets; 80 percent slightly effervescent; 20 percent strongly effervescent; moderately alkaline (pH 8.2); clear wavy boundary. (4 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "broken", "narrative": "C3--7 to 40 inches; light brownish gray (10YR 6/2) very gravelly coarse sand, dark grayish brown (10YR 4/2) moist; single grain; loose; few coarse and common fine and medium roots; 80 percent slightly effervescent; 20 percent strongly effervescent; lime in pockets; moderately alkaline (pH 8.2); gradual broken boundary. (30 to 36 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C5--49 to 68 inches; brown (10YR 5/3) very gravelly coarse sand, brown (10YR 4/3) very gravelly coarse sand, brown (10YR 4/3) moist; single grain; loose; few fine and medium roots; 80 percent slightly effervescent; 20 percent strongly effervescent; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/S/SHEFFIELD.json b/inst/extdata/OSD/S/SHEFFIELD.json index b3ae45d891..655a76d796 100644 --- a/inst/extdata/OSD/S/SHEFFIELD.json +++ b/inst/extdata/OSD/S/SHEFFIELD.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C -- 41 to 60 inches; olive brown (2.5Y 4/4) silt loam; common to many medium distinct yellowish brown (10YR 5/8), light olive brown (2.5Y 5/6), and gray (5Y 5/1) mottles; massive; firm; breaks out in angular chunks; thin clay films in some vertical partings becoming fewer with depth; 10 percent coarse fragments composed mainly of flat angular fragments of sandstone with some shale, igneous, and occasional limestone fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SHELLWOOD.json b/inst/extdata/OSD/S/SHELLWOOD.json index a0f5501e24..2f14000fdc 100644 --- a/inst/extdata/OSD/S/SHELLWOOD.json +++ b/inst/extdata/OSD/S/SHELLWOOD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 9 inches; black (10YR 2/1) sandy loam, very dark gray (10YR 3/1) dry; weak very fine and fine granular structure; very friable; strong effervescence; mildly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A1--9 to 17 inches; black (10YR 2/1) sandy loam, very dark gray (10YR 3/1) dry; weak fine subangular blocky structure parting to weak very fine granular; very friable; strong effervescence; mildly alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--17 to 29 inches; black (10YR 2/1) sandy loam, very dark gray (10YR 3/1) dry; weak very fine subangular blocky structure parting to weak very fine granular; very friable; strong effervescence; mildly alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A3--29 to 46 inches; black (10YR 2/1) sandy loam, very dark gray (10YR 3/1) dry; weak very fine and fine subangular blocky structure; very friable; many roots; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--46 to 56 inches; very dark gray (10YR 3/1) sandy loam dark gray (10YR 4/1) dry; weak fine subangular blocky structure; very friable; strong effervescence; mildly alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--56 to 60 inches; very dark brown (10YR 2/2) sandy loam, dark grayish brown (10YR 4/2) dry; massive; very friable; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SHERDAHL.json b/inst/extdata/OSD/S/SHERDAHL.json index f879559e83..2ee1465b9c 100644 --- a/inst/extdata/OSD/S/SHERDAHL.json +++ b/inst/extdata/OSD/S/SHERDAHL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--63 to 84 centimeters (25 to 34 inches); light brownish gray (10YR 6/2) silt loam, grayish brown (10YR 5/2) interior, moist; 32 percent sand; 6 percent clay; structureless massive; very friable, soft, nonsticky, nonplastic; common fine roots throughout; neutral; slight effervescence, by HCl, 1 normal; abrupt wavy boundary. (The combined thickness of the C horizon is 25 to 75 centimeters (10 to 30 inches)." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Ab--84 to 104 centimeters (34 to 42 inches); dark gray (10YR 4/1) silty clay loam, very dark gray (10YR 3/1) interior, moist; 13 percent sand; 29 percent clay; moderate medium subangular blocky structure; very friable, soft, slightly sticky, slightly plastic; common fine roots throughout and common very fine roots throughout; moderately alkaline; slight effervescence, by HCl, 1 normal; gradual smooth boundary. (0 to 35 centimeters (0 to 14 inches) thick.)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bkb3--150 to 164 centimeters (60 to 66 inches); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) interior, moist; 22 percent sand; 14 percent clay; moderate fine subangular blocky structure; friable, soft, slightly sticky, slightly plastic; 1 percent fine faint irregular strong brown (7.5YR 4/6), moist, masses of oxidized iron throughout; 2 percent fine prominent threadlike very weakly cemented light gray (10YR 7/1), moist, carbonate masses on surfaces along root channels; moderately alkaline; very slight effervescence, by HCl, 1 normal; clear smooth boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bkb4--164 to 200 centimeters (66 to 79 inches); very pale brown (10YR 7/3) silt loam, pale brown (10YR 6/3) interior, moist; 14 percent sand; 12 percent clay; weak fine subangular blocky structure; friable, soft, nonsticky, nonplastic; 1 percent fine faint irregular strong brown (7.5YR 4/6), moist, masses of oxidized iron throughout; 1 percent fine faint irregular very weakly cemented light gray (10YR 7/1), moist, carbonate masses throughout; moderately alkaline; strong effervescence, by HCl, 1 normal." diff --git a/inst/extdata/OSD/S/SHIPS.json b/inst/extdata/OSD/S/SHIPS.json index 2f1488b8a9..caa325b3ef 100644 --- a/inst/extdata/OSD/S/SHIPS.json +++ b/inst/extdata/OSD/S/SHIPS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 15 cm (0 to 6 in); reddish brown (5YR 4/3) clay, reddish brown (5YR 4/3) dry; weak fine angular blocky structure; very hard, firm, very sticky and very plastic; common fine roots; very slight effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--15 to 36 cm (6 to 14 in); dark reddish brown (5YR 3/3) clay, reddish brown (5YR 4/3) dry; moderate fine angular blocky structure; very hard, very firm, very sticky and very plastic; common fine roots; few pressure faces; very slight effervescence; moderately alkaline; gradual wavy boundary. (the combined A subhorizons are 15 to 56 cm [6 to 22 in]thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss1--36 to 86 cm (14 to 34 in); dark reddish brown (5YR 3/3) clay reddish brown (5YR 4/3) dry; moderate fine angular blocky structure; very hard, very firm, very sticky and very plastic; common fine roots; common large slickensides; common pressure faces; very slight effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkss--137 to 203 cm (54 to 80 in); dark reddish brown (2.5YR 3/4) clay, reddish brown (2.5YR 4/4) dry; weak coarse angular blocky structure; very hard, very firm, very sticky and very plastic; few fine roots; common slickensides; common pressure faces; few threads and masses of calcium carbonate; few calcium carbonate concretions; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SHIPSHE.json b/inst/extdata/OSD/S/SHIPSHE.json index bc709ee3c2..44915f5799 100644 --- a/inst/extdata/OSD/S/SHIPSHE.json +++ b/inst/extdata/OSD/S/SHIPSHE.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--32 to 60 inches; yellowish brown (10YR 5/4) stratified gravelly sand and sand; single grained; loose; strong effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/S/SHONKIN.json b/inst/extdata/OSD/S/SHONKIN.json index 224399e703..1a270092d0 100644 --- a/inst/extdata/OSD/S/SHONKIN.json +++ b/inst/extdata/OSD/S/SHONKIN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--39 to 50 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; massive; slightly hard, very friable, sticky, plastic; few very fine roots; common very fine tubular pores; strong effervescence; disseminated carbonates; moderately alkaline (pH 8.2); gradual boundary. (10 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--50 to 60 inches; grayish brown (10YR 5/2) clay loam; massive; hard, friable, sticky, plastic; weak effervescence; strongly alkaline (pH 8.5)" diff --git a/inst/extdata/OSD/S/SHUE.json b/inst/extdata/OSD/S/SHUE.json index 497c5038c3..1056fb93ed 100644 --- a/inst/extdata/OSD/S/SHUE.json +++ b/inst/extdata/OSD/S/SHUE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bkg--28 to 45 inches; light brownish gray (2.5Y 6/2) clay loam, light gray (2.5Y 7/2) dry; few fine distinct gray (10YR 6/1) redox depletions and common fine and medium prominent dark yellowish brown (10YR 4/4) redox concentrations; weak medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few very fine roots throughout; few very fine tublular pores; 18 percent calcium carboante equivalent; common fine and medium masses of carbonates; few fine masses of iron-manganese; strong effervescence; 2 percent gravel; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--45 to 80 inches; grayish brown (2.5Y 5/2) clay loam, light brownish gray (2.5Y 6/2) dry; few fine distinct gray (10YR 6/1) redox depletions and common fine and medium dark yellowish brown (10YR 4/4) redox concentrations; massive; hard, firm, moderately sticky and moderately plastic; few very fine tubular pores; 8 percent calcium carbonate equivalent; few fine masses of carbonates; few fine and medium masses of iron-manganese; strong effervescence; 4 percent gravel; moderately alkaline." diff --git a/inst/extdata/OSD/S/SHULLSBURG.json b/inst/extdata/OSD/S/SHULLSBURG.json index bf054842fb..41991b848f 100644 --- a/inst/extdata/OSD/S/SHULLSBURG.json +++ b/inst/extdata/OSD/S/SHULLSBURG.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IICr--37 to 60 inches; greenish gray (5GY 6/1) shale; many large prominent yellowish brown (10YR 5/4) mottles; massive with some laminations and vertical cleavages; extremely firm; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/S/SIDDOWAY.json b/inst/extdata/OSD/S/SIDDOWAY.json index e6d2bdb210..c1eea53418 100644 --- a/inst/extdata/OSD/S/SIDDOWAY.json +++ b/inst/extdata/OSD/S/SIDDOWAY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--28 to 40 inches; pale brown (10YR 6/3) loamy fine sand; brown (10YR 5/3) moist; moderate medium subangular blocky structure; slightly hard, friable, nonsticky and nonplastic; few very fine roots; few very fine tubular pores; 10 percent pebbles; violent effervescence; moderately alkaline (pH 8.2); clear smooth boundary. (12 to 19 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--40 to 48 inches; pale brown (10YR 6/3) loamy fine sand; brown (10YR 5/3) moist; massive; slightly hard, friable, nonsticky and nonplastic; few very fine roots; few very fine tubular pores; 10 percent pebbles; violent effervescence; moderately alkaline (pH 8.4); clear wavy boundary. (9 to 19 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk3--48 to 53 inches; white (10YR 8/2) loamy fine sand; pale brown (10YR 6/3) moist; massive; slightly hard, friable, nonsticky and nonplastic; few very fine roots; common very fine tubular pores; 10 percent pebbles and 5 percent cobbles; violent effervescence; strongly alkaline (pH 8.6); abrupt wavy boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/S/SIDNEY.json b/inst/extdata/OSD/S/SIDNEY.json index 39d7403610..6fdcdc31b8 100644 --- a/inst/extdata/OSD/S/SIDNEY.json +++ b/inst/extdata/OSD/S/SIDNEY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 18 centimeters (0 to 7 inches); grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; soft, very friable; common very fine and few fine roots; strong effervescence; 2 percent by volume calcareous sandstone gravel; slightly alkaline; abrupt smooth boundary. (10 to 38 centimeters (4 to 15 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--18 to 41 centimeters (7 to 16 inches); brown (10YR 5/3) very fine sandy loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; soft, very friable; common very fine and fine roots; strong effervescence; 2 percent by volume calcareous sandstone gravel; moderately alkaline; gradual smooth boundary. (0 to 41 centimeters (0 to 16 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--41 to 66 centimeters (16 to 26 inches); light brownish gray (10YR 6/2) silt loam, grayish brown (10YR 5/2) moist; weak medium and coarse subangular blocky structure; slightly hard, very friable; common fine roots; violent effervescence; 2 percent by volume calcareous sandstone gravel; many mycelial-like threads and seams of calcium carbonate; moderately alkaline; clear wavy boundary. (0 to 38 centimeters (0 to 15 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--66 to 122 centimeters (26 to 48 inches); very pale brown (10YR 7/3) very fine sandy loam, pale brown (10YR 6/3) moist; massive, soft, very friable; few fine roots; strong effervescence; 5 percent by volume calcareous sandstone gravel; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--122 to 203 centimeters (48 to 80 inches); very pale brown (10YR 8/2) weakly cemented fine grained sandstone, light gray (10YR 7/2) moist; violent effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/S/SIECHE.json b/inst/extdata/OSD/S/SIECHE.json index ed5ff7aae4..3c560d32ed 100644 --- a/inst/extdata/OSD/S/SIECHE.json +++ b/inst/extdata/OSD/S/SIECHE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--32 to 41 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; common fine distinct olive yellow (2.5Y 6/6) and few fine distinct mottles of yellowish red (5YR 4/6) redox concentrations, and few fine and medium distinct of gray (5Y 5/1) redox depletions; moderate coarse and medium subangular blocky structure; hard, firm, sticky and plastic; few coarse accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (9 to 13 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--41 to 60 inches; light gray (2.5Y 7/2) clay loam, grayish brown (2.5Y 5/2) moist; few fine and medium distinct gray (5Y 5/1) redox depletions and yellowish red (5YR 4/6) redox concretions; weak coarse subangular blocky structure; hard, firm, sticky; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SILVER_CREEK.json b/inst/extdata/OSD/S/SILVER_CREEK.json index 353432281f..0ad72dd618 100644 --- a/inst/extdata/OSD/S/SILVER_CREEK.json +++ b/inst/extdata/OSD/S/SILVER_CREEK.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--18 to 25 centimeters (7 to 10 inches); very dark gray (10YR 3/1) silt loam, black (10YR 2/1) moist; moderate medium granular structure; slightly hard, very friable; slight effervescence; slightly alkaline; clear smooth boundary. (0 to 8 inches thick) (Combined thickness of the A horizon is 15 to 25 centimeters (6 to 18 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt1--25 to 36 centimeters (10 to 14 inches); very dark gray (10YR 3/1) silty clay loam, black (10YR 2/1) moist; moderate medium columnar structure parting to moderate medium subangular blocky; hard, firm; strong effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--36 to 53 centimeters (14 to 21 inches); dark gray (2.5Y 4/1) silty clay, black (10YR 2/1) moist; moderate medium columnar structure parting to moderate medium blocky; hard, firm; violent effervescence; streaks and soft masses of lime; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--53 to 69 centimeters (21 to 27 inches); gray (2.5Y 5/1) silty clay, dark gray (2.5Y 4/1) moist; moderate medium prismatic structure parting to weak medium subangular blocky; hard, firm; violent effervescence; streaks and soft masses of lime; moderately alkaline; clear wavy boundary. (Combined thickness of Bt horizons is 30 to 61 centimeters (12 to 24 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BCk--69 to 97 centimeters (27 to 38 inches); gray (2.5Y 6/1) silt loam, gray (2.5Y 5/1) moist; weak coarse subangular blocky structure; slightly hard, very friable; violent effervescence; streaks and soft masses of lime; moderately alkaline; abrupt wavy boundary. (0 to 28 centimeters (0 to 11 inches) thick)" diff --git a/inst/extdata/OSD/S/SIMONIN.json b/inst/extdata/OSD/S/SIMONIN.json index 1b0757feb3..a53c8da29a 100644 --- a/inst/extdata/OSD/S/SIMONIN.json +++ b/inst/extdata/OSD/S/SIMONIN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--40 to 60 inches; dark grayish brown (2.5Y 4/2) clay; massive; very firm; common gray (10YR 6/1) carbonate coatings on cleavage planes; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/S/SINAI.json b/inst/extdata/OSD/S/SINAI.json index 1b815c1a3a..340b74a097 100644 --- a/inst/extdata/OSD/S/SINAI.json +++ b/inst/extdata/OSD/S/SINAI.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkss1--23 to 33 inches; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, firm, sticky and plastic; tongues of very dark gray (10YR 3/1) moist, 1/8 inch to over 2 inches thick; few intersecting slickensides; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkss2--33 to 42 inches; light gray (2.5Y 7/2), silty clay, grayish brown (2.5Y 5/2) moist; few medium prominent yellowish brown (10YR 5/6) redox concentrations moist; moderate medium prismatic structure; very hard, firm, sticky and plastic; few intersecting slickensides; common fine and medium accumulations of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (combined thickness of the Bk horizon is 8 to 30 inches)" diff --git a/inst/extdata/OSD/S/SINGSAAS.json b/inst/extdata/OSD/S/SINGSAAS.json index 8109e38dbf..96579f1f2c 100644 --- a/inst/extdata/OSD/S/SINGSAAS.json +++ b/inst/extdata/OSD/S/SINGSAAS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk1--19 to 32 inches; light yellowish brown (2.5Y 6/4) loam; olive brown (2.5Y 4/4) moist; weak coarse prismatic structure parting to moderate medium subangular blocky; hard, friable, slightly sticky and slightly plastic; few worm casts and worm holes; few fine roots; many fine pores; 4 percent pebbles; common fine accumulations of calcium carbonate; violent effervescence; moderately alkaline (pH 8.0); gradual wavy boundary." diff --git a/inst/extdata/OSD/S/SIOUX.json b/inst/extdata/OSD/S/SIOUX.json index 4fb6943ece..045db7dd60 100644 --- a/inst/extdata/OSD/S/SIOUX.json +++ b/inst/extdata/OSD/S/SIOUX.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "ABk--6 to 9 inches; very dark grayish brown (10YR 3/2) gravelly sandy loam, grayish brown (10YR 5/2) dry; weak fine granular structure; soft, very friable; common very fine roots; about 9 percent calcium carbonate equivalent; about 30 percent mixed rock fragments; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--9 to 19 inches; dark grayish brown (2.5Y 4/2) very gravelly loamy sand, light brownish gray (2.5Y 6/2) dry; single grain; loose; few very fine roots; few carbonate coats are on the undersides of pebbles in the upper part; about 13 percent calcium carbonate equivalent; about 50 percent mixed rock fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--19 to 80 inches; olive brown (2.5Y 4/3) very gravelly sand, light yellowish brown (2.5Y 6/3) dry; single grain; loose; about 11 percent calcium carbonate equivalent; about 55 percent mixed rock fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SISSETON.json b/inst/extdata/OSD/S/SISSETON.json index f6f062d8b4..e2b4cac1f3 100644 --- a/inst/extdata/OSD/S/SISSETON.json +++ b/inst/extdata/OSD/S/SISSETON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; light brownish gray (2.5Y 6/2) and pale yellow (2.5Y 7/3) loam, dark grayish brown (2.5Y 4/2) and light olive brown (2.5Y 5/4) moist; cloddy; weak fine granular structure; slightly hard, very friable; 5 percent by volume pebbles; strong effervescence (28 percent calcium carbonate equivalent); moderately alkaline; abrupt smooth boundary. (3 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--8 to 18 inches; light gray (2.5Y 7/2) loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure parting to weak fine and medium subangular blocky; slightly hard, very friable; common medium accumulations of calcium carbonate; strong effervescence (32 percent calcium carbonate equivalent); moderately alkaline; gradual wavy boundary. (8 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--18 to 36 inches; pale yellow (2.5Y 7/3) loam, light olive brown (2.5Y 5/4) moist; few fine and medium prominent mottles of yellowish red (5YR 5/8) and reddish brown (5YR 4/4) moist; weak medium subangular blocky structure; slightly hard, very friable; 5 percent by volume pebbles; few medium accumulations of calcium carbonate; strong effervescence (26 percent calcium carbonate equivalent); moderately alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/S/SKELRIDGE.json b/inst/extdata/OSD/S/SKELRIDGE.json index ffc8555cb0..24d18b3083 100644 --- a/inst/extdata/OSD/S/SKELRIDGE.json +++ b/inst/extdata/OSD/S/SKELRIDGE.json @@ -89,7 +89,7 @@ "cf_class": "very cobbly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; grayish brown (2.5Y 5/2) very cobbly sandy loam, dark grayish brown (2.5Y 4/2) moist; moderate very fine and fine granular structure; loose, very friable, nonsticky and nonplastic; many fine and very fine roots; many fine and very fine tubular pores; about 30 percent gravels and 20 percent cobbles; surface covered with about 10 percent gravels, 20 percent cobbles and 2 percent stones; very slight effervescent; carbonates disseminated; about 3 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); clear smooth boundary. (2 to 5 inches thick)" diff --git a/inst/extdata/OSD/S/SKIDOOSPRINGS.json b/inst/extdata/OSD/S/SKIDOOSPRINGS.json index 9ad46c3c8f..6b2e58fd18 100644 --- a/inst/extdata/OSD/S/SKIDOOSPRINGS.json +++ b/inst/extdata/OSD/S/SKIDOOSPRINGS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bqm--41 to 49 inches; light gray (10YR 7/2) cemented material, yellowish brown (10YR 5/4) moist; massive; laminar opal coats on upper surface over matrix indurated by opal; strongly effervescent in upper one inch, noneffervescent below; strongly alkaline (pH 8.6); abrupt wavy boundary. (1 to 12 inches thick)" diff --git a/inst/extdata/OSD/S/SLAN.json b/inst/extdata/OSD/S/SLAN.json index 35b0d468a2..05c8a60214 100644 --- a/inst/extdata/OSD/S/SLAN.json +++ b/inst/extdata/OSD/S/SLAN.json @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bt--5 to 18 inches; reddish yellow (5YR 6/6) gravelly loam, yellowish red (5YR 5/6) moist; moderate medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; common very fine and fine roots; common very fine and fine tubular pores; common faint clay films on faces of peds; 20 percent gravel; strongly effervescent (noneffervescent in areas of clay films); moderately alkaline (pH 8.0); clear wavy boundary. (11 to 14 inches thick)" diff --git a/inst/extdata/OSD/S/SLIDELL.json b/inst/extdata/OSD/S/SLIDELL.json index 43363c49d7..4a376387f9 100644 --- a/inst/extdata/OSD/S/SLIDELL.json +++ b/inst/extdata/OSD/S/SLIDELL.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--15 to 48 cm (6 to 19 in); very dark gray (10YR 3/1) clay, black (10YR 2/1) moist; few fine dark grayish brown redox concentrations in the lower part; moderate medium angular blocky structure; extremely hard, very firm; very sticky and very plastic; common fine roots; few fine pores; common pressure faces; few fine and medium concretions of calcium carbonate; slightly effervescence; moderately alkaline; gradual wavy boundary. Thickness is 15 to 64 cm (6 to 25 in)" diff --git a/inst/extdata/OSD/S/SLIMBUTTE.json b/inst/extdata/OSD/S/SLIMBUTTE.json index d5d807b4c3..b97d816040 100644 --- a/inst/extdata/OSD/S/SLIMBUTTE.json +++ b/inst/extdata/OSD/S/SLIMBUTTE.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--12 to 17 inches; grayish brown (10YR 5/2) very gravelly very fine sandy loam, dark grayish brown (2.5Y 4/2) moist; weak medium and fine subangular blocky structure; soft, very friable; common fine and medium roots; 35 percent by volume of coarse fragments and stones of sandstone; rock fragments coated with carbonate, interiors free of carbonate; strong effervescence in soil matrix; slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--17 to 24 inches; light brownish gray (2.5Y 6/2) very gravelly very fine sandy loam, grayish brown (2.5Y 5/2) moist; weak medium and fine subangular blocky structure; soft, very friable; few fine and medium roots, mainly compressed against fragments of sandstone; 40 percent by volume of coarse fragments and stones of sandstone; rock fragments are coated with carbonate; interiors free of carbonate, strong effervescence in soil matrix; slightly alkaline; clear wavy boundary. (Combined Bk horizons is 10 to 20 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--24 to 31 inches; gray (5Y 6/1) very gravelly very fine sandy loam, dark gray (5Y 4/1) moist; massive; soft, very friable; common fine and medium roots compressed against fragments of sandstone; 40 percent by volume of coarse fragments and stones of sandstone; rock fragments coated with carbonate, interiors free of carbonate; strong effervescence in soil matrix; slightly alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "irregular", "narrative": "C2--31 to 43 inches; white (5Y 8/2) very cobbly fine sandy loam, olive (5Y 5/4) moist; massive; soft, very friable; few fine and medium roots compressed against sandstone fragments; 55 percent by volume of coarse fragments and stones of sandstone; rock fragments coated with carbonate, interiors free of carbonate; strong effervescence in soil matrix; moderately alkaline; diffuse irregular boundary." diff --git a/inst/extdata/OSD/S/SLIPBACK.json b/inst/extdata/OSD/S/SLIPBACK.json index 49ab156c7c..aff06bcd74 100644 --- a/inst/extdata/OSD/S/SLIPBACK.json +++ b/inst/extdata/OSD/S/SLIPBACK.json @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bky--61 to 97 cm; yellowish brown (10YR 5/4) gravelly coarse sandy loam, brown (10YR 4/3) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and few fine tubular pores; 5 percent hard, firm, 2 to 5 mm durinodes; common fine strongly effervescent carbonate filaments; few fine soft masses of gypsum; 15 percent gravel; noneffervescent matrix; moderately alkaline (pH 8.4); gradual smooth boundary. (25 to 50 cm thick)" diff --git a/inst/extdata/OSD/S/SMILEY.json b/inst/extdata/OSD/S/SMILEY.json index 13da47f4fd..55dbe906a8 100644 --- a/inst/extdata/OSD/S/SMILEY.json +++ b/inst/extdata/OSD/S/SMILEY.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg1--48 to 61 centimeters; olive gray (5Y 4/2) clay loam; few fine prominent dark yellowish brown (10YR 4/4) redoximorphic concentrations; weak medium and coarse subangular blocky structure parting to weak very fine subangular blocky; friable; few fine irregularly shaped masses of carbonates; about 2 percent gravel; strong effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg2--61 to 89 centimeters; olive gray (5Y 4/2) clay loam; few fine prominent dark yellowish brown (10YR 4/4) redoximorphic concentrations; weak coarse prismatic structure parting to weak fine and medium subangular blocky; friable; common fine irregularly shaped masses of carbonates; about 2 percent gravel; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkg3--89 to 107 centimeters; olive gray (5Y 5/2) loam; common fine prominent dark yellowish brown (10YR 4/4) redoximorphic concentrations; weak very coarse angular blocky and weak moderately thick platy structure; friable; few fine irregularly shaped masses of carbonates; about 2 percent gravel; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bkg horizons 25 to 112 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--107 to 178 centimeters; olive gray (5Y 5/2) loam; many medium prominent olive brown (2.5Y 4/4) and few fine prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; friable; about 2 percent gravel and 1 percent cobbles; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--178 to 200 centimeters; dark grayish brown (2.5Y 4/2) loam; common fine and medium prominent light olive brown (2.5Y 5/6) and few fine prominent yellowish red (5YR 4/6) redoximorphic concentrations; massive; friable; about 2 percent gravel and 1 percent cobbles with 1 percent weathered granite fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SNEAD.json b/inst/extdata/OSD/S/SNEAD.json index d08d6cbe25..4fd04f2836 100644 --- a/inst/extdata/OSD/S/SNEAD.json +++ b/inst/extdata/OSD/S/SNEAD.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--17 to 20 inches; mottled very dark gray (10YR 3/1), olive gray (5Y 5/2), and olive (5Y 5/4) clay; weak fine subangular blocky structure; firm; few very fine roots; 5 percent fragments of limestone or white concretions; slight effervescence; moderately alkaline; clear smooth boundary. (3 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--20 to 25 inches; olive gray (5Y 5/2) silty clay; many medium faint dark gray (5Y 4/1) and many medium prominent olive brown (2.5Y 4/4) mottles; massive; firm; few very fine grass roots; 10 percent fragments of limestone; strong effervescence; moderately alkaline; abrupt smooth boundary. (4 to 18 inches thick)" diff --git a/inst/extdata/OSD/S/SNYDER.json b/inst/extdata/OSD/S/SNYDER.json index ba25b50401..9483ae5497 100644 --- a/inst/extdata/OSD/S/SNYDER.json +++ b/inst/extdata/OSD/S/SNYDER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 13 cm (0 to 5 in); brown (7.5YR 4/3) loam, dark brown (7.5YR 3/3) moist; moderate fine and medium subangular blocky structure; moderately hard, friable; many fine and few medium roots throughout; common fine and few medium tubular pores; 2 percent round indurated quartzite pebbles, strong effervescence; moderately alkaline; clear smooth boundary. (Thickness is 8 to 25 cm [3 to 10 in].)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--13 to 28 cm (5 to 11 in); brown (7.5YR 4/3) clay loam, dark brown (7.5YR 3/3) moist; moderate coarse and very coarse prismatic structure parting to strong fine and medium subangular blocky; hard, firm; many fine and few medium roots throughout; common fine and few medium tubular pores; 2 percent faint clay films on surfaces along pores and 3 percent faint clay films on all faces of peds; 3 percent fine prominent spherical insect casts throughout; 2 percent round indurated quartzite pebbles; strong effervescence; moderately alkaline; clear smooth boundary. (Thickness is 0 to 15 cm [0 to 6 in].)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--28 to 46 cm (11 to 18 in); brown (7.5YR 4/4) clay loam, dark brown (7.5YR 3/4), moist; weak medium and coarse prismatic structure parting to moderate fine and medium subangular blocky; moderately hard, friable; many fine and few medium roots throughout; common fine and few medium tubular pores; 2 percent faint clay films on surfaces along pores and 3 percent faint clay films on all faces of peds; 3 percent fine prominent spherical insect casts throughout and 3 percent very fine prominent threadlike carbonate masses with sharp boundaries on faces of peds; 2 percent round indurated quartzite pebbles; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of the Bk horizons is 48 to 165 cm [19 to 65 in].)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--46 to 107 cm (18 to 42 in); pink (7.5YR 7/3) clay loam, reddish yellow (7.5YR 6/6), moist; weak coarse and very coarse prismatic structure parting to weak fine subangular blocky; soft, friable; common fine and few medium roots throughout; few fine and medium tubular pores; 30 percent fine and 30 percent medium prominent irregular moderately cemented carbonate masses with diffuse boundaries throughout and 10 percent fine and 10 percent medium prominent spherical strongly cemented carbonate nodules with sharp boundaries throughout; 2 percent round indurated quartzite pebbles; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk1--107 to 132 cm (42 to 52 in); reddish yellow (5YR 6/6) clay loam, yellowish red (5YR 5/6), moist; moderate coarse and very coarse prismatic structure parting to moderate medium and coarse subangular blocky; hard, firm; few fine and medium roots throughout; 2 percent faint clay films on surfaces along pores and 3 percent faint clay films on all faces of peds; 2 percent fine, 2 percent medium, and 1 percent coarse prominent spherical strongly cemented carbonate nodules with sharp boundaries throughout and 15 percent coarse and 10 percent very coarse prominent irregular moderately cemented carbonate masses with sharp boundaries throughout; 2 percent round indurated quartzite pebbles; strong effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Btk horizons is 0 to 132 cm [0 to 52 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk2--132 to 183 cm (52 to 72 in); yellowish red (5YR 5/6) clay loam, yellowish red (5YR 4/6), moist; moderate coarse and very coarse prismatic structure parting to moderate medium and coarse subangular blocky; hard, firm; few fine and medium roots throughout; 15 percent distinct clay films on all faces of peds; 2 percent fine, 2 percent medium, and 1 percent coarse prominent spherical strongly cemented carbonate nodules with sharp boundaries throughout and 15 percent coarse and 10 percent very coarse prominent irregular moderately cemented carbonate masses with sharp boundaries throughout; 2 percent round indurated quartzite pebbles; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btk3--183 to 239 cm (72 to 94 in); strong brown (7.5YR 5/6) clay loam, reddish yellow (7.5YR 6/6), moist; moderate coarse and very coarse prismatic structure parting to moderate fine and medium subangular blocky; hard, firm; few fine and medium roots throughout; 15 percent distinct clay films on all faces of peds; 2 percent fine, 2 percent medium, and 1 percent coarse prominent spherical strongly cemented carbonate nodules with sharp boundaries throughout and 15 percent coarse and 5 percent very coarse prominent irregular moderately cemented carbonate masses with sharp boundaries throughout; 2 percent round indurated quartzite pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SOEN.json b/inst/extdata/OSD/S/SOEN.json index 232ff90c7c..9904559b77 100644 --- a/inst/extdata/OSD/S/SOEN.json +++ b/inst/extdata/OSD/S/SOEN.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btkq--20 to 36 inches; very pale brown (10YR 7/3) gravelly clay loam, light brownish gray (2.5Y 6/2) moist; strong fine and medium prismatic structure; slightly hard, firm, very sticky and very plastic; common very fine and few fine and medium roots; few very fine and fine tubular and common medium irregular pores; many distinct clay films on faces of peds; 15 percent gravel, 10 percent cobbles; lime and silica coatings, 1 to 2 mm thick, on undersides of coarse fragments; violently effervescent on face of prisms, strongly effervescent on inside of prisms; moderately alkaline (pH 8.0); gradual wavy boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/S/SOFIA.json b/inst/extdata/OSD/S/SOFIA.json index 1cd36c1566..e467cafa47 100644 --- a/inst/extdata/OSD/S/SOFIA.json +++ b/inst/extdata/OSD/S/SOFIA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--12 to 16 inches; brown (10YR 5/3) silty clay, dark brown (10YR 4/3) moist; weak medium prismatic structure parting to moderate medium and fine blocky; very hard, firm, very sticky and plastic; few very fine roots; common very fine and fine and few medium tubular pores; strong effervescence; moderately alkaline; clear wavy boundary. (4 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk1--16 to 22 inches; pale brown (10YR 6/3) silty clay, brown (10YR 5/3) moist; moderate medium blocky structure; very hard, firm, very sticky and plastic; few very fine and fine roots; common very fine and fine and few medium tubular pores; violent effervescence; moderately alkaline; gradual boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--22 to 40 inches; pale brown (10YR 6/3) silty clay, brown (10YR 5/3) moist; weak coarse blocky structure; very hard, firm, very sticky and plastic; few very fine and fine roots; common very fine and fine and few medium tubular pores; violent effervescence; common fine and medium masses of lime increasing with depth; moderately alkaline; clear wavy boundary. (20 to 30 inches thick)" diff --git a/inst/extdata/OSD/S/SOGN.json b/inst/extdata/OSD/S/SOGN.json index fbd9dcf8c9..9194ee5258 100644 --- a/inst/extdata/OSD/S/SOGN.json +++ b/inst/extdata/OSD/S/SOGN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 13 centimeters (0 to 5 inches); very dark gray (10YR 3/1) silty clay loam, black (10YR 2/1) moist; weak medium subangular blocky structure parting to moderate fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many fine and very fine roots; 3 percent fine and medium limestone gravel; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A2--13 to 18 centimeters (5 to 7 inches); very dark gray (10YR 3/1) very channery silty clay loam, black (10YR 2/1) moist; weak medium subangular blocky structure parting to moderate fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots and common fine roots; 40 percent limestone channers; strong effervescence; slightly alkaline; abrupt smooth boundary. (10 to 49 centimeters (4 to 20 inches) thick, A1 and A2 horizons)" diff --git a/inst/extdata/OSD/S/SOHOLT.json b/inst/extdata/OSD/S/SOHOLT.json index ffe9f9ba3a..536ae62b56 100644 --- a/inst/extdata/OSD/S/SOHOLT.json +++ b/inst/extdata/OSD/S/SOHOLT.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--10 to 30 centimeters; dark reddish gray (5YR 4/2) very gravelly loam, dark reddish brown (5YR 3/2) moist, crushed; moderate fine and medium subangular blocky structure; soft, friable; 45 percent rock fragments; calcium carbonate disseminated and as coatings on bottom of rock fragments; violent effervescence; slightly alkaline; clear wavy boundary. (10 to 30 centimeters thick)" diff --git a/inst/extdata/OSD/S/SOLEDAD.json b/inst/extdata/OSD/S/SOLEDAD.json index ef3c580efa..eac33c8079 100644 --- a/inst/extdata/OSD/S/SOLEDAD.json +++ b/inst/extdata/OSD/S/SOLEDAD.json @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "weak effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bt3--12 to 20 inches; brown (7.5YR 5/4) extremely gravelly sandy loam, brown (7.5YR 4/4) moist; weak medium subangular blocky structure; slightly hard, friable; few roots; discontinuous clay films and stains on gravel; 60 percent gravel and 5 percent cobble; generally noneffervescent with some weak effervescence in lower part; moderately alkaline; abrupt wavy boundary. (4 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--37 to 58 inches; yellowish brown (10YR 5/4) extremely gravelly loamy sand, yellowish brown (10YR 5/4) moist; massive and single grain; soft and loose; no roots; 65 percent gravel; few patchy calcium carbonate coatings on undersides of gravel; weakly effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/S/SOLOMON.json b/inst/extdata/OSD/S/SOLOMON.json index 6728caf47e..a08d01a16d 100644 --- a/inst/extdata/OSD/S/SOLOMON.json +++ b/inst/extdata/OSD/S/SOLOMON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 10 centimeters (0 to 4 inches); very dark gray (10YR 3/1) silty clay, dark gray (10YR 4/1) dry; strong fine granular structure; very hard, firm, plastic and sticky; many fine roots; strong effervescence; moderately alkaline; abrupt smooth boundary. (0 to 15 centimeters (0 to 6 inches) thick.)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--10 to 41 centimeters (4 to 16 inches); black (10YR 2/1) silty clay, very dark gray (10YR 3/1) dry; moderate fine and medium blocky structure; extremely hard, very firm, plastic and sticky; common fine tubular roots throughout; few faint discontinuous pressure faces on horizontal faces of peds; few fine calcium carbonate concretions; strong effervescence; moderately alkaline; gradual smooth boundary. (25 to 51 centimeters (10 to 20 inches) thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bg--41 to 81 centimeters (16 to 32 inches); very dark gray (10YR 3/1) silty clay, dark gray (10YR 4/1) dry; weak medium and coarse blocky structure; extremely hard, very firm, very plastic and very sticky; few faint discontinuous pressure faces on horizontal faces of peds; few fine black (N 2/0) strongly cemented iron-manganese concretions; few fine calcium carbonate concretions; strong effervescence; moderately alkaline; diffuse smooth boundary. (30 to 61 centimeters (12 to 24 inches) thick.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "BCg--81 to 127 centimeters (32 to 50 inches); mixed very dark gray (10YR 3/1) and dark gray (10YR 4/1) silty clay, dark gray (10YR 4/1) and gray (10YR 5/1) dry; weak coarse blocky structure; extremely hard, very firm, very plastic and very sticky; common fine distinct brown (10YR 5/3) irregularly shaped masses of iron accumulation with diffuse boundaries throughout; few fine black (N 2/0) strongly cemented iron-manganese concretions; many fine calcium carbonate concretions; strong effervescence; moderately alkaline; diffuse smooth boundary. (25 to 51 centimeters (10 to 20 inches) thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--127 to 200 centimeters (50 to 80 inches); dark gray (10YR 4/1) silty clay, gray (10YR 5/1) dry; massive; very hard, very firm, very plastic and very sticky; many fine distinct brown (10YR 5/3) irregularly shaped masses of iron accumulation with diffuse boundaries throughout; few fine black (N 2/0) strongly cemented iron-manganese concretions; many fine calcium carbonate concretions; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SONIC.json b/inst/extdata/OSD/S/SONIC.json index c78cba8e9e..1b1f1437c2 100644 --- a/inst/extdata/OSD/S/SONIC.json +++ b/inst/extdata/OSD/S/SONIC.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 3 inches; brown (7.5YR 5/4) crushed, very gravelly fine sandy loam, brown (7.5YR 4/4) crushed, moist; 16 percent clay; weak fine granular structure; very friable, soft, nonsticky, nonplastic; few fine roots throughout; 45 percent subrounded 0.1- to 3.0-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; abrupt wavy boundary. (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw1--3 to 11 inches; light brown (7.5YR 6/4) crushed, gravelly fine sandy loam, brown (7.5YR 5/4) crushed, moist; 18 percent clay; moderate medium subangular blocky structure; friable, slightly hard, slightly sticky, slightly plastic; few fine roots throughout; few fine dendritic tubular pores; 15 percent subrounded 0.1- to 3.0-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.3, pH meter 1:1 water; abrupt wavy boundary. (6 to 13 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw2--11 to 26 inches; light brown (7.5YR 6/4) crushed, extremely cobbly fine sandy loam, brown (7.5YR 5/4) crushed, moist; 20 percent clay; weak fine granular structure; friable, soft, nonsticky, nonplastic; few fine roots throughout; 30 percent subrounded 3.0- to 10-inch limestone fragments and 50 percent subrounded 0.1- to 3.0-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.4, pH meter 1:1 water; abrupt wavy boundary. (8 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw3--26 to 38 inches; light brown (7.5YR 6/4) crushed, gravelly silt loam, brown (7.5YR 5/4) crushed, moist; 20 percent clay; moderate medium subangular blocky structure; friable, slightly hard, slightly sticky, slightly plastic; few fine roots throughout; few fine dendritic tubular pores; 20 percent subrounded 0.1- to 3.0-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water; abrupt wavy boundary. (7 to 29 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw4--38 to 80 inches; light brown (7.5YR 6/4) crushed, extremely cobbly silt loam, brown (7.5YR 4/4) crushed, moist; 22 percent clay; weak fine granular structure; very friable, slightly hard, nonsticky, nonplastic; 30 percent subrounded 3.0- to 10-inch limestone fragments and 50 percent subrounded 0.1- to 3.0-inch limestone fragments; violent effervescence, by HCl, 1 normal; moderately alkaline, pH 8.2, pH meter 1:1 water." diff --git a/inst/extdata/OSD/S/SONTAG.json b/inst/extdata/OSD/S/SONTAG.json index fdfcd34809..aada8d8e8c 100644 --- a/inst/extdata/OSD/S/SONTAG.json +++ b/inst/extdata/OSD/S/SONTAG.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 7 inches (0 to 18 cm); brown (7.5YR 4/3) clay, brown (7.5YR 4/3) moist; strong fine and medium angular blocky structure; hard, firm, very sticky, very plastic; many fine and very fine roots; many fine and very fine irregular pores; violent effervescence; moderately alkaline (pH 8.2); gradual wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bt--7 to 48 inches (18 to 122 cm); brown (7.5YR 4/3) clay, brown (7.5YR 4/3) moist; strong medium and coarse angular blocky structure; hard, firm, very sticky, very plastic; common fine roots; many fine and very fine irregular and many very fine tubular pores; many prominent pressure faces; common discontinuous distinct clay films on all faces of peds; violent effervescence; strongly alkaline (pH 8.5); abrupt wavy boundary." diff --git a/inst/extdata/OSD/S/SOPHIA.json b/inst/extdata/OSD/S/SOPHIA.json index 4f14dbc63a..ca42a5d919 100644 --- a/inst/extdata/OSD/S/SOPHIA.json +++ b/inst/extdata/OSD/S/SOPHIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 10 cm (0 to 4 in); brown (10YR 5/3) silt loam, very dark grayish brown (10YR 3/2) rubbed, moist; moderate fine prismatic structure parting to strong fine and medium subangular blocky; extremely hard; common fine and few medium roots; common fine pores; few fine cylindrical worm casts; very slight effervescence; slightly alkaline, pH 7.5; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--10 to 28 cm (4 to 11 in); yellowish brown (10YR 5/4) silt loam, dark brown (10YR 3/3) broken face, moist; moderate medium prismatic structure parting to strong fine and medium subangular blocky; very hard; common fine and medium roots, and few very fine roots; few fine and medium pores; few fine cylindrical worm casts; very slight effervescence; slightly alkaline, pH 7.7; gradual smooth boundary. (18 to 28 cm thick; 7 to 11 in)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk1--28 to 49 cm (11 to 19 in); brown (7.5YR 5/4) silty clay loam, brown (7.5YR 4/4) broken face, moist; moderate medium prismatic structure parting to strong fine angular blocky; very hard; common fine and few very fine roots; few fine and medium pores; common fine irregular calcium carbonate masses on surfaces along root channels and few fine spherical carbonate masses throughout; few medium worm casts; strong effervescence (7 percent calcium carbonate equivalent); moderately alkaline, pH 8.0; abrupt smooth boundary. (13 to 60 cm thick; 5 to 24 in)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkk1--49 to 76 cm (19 to 30 in); pinkish white (7.5YR 8/2) silt loam, pink (7.5YR 7/3) broken face, moist; weak medium prismatic structure parting to weak fine and medium subangular blocky; extremely hard; few medium roots; finely disseminated calcium carbonate in matrix; many medium spherical calcium carbonate masses; violent effervescence (53 percent calcium carbonate equivalent); moderately alkaline, pH 8.4; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkk2--76 to 118 cm (30 to 47 in); pinkish gray (7.5YR 7/2) silt loam, light brown (7.5YR 6/4) broken face, moist; weak coarse prismatic structure parting to moderate fine and medium subangular blocky; hard; few medium roots; few discontinuous distinct calcium carbonate coats on bottom faces of peds; few fine spherical manganese masses; finely disseminated calcium carbonate in matrix; few fine spherical calcium carbonate nodules, many fine spherical calcium carbonate masses, few medium spherical calcium carbonate nodules, and many medium spherical calcium carbonate masses; violent effervescence(35 percent calcium carbonate equivalent); moderately alkaline, pH 8.4; gradual wavy boundary. (33 to 86 cm thick; 13 to 34 in)" @@ -204,7 +204,7 @@ "cf_class": "cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCkk--118 to 203 cm (47 to 80 in); pink (7.5YR 8/3) cobbly silt loam, pink (7.5YR 7/4) broken face, moist; weak coarse subangular blocky structure; very hard; few fine roots; few discontinuous faint calcium carbonate coats on bottom faces of peds; few fine spherical manganese masses; many medium and coarse spherical calcium carbonate nodules; 4 percent nonflat subangular indurated 20 to 75 mm and 18 percent nonflat subangular indurated 75 to 250 mm petrocalcic fragments; violent effervescence (72 percent calcium carbonate equivalent); moderately alkaline, pH 8.4." diff --git a/inst/extdata/OSD/S/SORUM.json b/inst/extdata/OSD/S/SORUM.json index d4e6379d38..28aec0c56b 100644 --- a/inst/extdata/OSD/S/SORUM.json +++ b/inst/extdata/OSD/S/SORUM.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btkn--18 to 25 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; very hard, friable; few roots; common medium accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (5 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--25 to 33 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable; very few roots; common fine accumulations of carbonate; strong effervescence; moderately alkaline; clear smooth boundary. (5 to 8 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--33 to 60 inches; light brownish gray (2.5Y 6/2) fine sandy loam, grayish brown (2.5Y 5/2) moist; massive; slightly hard, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SOURIS.json b/inst/extdata/OSD/S/SOURIS.json index bf01a0ee5e..3a45edab76 100644 --- a/inst/extdata/OSD/S/SOURIS.json +++ b/inst/extdata/OSD/S/SOURIS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--24 to 80 centimeters; light olive brown (2.5Y 5/4), light yellowish brown (2.5Y 6/4) dry; loam; weak coarse prismatic structure parting to moderate coarse subangular blocky; hard, firm, slightly sticky and slightly plastic; few very fine roots throughout; common fine pores; common fine irregular soft masses of carbonates; violent effervescence; few fine faint yellowish brown (10YR 5/4) and few fine prominent strong brown (7.5YR 4/6) redoximorphic concentrations in the lower part; about 5 percent pebbles; pH 8.2 (moderately alkaline); clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--80 to 130 centimeters; olive brown (2.5Y 4/3), light olive brown (2.5Y 5/3) dry; clay loam; weak very coarse subangular blocky structure; hard, firm, moderately sticky and moderately plastic; very few, very fine roots throughout; few fine pores; common fine irregular soft masses of carbonates; strong effervescence; common fine distinct gray (2.5Y 5/1) redoximorphic depletions; common fine prominent strong brown (7.5YR 4/6 and 7.5YR 5/8) and common fine faint light olive brown (2.5Y 5/4) redoximorphic concentrations; about 5 percent pebbles and 1 percent cobbles; pH 8.1 (moderately alkaline); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--130 to 160 centimeters; olive brown (2.5Y 4/3), light olive brown (2.5Y 5/3) dry; clay loam; massive; hard, firm, moderately sticky and moderately plastic; few fine pores; strong effervescence; few fine masses of gypsum; common fine faint olive gray (5Y 5/2) redoximorphic depletions; common fine prominent strong brown (7.5YR 4/6 and 7.5YR 5/8) and common fine faint light olive brown (2.5Y 5/4) redoximorphic concentrations; about 5 percent pebbles and 1 percent cobbles; pH 8.0 (moderately alkaline); gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--160 to 200 centimeters; olive brown (2.5Y 4/3), light olive brown (2.5Y 5/3) dry; clay loam; massive; hard, firm, moderately sticky and moderately plastic; strong effervescence; common fine and medium masses of gypsum; common fine prominent strong brown (7.5YR 4/6) and common fine faint light olive brown (2.5Y 5/4) redoximorphic concentrations; about 5 percent pebbles and 1 percent cobbles; pH 8.0 (moderately alkaline)." diff --git a/inst/extdata/OSD/S/SOUTHAM.json b/inst/extdata/OSD/S/SOUTHAM.json index c403c154c8..74cf1c0e84 100644 --- a/inst/extdata/OSD/S/SOUTHAM.json +++ b/inst/extdata/OSD/S/SOUTHAM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ag1--0 to 16 inches; black (5Y 2/1) silty clay loam, dark gray (5Y 4/1) dry; massive; firm, sticky and plastic; common fine snail shell fragments; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ag2--16 to 26 inches; black (5Y 2/1) silty clay, dark gray (5Y 4/1) dry; few fine prominent olive brown (2.5Y 4/4) redox concentrations; massive; firm, sticky and plastic; common fine snail shell fragments; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ag3--26 to 32 inches; black (5Y 2/1) silty clay, dark gray (5Y 4/1) dry; massive; very firm, very sticky and very plastic; few fine prominent olive brown (2.5Y 4/4) redox concentrations; common fine snail shell fragments; common fine concentrations of gypsum in nests and along planes; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ag4--32 to 40 inches; black (5Y 2/1 and 5Y 2/2) silty clay, dark gray (5Y 4/1) and olive gray (5Y 4/2) dry; massive; very firm, very sticky and very plastic; few fine prominent olive brown (2.5Y 4/4) redox concentrations; common fine snail shell fragments; common fine concentrations of gypsum in nests and along planes; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined thickness of the A horizon 24 to 60 inches)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--40 to 48 inches; very dark grayish brown (2.5Y 3/2) and dark grayish brown (2.5Y 4/2) silty clay, grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) dry; massive; very firm, very sticky and very plastic; few fine prominent yellowish red (5YR 4/6) and few fine distinct olive brown (2.5Y 4/4) redox concentrations; few fine rounded manganese concretions; common fine snail shell fragments; common fine concentrations of gypsum in nests and along planes; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg2--48 to 54 inches; grayish brown (2.5Y 5/2) silty clay, light brownish gray (2.5Y 6/2) dry; massive; very firm, very sticky and very plastic; many fine and medium distinct olive brown (2.5Y 4/4) and few medium prominent yellowish red (5YR 4/6) redox concentrations; few medium prominent threadlike light gray (N 7/0) redox depletions; common fine snail shell fragments; common fine rounded manganese concretions; common fine concentrations of gypsum in nests and along planes; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--54 to 60 inches; dark grayish brown (2.5Y 4/2) and light gray (N 7/0) silty clay, light gray (2.5Y 7/2) and white (2.5Y 8/2) dry; common medium prominent strong brown (7.5YR 5/6) and yellowish brown (10YR 5/6) redox concentrations; few fine rounded manganese concretions; massive; very firm, very sticky and very plastic; common fine snail shell fragments; common fine concentrations of gypsum in nests and along planes; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SOUTHSIDE.json b/inst/extdata/OSD/S/SOUTHSIDE.json index 8d21ae459a..4582d8fcbf 100644 --- a/inst/extdata/OSD/S/SOUTHSIDE.json +++ b/inst/extdata/OSD/S/SOUTHSIDE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 15 cm (0 to 6 in); reddish brown (5YR 5/4), sandy loam, reddish brown (5YR 4/4), moist; weak fine granular structure; hard, friable; common fine roots; common fine pores; 8 percent rounded siliceous gravel; very slight effervescence; moderately alkaline; clear smooth boundary. Thickness is 13 to 46 cm (5 to 18 in)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--15 to 71 cm (6 to 28 in); yellowish red (5YR 5/6), gravelly loamy sand, yellowish red (5YR 4/6), moist; massive; soft, loose; few fine roots; common fine pores; 34 percent rounded siliceous gravel with thin strata containing up to 60 percent gravel; strong effervescence; moderately alkaline; clear smooth boundary. Thickness is 15 to 76 cm (6 to 30 in)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--71 to 203 cm (28 to 80 in); reddish yellow (7.5YR 7/6), sand, reddish yellow (7.5YR 6/6), moist; massive; loose, loose; very few fine roots; few fine pores; 5 percent rounded siliceous gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SPEARFISH.json b/inst/extdata/OSD/S/SPEARFISH.json index 0323d65f52..3074f3edfc 100644 --- a/inst/extdata/OSD/S/SPEARFISH.json +++ b/inst/extdata/OSD/S/SPEARFISH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; reddish brown (5YR 4/3) loam, dark reddish brown (5YR 3/3) moist; weak fine granular structure; soft, very friable; many fine roots; slight effervescence; slightly alkaline; clear smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--3 to 8 inches; reddish brown (5YR 5/4) loam, reddish brown (5YR 4/4) moist; weak fine subangular blocky structure; soft, very friable; many fine roots; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 5 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--8 to 16 inches; yellowish red (5YR 5/6) loam, dark red (2.5YR 3/6) moist; massive; soft, very friable; few fine roots; common soft fragments of siltstone; common fine crystals of gypsum; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--16 to 60 inches; reddish yellow (5YR 6/6) siltstone, reddish brown (5YR 5/4) moist; common thin layers and nests of gypsum between bedding planes; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/S/SPEARVILLE.json b/inst/extdata/OSD/S/SPEARVILLE.json index ca829aa96c..1eb23ae224 100644 --- a/inst/extdata/OSD/S/SPEARVILLE.json +++ b/inst/extdata/OSD/S/SPEARVILLE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk1--51 to 66 centimeters (20 to 26 inches); light brownish gray (10YR 6/2) heavy silty clay loam, brown (10YR 5/3) moist; moderate coarse blocky structure; hard, friable; common fine soft bodies of calcium carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (10 to 30 centimeters (4 to 12 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "Bk2--66 to 102 centimeters (26 to 40 inches); pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; weak coarse subangular blocky structure; slightly hard, friable; few soft bodies of calcium carbonate; strong effervescence; moderately alkaline; diffuse smooth boundary. (0 to 25 centimeters (0 to 10 inches) thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--102 to 152 centimeters (40 to 60 inches); pale brown (10YR 6/3) heavy silt loam, brown (10YR 5/3) moist; weak coarse prismatic structure; slightly hard, friable; fine threads and coatings of calcium carbonate on faces of peds; strong effervescence; moderately alkaline" diff --git a/inst/extdata/OSD/S/SPILLCO.json b/inst/extdata/OSD/S/SPILLCO.json index 8499914a5c..31daa0e447 100644 --- a/inst/extdata/OSD/S/SPILLCO.json +++ b/inst/extdata/OSD/S/SPILLCO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A3--58 to 71 centimeters (23 to 28 inches); very dark gray (10YR 3/1) loam, dark gray (10YR 4/1) dry; weak medium subangular blocky structure parting to weak fine subangular blocky; friable; few worm castings; strong effervescence; slightly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A4--71 to 97 centimeters (28 to 38 inches); very dark gray (10YR 3/1) loam, dark gray (10YR 4/1) dry; weak medium subangular blocky structure parting to weak fine subangular blocky; friable; few worm castings; few small snail shells; strong effervescence; moderately alkaline; gradual smooth boundary. [Combined thickness of the A horizons is 76 to 122 centimeters (30 to 48 inches)]" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--97 to 127 centimeters (38 to 50 inches); very dark gray (10YR 3/1) loam; weak medium prismatic and subangular blocky structure; friable; strong effervescence; moderately alkaline; gradual smooth boundary. [0 to 30 centimeters (0 to 12 inches) thick]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--127 to 152 centimeters (50 to 60 inches); very dark grayish brown (10YR 3/2) loam; massive with vertical parting; friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SPORLEY.json b/inst/extdata/OSD/S/SPORLEY.json index 26076c43bb..f67b08a0d3 100644 --- a/inst/extdata/OSD/S/SPORLEY.json +++ b/inst/extdata/OSD/S/SPORLEY.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--45 to 80 inches; stratified reddish brown (5YR 5/3) silt, reddish brown (5YR 5/4) silt loam, and dark reddish brown (2.5YR 3/4) silty clay; massive with weak thin plates inherent from deposition; firm; few very fine vesicular pores; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SPOTTEDHORSE.json b/inst/extdata/OSD/S/SPOTTEDHORSE.json index 109d0c3cdd..91eac42168 100644 --- a/inst/extdata/OSD/S/SPOTTEDHORSE.json +++ b/inst/extdata/OSD/S/SPOTTEDHORSE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--35 to 60 inches; soft shale; slightly effervescent in the upper 9 inches and noneffervescent below." diff --git a/inst/extdata/OSD/S/SPRAUER.json b/inst/extdata/OSD/S/SPRAUER.json index 8119779dc0..078c93adb5 100644 --- a/inst/extdata/OSD/S/SPRAUER.json +++ b/inst/extdata/OSD/S/SPRAUER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--22 to 30 inches; brown (10YR 5/3) ashy fine sandy loam, dark brown (10YR 3/3) moist; moderate coarse and medium subangular blocky structure; slightly hard, friable, nonsticky and nonplastic; common very fine roots; common very fine tubular and common very fine and few fine irregular pores; 20 percent sand-size ash, 0.5 to 2.0 mm.in diameter and 5 percent duripan fragments, 2 to 75 mm. in diameter; disseminated carbonates and few fine filaments of calcium carbonate in pores, violently effervescence; 7 percent calcium carbonate equivalent; moderately alkaline (pH 8.0); abrupt wavy boundary. (0 to 15 inches thick)" diff --git a/inst/extdata/OSD/S/SPRINGCOVE.json b/inst/extdata/OSD/S/SPRINGCOVE.json index c03239a90b..de2b3a97c3 100644 --- a/inst/extdata/OSD/S/SPRINGCOVE.json +++ b/inst/extdata/OSD/S/SPRINGCOVE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btnz2--11 to 22 inches; gray (10YR 5/1) silty clay, very dark grayish brown (10YR 3/2) moist; strong very fine, fine and medium subangular blocky structure; hard, firm, sticky and plastic; common fine and very fine, and few medium roots; common very fine and fine tubular and common very fine irregular pores; few faint clay films on faces of peds and lining pores; slight effervescence (about 5 percent calcium carbonate equivalent); about 5 percent salt crystals; electrical conductivity is 4 mmhos/cm; very strongly alkaline (pH 10.5); clear wavy boundary. (6 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btnz3--22 to 32 inches; grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; strong very fine, fine and medium prismatic structure; very hard, firm, sticky and plastic; common fine and very fine, and few medium roots; common very fine and few fine tubular pores; few faint clay films on faces of peds and lining pores; slight effervescence (about 5 percent calcium carbonate equivalent); about 5 percent salt crystals; electrical conductivity is 5.8 mmohs/cm; very strongly alkaline (pH 10.2); gradual smooth boundary. (6 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bn1--32 to 38 inches; light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; thin lens of coarse sand (less than 1 inch thick); moderate fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and fine roots; common very fine and few fine and medium tubular pores; slight effervescence (about 5 percent calcium carbonate equivalent); electrical conductivity is 3.2 mmohs/cm; very strongly alkaline (pH 9.6); clear wavy boundary. (7 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bn2--38 to 45 inches; light brownish gray (10YR 6/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and few fine roots; common very fine and few fine and medium tubular pores; slight effervescence (about 5 percent calcium carbonate equivalent); electrical conductivity is 2.6 mmohs/cm; very strongly alkaline (pH 9.4); clear wavy boundary. (7 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 9.3, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bn3--45 to 60 inches; light brownish gray (10YR 6/2) silt loam, dark brown (10YR 3/3) moist; moderate very fine, fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine and fine roots; common very fine and few fine and medium tubular pores; few manganese stains; slight effervescence (about 5 percent calcium carbonate equivalent); electrical conductivity is 3.1 mmohs/cm; very strongly alkaline (pH 9.3)." diff --git a/inst/extdata/OSD/S/SPRINGCREEK.json b/inst/extdata/OSD/S/SPRINGCREEK.json index 2c3a2b0a85..3968596e2a 100644 --- a/inst/extdata/OSD/S/SPRINGCREEK.json +++ b/inst/extdata/OSD/S/SPRINGCREEK.json @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violentlyeffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--18 to 30 inches; light yellowish brown (10YR 6/4) gravelly clay loam, yellowish brown (10YR 5/4) moist; moderate fine subangular blocky structure; hard, friable; few fine roots; 25 percent limestone pebbles coated with hardened calcium carbonate up to 3/4 inch thick; 5 to 10 percent calcium carbonate concretions; violentlyeffervescent; moderately alkaline; abrupt wavy boundary. (the Bk horizon is 15 to 30 inches thick)" diff --git a/inst/extdata/OSD/S/SPURLOCK.json b/inst/extdata/OSD/S/SPURLOCK.json index 87d28476b5..32bb746801 100644 --- a/inst/extdata/OSD/S/SPURLOCK.json +++ b/inst/extdata/OSD/S/SPURLOCK.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BCk--81 to 152 cm (32 to 60 in); pink (7.5YR 7/4), strong brown (7.5YR 5/6), moist; clay loam; weak coarse subangular blocky structure; hard, friable; few fine pores; 35 percent carbonate coats; 13 percent threadlike carbonate masses and 10 percent carbonate masses; fragments; violent effervescence; moderately alkaline, pH 8.0; clear smooth boundary. (28 to 97 cm [11 to 38 in] thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ck--152 to 213 cm (60 to 84 in); light brown (7.5YR 6/4), brown (7.5YR 5/4), moist; clay loam; structureless massive; hard, friable; few fine pores; 15 percent carbonate coats; 1 percent threadlike carbonate masses and 1 percent fine weakly coherent cemented carbonate masses; fragments; violent effervescence; moderately alkaline, pH 8.0." diff --git a/inst/extdata/OSD/S/SQUARE_BUTTE.json b/inst/extdata/OSD/S/SQUARE_BUTTE.json index ff2154cdbf..6d0e726e05 100644 --- a/inst/extdata/OSD/S/SQUARE_BUTTE.json +++ b/inst/extdata/OSD/S/SQUARE_BUTTE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C/B--46 to 104 centimeters; light olive brown (2.5Y5/3) clay loam, olive brown (2.5Y 4/3) moist; 1 percent fine prominent irregular dark yellowish brown (10YR 4/6) relict concentrations; moderate medium and coarse cloddy structure; friable, moderately hard; moderately sticky and moderately plastic; common very fine and fine roots throughout; few very fine low-continuity tubular pores; strong effervescence; 5% soft masses of lime from original Bk horizon; abrupt smooth boundary. (2C/B horizon 38 to 114 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--104 to 203 centimeters; dark grayish brown (2.5Y 4/2) clay loam, light olive brown (2.5Y 5/3) moist; 1 percent fine prominent irregular yellowish brown (10YR 5/6) relict concentrations; massive; firm, hard; moderately sticky and moderately plastic; few very fine roots in cracks; slight effervescence; 3% lignite fragments." diff --git a/inst/extdata/OSD/S/ST._ONGE.json b/inst/extdata/OSD/S/ST._ONGE.json index 77fd18ce44..e5451b129d 100644 --- a/inst/extdata/OSD/S/ST._ONGE.json +++ b/inst/extdata/OSD/S/ST._ONGE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; weak very fine and fine granular structure; hard, friable; strong effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--7 to 17 inches; very dark grayish brown (10YR 3/2) silt loam, black (10YR 2/1) moist; weak coarse and medium subangular blocky structure; hard, friable; strong effervescence; slightly alkaline; clear wavy boundary. (Combined A horizons is 10 to 25 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--17 to 24 inches; dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; weak medium prismatic structure parting to weak medium and coarse subangular blocky structure; hard, friable; few fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary. (0 to 15 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--24 to 32 inches; brown (7.5YR 5/4) loam, dark brown (7.5YR 4/4) moist; weak medium prismatic structure; hard, friable; common fine accumulations of carbonates; strong effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--32 to 42 inches; light brown (7.5YR 6/4) loam, dark brown (7.5YR 4/4) moist; massive; hard, friable; many fine accumulations of carbonate; violent effervescence; slightly alkaline; gradual wavy boundary. (Combined Bk horizons is 10 to 25 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--42 to 52 inches; brown (7.5YR 5/4) fine sandy loam, dark brown (7.5YR 4/4) moist; massive; soft, very friable; common fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--52 to 60 inches; brown (10YR 5/3) silt loam, dark brown (10YR 4/3) moist; massive; hard, friable; many fine accumulations of carbonate; violent effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/S/STADY.json b/inst/extdata/OSD/S/STADY.json index 675b1bebc6..2db1e54d12 100644 --- a/inst/extdata/OSD/S/STADY.json +++ b/inst/extdata/OSD/S/STADY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--15 to 18 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic and moderate coarse and medium subangular blocky structure; friable; few roots; disseminated carbonates throughout; strong effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--18 to 29 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic and weak coarse subangular blocky structure; friable; few roots; few stones; common carbonate masses; violent effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 3 to 25 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk3--29 to 42 inches; light brownish gray (2.5Y 6/2) sand and gravel, grayish brown (2.5Y 5/2) moist; single grain; loose; thin carbonate crusts coat bottom of all pebbles; violent effervescence; moderately alkaline, gradual boundary. (0 to 40 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--42 to 60 inches; light yellowish brown (10YR 6/4) sand and gravel, dark yellowish brown (10YR 4/4) moist; single grain; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/STEALTH.json b/inst/extdata/OSD/S/STEALTH.json index 6c891ceeb0..347455d6d6 100644 --- a/inst/extdata/OSD/S/STEALTH.json +++ b/inst/extdata/OSD/S/STEALTH.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; reddish yellow (7.5YR 6/6) crushed, loamy fine sand, strong brown (7.5YR 4/6)crushed, moist; 10 percent clay; single grain; nonsticky, nonplastic; common very fine roots throughout; very slight effervescence, by HCl, 1 normal; moderately alkaline; clear smooth boundary. (3 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--6 to 21 inches; reddish yellow (7.5YR 6/6) crushed, loamy fine sand, brown (7.5YR 4/4) crushed, moist; 10 percent clay; weak medium subangular blocky structure; nonsticky, nonplastic; common very fine roots throughout; strong effervescence, by HCl, 1 normal; moderately alkaline; clear smooth boundary. (11 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt--21 to 30 inches; reddish yellow (7.5YR 6/6) crushed, fine sandy loam, brown (7.5YR 4/4) crushed, moist; 15 percent clay; weak medium subangular blocky structure; nonsticky, nonplastic; common fine roots throughout; 35 percent clay bridging between sand grains; strong effervescence, by HCl, 1 normal; moderately alkaline; clear smooth boundary. (6 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk1--30 to 46 inches; pink (7.5YR 7/4) crushed, loam, reddish yellow (7.5YR 6/6) crushed, moist; 18 percent clay; weak medium subangular blocky structure; slightly sticky, slightly plastic; common very fine roots throughout; 40 percent coarse irregular carbonate masses; violent effervescence, by HCl, 1 normal; moderately alkaline; clear smooth boundary. (10 to 40 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Bk2--46 to 80 inches; light brown (7.5YR 6/4) crushed, sandy loam, strong brown (7.5YR 5/6) crushed, moist; 18 percent clay; weak medium subangular blocky structure; slightly sticky, slightly plastic; few very fine roots throughout; 10 percent medium irregular carbonate masses; violent effervescence, by HCl, 1 normal; moderately alkaline." diff --git a/inst/extdata/OSD/S/STEERSTOMPED.json b/inst/extdata/OSD/S/STEERSTOMPED.json index 1d52c44761..93c9b02d4c 100644 --- a/inst/extdata/OSD/S/STEERSTOMPED.json +++ b/inst/extdata/OSD/S/STEERSTOMPED.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A1--0 to 3 cm; light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; weak very fine subangular blocky structure; soft, very friable, moderately sticky and moderately plastic; common fine and many very fine roots; few very fine interstitial pores; violent effervescence; very strongly alkaline (pH 9.2); clear wavy boundary. (3 to 13 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--3 to 25 cm; light brownish gray (10YR 6/2) sandy loam, dark grayish brown (10YR 4/2) moist; weak fine and medium subangular blocky structure; soft, very friable, slightly sticky and nonplastic; common very fine and fine roots; common very fine and fine interstitial and few very fine and fine tubular pores; 2 percent gravel; violent effervescence; strongly alkaline (pH 9.0); clear wavy boundary. (0 to 25 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--25 to 64 cm; light brownish gray (10YR 6/2) sandy loam, dark grayish brown (10YR 4/2) moist; weak fine subangular blocky structure; soft, very friable, slightly sticky and nonplastic; few fine and common very fine roots; few very fine and fine tubular and common very fine and fine interstitial pores; 5 percent gravel; violent effervescence; strongly alkaline (pH 8.5); clear wavy boundary. (25 to 40 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--64 to 89 cm; light yellowish brown (2.5Y 6/4) sandy loam, light olive brown (2.5Y 5/4) moist; weak fine subangular blocky structure; soft, very friable, slightly sticky and nonplastic; few very fine and fine roots; few very fine and fine tubular and few very fine and fine interstitial pores; 10 percent yellowish brown (10YR 5/4), moist, masses of oxidized iron in the matrix; strong effervescence; moderately alkaline (pH 8.4); clear wavy boundary. (20 to 30 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--89 to 114 cm; light yellowish brown (2.5Y 6/4) sandy loam, olive brown (2.5Y 4/4) moist; weak fine subangular blocky structure; soft, very friable, nonsticky and nonplastic; few very fine interstitial pores; 10 percent yellowish brown (10YR 5/4), moist, masses of oxidized iron in the matrix; 10 percent gravel; slight effervescence; moderately alkaline (pH 8.2); abrupt smooth boundary. (13 to 38 cm thick)" diff --git a/inst/extdata/OSD/S/STEINAUER.json b/inst/extdata/OSD/S/STEINAUER.json index 4aa28fd744..eeba1727c9 100644 --- a/inst/extdata/OSD/S/STEINAUER.json +++ b/inst/extdata/OSD/S/STEINAUER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 15 centimeters; dark grayish brown (10YR 4/2) clay loam, grayish brown (10YR 5/2) dry; weak medium subangular blocky structure parting to weak medium granular; slightly hard, friable; common fine and medium roots; common fine and medium tubular pores; slight effervescence; slightly alkaline; abrupt smooth boundary. (10 to 18 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--15 to 38 centimeters; gray (10YR 5/1) clay loam, gray (10YR 6/1) dry; weak and medium coarse subangular blocky structure parting to moderately fine subangular blocky; hard, firm; common fine and medium roots; common fine and medium tubular pores; violent effervescence; moderately alkaline; clear smooth boundary. (0 to 36 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "C1--38 to 104 centimeters; grayish brown (10YR 5/2) clay loam, light brownish gray (10YR 6/2) dry; massive with common medium or strong angular planes of cleavage; hard, firm; few fine roots and tubular pores; many iron and manganese concretions; many fine and medium pockets or seams of soft lime; violent effervescence; many coarse prominent reddish brown (5YR 4/4) iron masses in the matrix are relict redox features; moderately alkaline; diffuse smooth boundary. (51 to 76 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--104 to 152 centimeters; yellowish brown (10YR 5/4) clay loam, light yellowish brown (10YR 6/4) dry; massive with many medium angular planes of cleavage; hard, firm; few fine roots and tubular pores; many iron and manganese concretions; common medium pockets or seams of soft lime; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/STICKNEY.json b/inst/extdata/OSD/S/STICKNEY.json index 633f7b563f..ce5100f6e0 100644 --- a/inst/extdata/OSD/S/STICKNEY.json +++ b/inst/extdata/OSD/S/STICKNEY.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--34 to 47 inches; light yellowish brown (2.5Y 6/3) and light gray (2.5Y 7/1) clay loam, light olive brown (2.5Y 5/3) and light yellowish brown (2.5Y 6/3) moist; few fine prominent strong brown (7.5YR 5/6) redox concentrations; weak coarse blocky structure; hard, friable, sticky and plastic; few very fine concretions (iron and manganese oxides); common fine nests of gypsum and other salts; many fine accumulations of carbonate; strong effervescence; strongly alkaline; gradual wavy boundary. (0 to 25 inches thick)" @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--47 to 60 inches; light yellowish brown (2.5Y 6/3) and light gray (2.5Y 7/1) clay loam, light olive brown (2.5Y 5/3) and light yellowish brown (2.5Y 6/3) moist; massive; hard, friable, sticky and plastic; few fine nests of gypsum and other salts; common fine accumulations of carbonate; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/S/STILL_LAKE.json b/inst/extdata/OSD/S/STILL_LAKE.json index 99a5dd99c2..b1fc4f9673 100644 --- a/inst/extdata/OSD/S/STILL_LAKE.json +++ b/inst/extdata/OSD/S/STILL_LAKE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--58 to 94 centimeters (23 to 37 inches); olive brown (2.5Y 4/4) silt loam, light yellowish brown (2.5Y 6/4) dry; moderate medium and coarse prismatic structure; slightly hard, friable; 5 percent worm casts and worm holes; few fine and common very fine roots; common very fine pores; 15 percent calcium carbonate equivalent; common fine and medium carbonate masses; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--94 to 137 centimeters (37 to 54 inches); olive brown (2.5Y 4/3) silt loam, light yellowish brown (2.5Y 6/3) dry; few fine prominent gray (10YR 6/1) redoximorphic depletions; moderate medium and coarse prismatic structure; slightly hard, friable; few fine and common very fine roots; common very fine pores; 17 percent calcium carbonate equivalent; common fine and medium accumulations of calcium carbonate; violent effervescence; moderately alkaline; clear wavy boundary. [Combined thickness of the Bk horizon 25 to 114 centimeters (10 to 45 inches)]" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk3--137 to 178 centimeters (54 to 70 inches); light olive brown (2.5Y 5/4) clay loam, light yellowish brown (2.5Y 6/4) dry; common fine and medium prominent gray (10YR 6/1) redoximorphic depletions and few fine distinct yellowish brown (10YR5/4) redoximorphic concentrations; weak coarse prismatic structure; hard, firm, slightly sticky and slightly plastic; few very fine roots; few very fine pores; 18 percent calcium carbonate equivalent; 5 percent gravel; common fine and medium carbonate masses; violent effervescence; moderately alkaline; gradual wavy boundary. [2Bk horizon thickness is 15 to 64 centimeters (6 to 25 inches)]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--178 to 203 centimeters (70 to 80 inches); olive brown (2.5Y 4/4) clay loam, light yellowish brown (2.5Y 6/4) dry; common fine and medium distinct gray (10YR 6/1) redoximorphic depletions and common fine and medium distinct yellowish brown (10YR 5/4) redoximorphic concentrations; massive; hard, firm, slightly sticky and slightly plastic; 14 percent calcium carbonate equivalent; 5 percent gravel; few fine accumulations of calcium carbonate; strong effervescence; moderately alkaline;" diff --git a/inst/extdata/OSD/S/STIRK.json b/inst/extdata/OSD/S/STIRK.json index 44ed099005..5a7ba40348 100644 --- a/inst/extdata/OSD/S/STIRK.json +++ b/inst/extdata/OSD/S/STIRK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 1 inch; light gray (10YR 7/1) clay, light brownish gray (10YR 6/2) moist; smooth platy crust on surface, weak fine subangular blocky structure parting to weak fine granular in lower part; hard, friable, sticky and plastic; strong effervescence; moderately alkaline; abrupt smooth boundary. (0 to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC--1 to 7 inches; gray (10YR 5/1) and light brownish gray (10YR 6/2) clay, dark gray (10YR 4/1) and dark grayish brown (10YR 4/2) crushing to grayish brown (10YR 5/2) moist; weak medium and coarse prismatic structure parting to weak coarse through fine subangular blocky; extremely hard, extremely firm, very sticky and very plastic; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--7 to 60 inches; light gray (2.5Y 7/2) clay, light brownish gray (2.5Y 6/2) moist; weak coarse prismatic structure parting to weak coarse subangular blocky in upper 20 inches and massive below; extremely hard, extremely firm, very sticky and very plastic; stratified with thin lenses of coarser materials; few fine accumulations of salts; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/STIRUM.json b/inst/extdata/OSD/S/STIRUM.json index b0ccf4491e..fe9f7b9f73 100644 --- a/inst/extdata/OSD/S/STIRUM.json +++ b/inst/extdata/OSD/S/STIRUM.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) fine sandy loam, dark gray (10YR 4/1) dry; weak fine and medium subangular blocky structure; very friable; slight effervescence; moderately alkaline; abrupt smooth boundary. (Combined A horizons 3 to 13 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btn--7 to 15 inches; dark grayish brown (10YR 4/2) fine sandy loam, gray (10YR 5/1) dry; strong coarse columnar structure parting to moderate fine and medium angular blocky; very hard, firm, slightly sticky and plastic; very dark grayish brown (10YR 3/2) clay films on faces of peds; slight effervescence; strongly alkaline; gradual wavy boundary. (4 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--15 to 26 inches; light brownish gray (2.5Y 6/2) loam, light gray (2.5Y 7/2) dry; common fine prominent yellowish brown (10YR 5/4) redoximorphic concentrations; strong very coarse prismatic structure parting to weak fine and medium angular blocky; very hard, firm, plastic; strong effervescence; very strongly alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bg--26 to 34 inches; olive gray (5Y 5/2) very fine sandy loam, light gray (5Y 7/2) dry; common medium prominent yellowish brown (10YR 5/4) and many medium very dark grayish brown (10YR 3/2) redoximorphic concentrations; weak subangular blocky structure; very friable, slightly sticky; slight effervescence; strongly alkaline; clear wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg--34 to 44 inches; light olive gray (5Y 6/2) silt loam, light gray (5Y 7/2) dry; many medium prominent dark brown (7.5YR 4/4) and many coarse very dark grayish brown (10YR 3/2) redoximorphic concentrations; weak fine angular blocky structure; slightly plastic; strong effervescence; strongly alkaline; clear wavy boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/S/STOCKBRIDGE.json b/inst/extdata/OSD/S/STOCKBRIDGE.json index 83576c1e5f..12328e0e43 100644 --- a/inst/extdata/OSD/S/STOCKBRIDGE.json +++ b/inst/extdata/OSD/S/STOCKBRIDGE.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--42 to 48 inches; olive (5Y 4/3) gravelly loam; weak thick platy structure; firm; few brown (10YR 4/3) and light gray (10YR 7/1) streaks from weathered and partially weathered limestone and quartzite fragments; 15 percent gravel and 2 percent cobbles; slight effervescence; slightly alkaline; gradual wavy boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--48 to 65 inches; olive (5Y 4/3) gravelly loam; weak thick platy structure; firm; few brown (10YR 4/3) and light gray (10YR 7/1) streaks from weathered and partially weathered limestone and quartzite fragments; 15 percent gravel and 2 percent cobbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/STORLA.json b/inst/extdata/OSD/S/STORLA.json index 2d1d411236..f9f262bb32 100644 --- a/inst/extdata/OSD/S/STORLA.json +++ b/inst/extdata/OSD/S/STORLA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; black (10YR 2/1) loam, very dark gray (10YR 3/1) dry; weak fine subangular blocky structure; slightly hard, friable; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--6 to 10 inches; black (10YR 2/1) loam, very dark gray (10YR 3/1) dry; weak medium and fine subangular blocky structure; slightly hard, friable; slight effervescence; moderately alkaline; clear wavy boundary. (Combined A horizons 6 to 11 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--10 to 14 inches; black (10YR 2/1) and very dark grayish brown (2.5Y 3/2) loam, very dark gray (10YR 3/1) and olive brown (2.5Y 4/3) dry; weak coarse subangular blocky structure parting to weak medium and fine subangular blocky; slightly hard, friable; common fine accumulations of carbonate; many fine pores; strong effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--14 to 22 inches; light olive brown (2.5Y 5/3) and dark grayish brown (2.5Y 4/2) loam, light yellowish brown (2.5Y 6/3) and grayish brown (2.5Y 5/2) dry; few fine distinct yellowish brown (10YR 5/6) redox concentrations; weak coarse subangular blocky structure parting to weak fine subangular blocky; slightly hard, friable; many fine and medium accumulations of carbonate; many fine pores; common worm casts; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 9 to 23 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz--22 to 31 inches; light olive brown (2.5Y 5/4) loam, light yellowish brown (2.5Y 6/3) dry; common fine distinct yellowish brown (10YR 5/6) redox and very dark brown (10YR 2/2) redox concentrations; weak coarse subangular blocky structure; slightly hard, friable; few fine nests of salts; few fine concretions (Fe and Mn oxides); many medium accumulations of carbonate; few pebbles; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--31 to 36 inches; light olive brown (2.5Y 5/4) and dark yellowish brown (10YR 4/4) loamy sand, light yellowish brown (2.5Y 6/3) and yellowish brown (10YR 5/4) dry; many fine distinct strong brown (2.5Y 5/6) and very dark brown (10YR 2/2) redox concentrations; single grained; loose; common fine dark concretions (iron and manganese oxides); few medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--36 to 60 inches; light olive brown (2.5Y 5/4) and dark yellowish brown (10YR 4/4) gravelly sand, light yellowish brown (2.5Y 6/3) and yellowish brown (10YR 5/4) dry; single grained; loose; common fine concretions (iron and manganese oxides); strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/STRAHAN.json b/inst/extdata/OSD/S/STRAHAN.json index bf3c78c5bf..ec629f4c66 100644 --- a/inst/extdata/OSD/S/STRAHAN.json +++ b/inst/extdata/OSD/S/STRAHAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--39 to 60 inches; mottled grayish brown (10YR 5/2) and yellowish brown (10YR 5/6) silt loam; massive; very friable; few nodules high in iron (pipestems), few dark stains, and few soft calcium carbonate accumulations; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/S/STRAYHOSS.json b/inst/extdata/OSD/S/STRAYHOSS.json index d279a39428..a55526d51a 100644 --- a/inst/extdata/OSD/S/STRAYHOSS.json +++ b/inst/extdata/OSD/S/STRAYHOSS.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--30 to 36 inches; light olive brown (2.5Y 5/4) loam, olive brown (2.5Y 4/4) moist; weak medium subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; few fine and common very fine pores; common medium accumulations of calcium carbonate; violent effervescence; moderately alkaline; clear wavy boundary. (6 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--36 to 42 inches; pale yellow (2.5Y 7/4) loamy sand stratified with thin lenses of sandy loam, light olive brown (2.5Y 5/4) moist; massive; soft, very friable; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--42 to 60 inches; light gray (2.5Y 7/2) loamy sand stratified with thin lenses of sandy loam, light olive brown (2.5Y 5/4) moist; single grain; loose; moderately alkaline; strong effervescence." diff --git a/inst/extdata/OSD/S/STROM.json b/inst/extdata/OSD/S/STROM.json index ae553a87f1..1d0ee1cc36 100644 --- a/inst/extdata/OSD/S/STROM.json +++ b/inst/extdata/OSD/S/STROM.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "B3ca--33 to 41 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; moderate medium and coarse prismatic structure parting to moderate medium and coarse subangular blocky; very hard, firm, slightly sticky and slightly plastic; common very fine and fine roots; common fine and medium tubular pores; lime segregated in fine filaments; weakly effervescent; moderately alkaline (pH 8.2); clear smooth boundary. (7 to 9 inches thick)" diff --git a/inst/extdata/OSD/S/SUEPERT.json b/inst/extdata/OSD/S/SUEPERT.json index 5a360b781b..1bb13ec4ea 100644 --- a/inst/extdata/OSD/S/SUEPERT.json +++ b/inst/extdata/OSD/S/SUEPERT.json @@ -158,7 +158,7 @@ "cf_class": "very cobbly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkqm--32 to 48 inches; white (10YR 8/2) very cobbly indurated duripan, very pale brown (10YR 7/3) moist; massive; extremely hard, extremely firm; thin (1/16 to 1/8 inch thick) continuous, fractured laminar opal cap; fractures are 1/4 to 1 inch wide and more than 10 inches apart; violent effervescence; gradual wavy boundary. (14 to 28 inches thick)" diff --git a/inst/extdata/OSD/S/SUGAR.json b/inst/extdata/OSD/S/SUGAR.json index 9ea223e0d1..44160ce10a 100644 --- a/inst/extdata/OSD/S/SUGAR.json +++ b/inst/extdata/OSD/S/SUGAR.json @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--46 to 80 inches; reddish brown (5YR 4/4) clay; with thin light reddish brown (5YR 6/3) silt loam bands; moderate fine angular blocky fragments; firm; many fine vesicular pores; common thin pinkish gray (7.5YR 7/2) silt coatings on horizontal faces of peds; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SULLY.json b/inst/extdata/OSD/S/SULLY.json index b88e2046c0..e8f22eae0c 100644 --- a/inst/extdata/OSD/S/SULLY.json +++ b/inst/extdata/OSD/S/SULLY.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--8 to 51 centimeters (3 to 20 inches); light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak coarse prismatic structure; slightly hard, very friable; few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 51 centimeters (0 to 20 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--51 to 152 centimeters (20 to 60 inches); light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, very friable; common very fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SUNRAY.json b/inst/extdata/OSD/S/SUNRAY.json index a8be25e298..1f17ec294f 100644 --- a/inst/extdata/OSD/S/SUNRAY.json +++ b/inst/extdata/OSD/S/SUNRAY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk3--114 to 132 cm (45 to 52 in); reddish yellow (7.5YR 6/6), strong brown (7.5YR 5/6), moist; clay loam; weak fine subangular blocky structure; hard, friable; common fine pores; few clay films; few carbonate coats; few fine threadlike weakly coherent carbonate nodules; violently effervescence; moderately alkaline, pH 8.4; gradual smooth boundary. Combined thickness of the lower Btk horizons is 43 to 170 cm [17 to 67 in])" diff --git a/inst/extdata/OSD/S/SUSIE_CREEK.json b/inst/extdata/OSD/S/SUSIE_CREEK.json index ceccd90db0..9b177690fd 100644 --- a/inst/extdata/OSD/S/SUSIE_CREEK.json +++ b/inst/extdata/OSD/S/SUSIE_CREEK.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Bqkm2--101 to 145 cm; light gray (10YR 7/2) coarse sandy loam that is weakly silica-cemented, brown (10YR 5/3) moist; massive; hard, firm, nonsticky and nonplastic; very few very fine roots; very few fine tubular pores; slightly effervescent but strongly effervescent in fine irregular seams; moderately alkaline (pH 8.2); clear smooth boundary. (0 to 50 cm thick)" diff --git a/inst/extdata/OSD/S/SUTLEY.json b/inst/extdata/OSD/S/SUTLEY.json index f3fc8e3bc7..b08158fda8 100644 --- a/inst/extdata/OSD/S/SUTLEY.json +++ b/inst/extdata/OSD/S/SUTLEY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; dark brown (l0YR 4/3) silt loam, very dark grayish brown (l0YR 3/2) moist; weak medium and coarse subangular blocky structure; slightly hard, very friable; many very fine roots and pores; strong effervescence; slightly alkaline; abrupt smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--6 to 24 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; moderate medium and coarse subangular blocky structure; slightly hard, very friable; common fine roots and tubular pores; many fine accumulations of carbonates; violent effervescence; moderately alkaline; clear wavy boundary. (l0 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--24 to 60 inches; light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; massive; slightly hard, very friable; few fine accumulations of carbonates; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SUTPHEN.json b/inst/extdata/OSD/S/SUTPHEN.json index ab912ff405..a42ff64a09 100644 --- a/inst/extdata/OSD/S/SUTPHEN.json +++ b/inst/extdata/OSD/S/SUTPHEN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkss2--117 to 145 centimeters (46 to 57 inches); brown (10YR 5/3) silty clay, brown (10YR 4/3) moist; few fine faint dark yellowish brown (10YR 4/4) masses of oxidized iron; massive; hard, firm, very plastic and very sticky; a few slickensides; few medium and fine carbonate concretions; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--145 to 160 centimeters (57 to 63 inches); pale brown (10YR 6/3) silty clay loam, brown (10YR 4/3) moist; few fine faint dark yellowish brown (10YR 4/4) masses of oxidized iron; massive; hard, friable, slightly plastic and slightly sticky; few fine carbonate concretions; strong effervescence; moderately alkaline." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--160 to 200 centimeters (63 to 79 inches); very pale brown (10YR 7/3) silt loam, brown (10YR 5/3) moist; massive; slightly hard, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SUZMAYNE.json b/inst/extdata/OSD/S/SUZMAYNE.json index f0e89b44d1..a173b53fea 100644 --- a/inst/extdata/OSD/S/SUZMAYNE.json +++ b/inst/extdata/OSD/S/SUZMAYNE.json @@ -89,7 +89,7 @@ "cf_class": "very channery", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 7 inches; yellowish brown (10YR 5/4) very channery loam, dark yellowish brown (10YR 4/4) moist; weak medium granular structure; soft, friable, nonsticky and nonplastic; few very fine and fine roots; common very fine interstitial pores; 20 percent gravel, 5 percent cobbles, and 10 percent channers; strong effervescent; moderately alkaline (pH 8.4); clear smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "C1--7 to 13 inches; reddish brown (5YR 5/4) gravelly loam, brown (7.5YR 4/4) moist; weak fine and medium subangular blocky structure; soft, friable, slightly sticky and nonplastic; common fine, and few very fine, medium roots; few very fine and fine tubular pores; 15 percent gravel, 5 percent cobbles, 5 percent stones; strong effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (4 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--13 to 27 inches; light reddish brown (2.5YR 6/4) very gravelly loam, reddish brown (2.5YR 5/3) moist; weak fine subangular blocky structure; slightly hard, friable; slightly sticky and slightly plastic; few fine and medium roots; few very fine tubular pores; carbonates disseminated throughout; 25 percent gravel, 10 percent cobbles, 5 percent stones; strong effervescent; strongly alkaline (pH 8.5); abrupt wavy boundary. (4 to 10 inches thick)" diff --git a/inst/extdata/OSD/S/SVEA.json b/inst/extdata/OSD/S/SVEA.json index 73e9de725f..600d9cb8f5 100644 --- a/inst/extdata/OSD/S/SVEA.json +++ b/inst/extdata/OSD/S/SVEA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--21 to 36 inches; pale yellow (2.5Y 7/4) clay loam, light olive brown (2.5Y 5/4) moist; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine roots; common fine pores; few medium masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (7 to 26 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; light yellowish brown (2.5Y 6/4) loam, light olive brown (2.5Y 5/4) moist; few fine distinct yellowish red (5YR 4/6) redoximorphic concentrations and few fine faint gray (5Y 5/1) redoximorphic depletions increasing to common coarse distinct redoximorphic depletions at a depth of about 42 inches; massive, breaks with slight pressure into weak subangular blocky and platy fragments characteristic of till; hard, friable, slightly sticky and slightly plastic; few masses of carbonates; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SWALA.json b/inst/extdata/OSD/S/SWALA.json index b2788ff7ec..634670e7be 100644 --- a/inst/extdata/OSD/S/SWALA.json +++ b/inst/extdata/OSD/S/SWALA.json @@ -89,7 +89,7 @@ "cf_class": "very stony", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 8 cm; dark grayish brown (10YR 4/2) very stony silt loam, very dark brown (10YR 2/2) moist; weak fine and medium subangular blocky parting to weak fine granular structure; soft, very friable, slightly sticky and slightly plastic; common very fine, fine and medium roots; common very fine irregular and vesicular pores; few fine irregular soft secondary calcium carbonate masses and disseminated calcium carbonate; 35 percent calcium carbonate equivalent; moderately effervescent; 10 percent travertine gravel, 5 percent travertine cobbles and 20 percent travertine stones; moderately alkaline (pH 7.9); abrupt wavy boundary" diff --git a/inst/extdata/OSD/S/SWANBOY.json b/inst/extdata/OSD/S/SWANBOY.json index 77b8cddda6..9511eef07a 100644 --- a/inst/extdata/OSD/S/SWANBOY.json +++ b/inst/extdata/OSD/S/SWANBOY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 1 inch; light olive gray (5Y 6/2) clay, olive (5Y 5/3) moist, with light gray (5Y 7/1) crust about 3 mm thick; moderate fine and medium granular structure; hard, friable, sticky and plastic; cracks about 1 inch wide; slight effervescence; moderately alkaline; abrupt smooth boundary. (1/2 inch to 4 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss--1 to 6 inches; light gray (5Y 7/2) clay, pale olive (5Y 6/3) moist; weak coarse subangular blocky structure parting to moderate medium and fine angular blocky, extremely hard, very firm, sticky and very plastic; cracks about 1/2 to 1 inch wide; few intersecting slickensides; slight effervescence; strongly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bssz--6 to 12 inches; light gray (5Y 7/2) clay, pale olive (5Y 6/3) moist; weak coarse blocky structure parting to moderate fine blocky; extremely hard, very firm, sticky and very plastic; few intersecting slickensides; common fine accumulations of salt; slight effervescence; strongly alkaline; gradual wavy boundary. (Combined B horizon 8 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--12 to 60 inches; pale yellow (5Y 7/3) clay, pale olive (5Y 6/3) moist; massive; very hard, firm, sticky and very plastic; few intersecting slickensides; very few fine and medium accumulations of carbonate and gypsum; slight effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/S/SWEDEGROVE.json b/inst/extdata/OSD/S/SWEDEGROVE.json index aee75b8e03..0480742dc4 100644 --- a/inst/extdata/OSD/S/SWEDEGROVE.json +++ b/inst/extdata/OSD/S/SWEDEGROVE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg1--36 to 51 centimeters; olive gray (5Y 5/2) fine sandy loam; weak fine subangular blocky structure parting to weak very fine subangular blocky; very friable; common fine irregular soft very pale brown (10YR 8/2) calcium carbonate concentrations distributed uniformly throughout the horizon; few fine prominent light olive brown (2.5Y 5/4) iron concentrations; about 2 percent gravel; about 2 percent cobbles; violent effervescent; slightly alkaline; clear smooth boundary." diff --git a/inst/extdata/OSD/S/SWEETCREEK.json b/inst/extdata/OSD/S/SWEETCREEK.json index bdac742e20..f595b547d8 100644 --- a/inst/extdata/OSD/S/SWEETCREEK.json +++ b/inst/extdata/OSD/S/SWEETCREEK.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr3--49 to 66 inches; reddish brown (2.5YR 5/4) weathered bedrock crushing to sandy loam, red (2.5YR 4/6) moist; massive; very hard, very firm, nonsticky and nonplastic; few fine irregular carbonate threads; moderately effervescent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/S/SWEETGRASS.json b/inst/extdata/OSD/S/SWEETGRASS.json index 11248a5a93..be2b0f8b38 100644 --- a/inst/extdata/OSD/S/SWEETGRASS.json +++ b/inst/extdata/OSD/S/SWEETGRASS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk1--13 to 19 inches; light gray (10YR 7/2) sandy clay loam, pale brown (10YR 6/3) moist; weak coarse prismatic structure; slightly hard, very friable, slightly sticky and slightly plastic; few fine roots; common fine pores; 5 percent pebbles; disseminated lime; common large masses of lime; violent effervescence; moderately alkaline (pH 8.4); clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bk2--19 to 28 inches; white (10YR 8/3) gravelly sandy loam, light gray (10YR 7/2) moist; weak coarse prismatic structure; soft, very friable, nonsticky and nonplastic; 15 percent pebbles, 5 percent cobbles; disseminated lime; common large masses of lime; continuous distinct lime cast on all sides of coarse fragments; violent effervescence; moderately alkaline (pH 8.4); clear smooth boundary. (Combined thickness of Bk1 and Bk2 horizons is 7 to 21 inches)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "3Bk33--28 to 43 inches; light gray (10YR 7/2) very gravelly loamy coarse sand, yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky and nonplastic; 35 percent pebbles, 10 percent cobbles; disseminated lime; continuous distinct lime casts on underside of coarse fragments; violent effervescence; moderately alkaline (pH 8.4); gradual smooth boundary. (10 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--43 to 60 inches; pale brown (10YR 6/3) extremely gravelly coarse sand; yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky and nonplastic; 45 percent pebbles, 20 percent cobbles, 10 percent stones; few distinct lime casts on the underside of coarse fragments; strong effervescence; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/S/SWENODA.json b/inst/extdata/OSD/S/SWENODA.json index cad8b5bc07..f8fe408745 100644 --- a/inst/extdata/OSD/S/SWENODA.json +++ b/inst/extdata/OSD/S/SWENODA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk--33 to 39 inches; grayish brown (2.5Y 5/2) loam, light gray (2.5Y 7/2) dry; common fine prominent yellowish brown (10YR 5/4) redoximorphic concentrations; weak coarse subangular blocky structure; soft and friable; slightly sticky and slightly plastic; about 4 percent gravel; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 35 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--39 to 60 inches; olive brown (2.5Y 4/4) loam, light yellowish brown (2.5Y 6/4) dry; common fine distinct light brownish gray (2.5Y 6/2) redoximorphic depletions and light olive brown (2.5Y 5/6) redoximorphic concentrations; massive; slightly hard and friable; slightly sticky and slightly plastic; about 4 percent gravel; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SWINT.json b/inst/extdata/OSD/S/SWINT.json index 7949365b13..c036af679f 100644 --- a/inst/extdata/OSD/S/SWINT.json +++ b/inst/extdata/OSD/S/SWINT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; dark reddish gray (5YR 4/2) silt loam, dark reddish brown (5YR 2/2) moist; moderate fine subangular blocky structure; hard, very friable; few roots; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--8 to 14 inches; dark reddish gray (5YR 4/2) silt loam, dark reddish brown (5YR 2/2) moist; weak medium subangular blocky structure parting to weak fine granular; hard, very friable; common fine reddish brown (5YR 5/4) worm channels, dark reddish brown (5YR 3/4) moist; few roots; slight effervescence; slightly alkaline; clear wavy boundary. (Combined A horizons is 10 to 20 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--14 to 27 inches; light reddish brown (5YR 6/4) silt loam, reddish brown (5YR 4/4) moist; weak medium subangular blocky structure; hard, very friable; few roots; dark reddish gray (5YR 4/2) organic coats along common worm channels; strong effervescence; moderately alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--27 to 44 inches; reddish brown (5YR 5/3) silt loam, reddish brown (5YR 4/3) moist; weak coarse subangular blocky structure; hard, very friable; strong effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--44 to 60 inches; light reddish brown (5YR 6/4) very fine sandy loam, reddish brown (5YR 4/4) moist; massive; hard, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/S/SYRENE.json b/inst/extdata/OSD/S/SYRENE.json index 496513a823..c808be42a6 100644 --- a/inst/extdata/OSD/S/SYRENE.json +++ b/inst/extdata/OSD/S/SYRENE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 9 inches; very dark gray (10YR 3/1) sandy clay loam, dark gray (10YR 4/1) dry; weak medium subangular blocky structure parting to weak very fine granular; very friable; few inclusions of dark gray (10YR 4/1); slight effervescence; slightly alkaline; clear smooth boundary. (Combined A horizons 7 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkg1--9 to 17 inches; dark gray (2.5Y 4/1) sandy clay loam; weak very fine granular structure; very friable; few tongues of very dark gray (10YR 3/1); violent effervescence; moderately alkaline; clear smooth boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2Bkg2--17 to 27 inches; light brownish gray (2.5Y 6/2) gravelly fine sand; common fine distinct brownish yellow (10YR 6/6) and olive yellow (2.5Y 6/6) redoximorphic concentrations; massive; very friable; about 20 percent gravel; violent effervescence; moderately alkaline; gradual smooth boundary. (0 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--27 to 60 inches; light olive gray (5Y 6/2) gravelly fine sand; many fine and medium yellowish brown (10YR 5/8) redoximorphic concentrations throughout and common coarse prominent strong brown (7.5YR 5/8) and dark brown (7.5YR 4/4) redoximorphic concentrations in the lower part; single grain; loose; about 25 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TACOOSH.json b/inst/extdata/OSD/T/TACOOSH.json index f2bd92c4dd..4a575bccd9 100644 --- a/inst/extdata/OSD/T/TACOOSH.json +++ b/inst/extdata/OSD/T/TACOOSH.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--42 to 60 inches; light grayish brown (10YR 6/2) sandy loam; massive; slightly sticky; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TAGUS.json b/inst/extdata/OSD/T/TAGUS.json index e9229999c1..659c599815 100644 --- a/inst/extdata/OSD/T/TAGUS.json +++ b/inst/extdata/OSD/T/TAGUS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--17 to 27 inches; brown (10YR 5/3) loam, dark grayish brown (2.5Y 4/2) moist; weak medium and fine subangular blocky structure; slightly hard, friable, slightly sticky and plastic; common medium, fine, and very fine roots; many fine and very fine tubular pores; slightly effervescent, disseminated carbonates and strongly effervescent, carbonates segregated in common medium and fine irregular soft masses; moderately alkaline (pH 8.2); clear wavy boundary. (5 to 15 inches thick)." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--40 to 63 inches; light yellowish brown (2.5Y 6/4) loam, brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; common fine and very fine roots; many fine and very fine tubular pores; slightly effervescent, disseminated carbonates and strongly effervescent, carbonates segregated in few fine irregular filaments; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/T/TALAG.json b/inst/extdata/OSD/T/TALAG.json index 3edfe9500f..755bb9938e 100644 --- a/inst/extdata/OSD/T/TALAG.json +++ b/inst/extdata/OSD/T/TALAG.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkn--18 to 22 inches; light olive brown (2.5Y 5/3) clay, olive brown (2.5Y 4/3) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; very hard, firm, very sticky and very plastic; few very fine roots; few fine and common very fine tubular pores; faint discontinuous clay films on peds; few lime threads; strong effervescence; gradual wavy boundary. (5 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--22 to 31 inches; grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; medium blocky structure; very hard, firm, sticky and plastic; few very fine roots; few fine and common very fine tubular pores; violent effervescence; common threads and masses of lime; gradual wavy boundary. (5 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--31 to 49 inches; grayish brown (2.5Y 5/2) stratified clay loam and silty clay loam containing few hard shale and sandstone fragments, dark grayish brown (2.5Y 4/2) moist; massive; hard, firm, sticky and plastic; few roots; common very fine tubular pores; violent effervescence; lime coatings on shale and sandstone fragments." diff --git a/inst/extdata/OSD/T/TANAHA.json b/inst/extdata/OSD/T/TANAHA.json index 2a5b2cb88e..0d459cc6a6 100644 --- a/inst/extdata/OSD/T/TANAHA.json +++ b/inst/extdata/OSD/T/TANAHA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--12 to 20 inches; brown (10YR 5/3) clay loam, very dark grayish brown (10YR 3/2) moist; fine subangular blocky structure parting to weak very fine subangular blocky; hard, friable, slightly sticky and slightly plastic; common very fine roots; many very fine and few fine pores; few faint clay films lining pores; common distinct light gray (10YR 7/2) lime coatings lining pores and on faces of peds; strong effervescence; moderately alkaline (pH 8.0); clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--20 to 32 inches; brown (10YR 5/3) clay loam, very dark grayish brown (10YR 3/2) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; many very fine and few fine pores; few faint clay films lining pores; common distinct light gray (10YR 7/2) lime coatings lining pores and on faces of peds; strong effervescence; moderately alkaline (pH 7.9); gradual wavy boundary. (Combined Btk horizon is 12 to 26 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btkqm--32 to 38 inches; brown (10YR 5/3) loam, very dark grayish brown (10YR 3/2) moist; moderate fine prismatic structure parting to fine angular blocky; very hard, very firm, slightly sticky and nonplastic; few very fine roots; many very fine and common fine pores; few faint clay films lining pores; many prominent light gray (10YR 7/2) lime coatings lining pores and on faces of peds; strong effervescence; moderately alkaline (pH 8.0); abrupt clear boundary. (4 to 12 inches)" diff --git a/inst/extdata/OSD/T/TANAZZA.json b/inst/extdata/OSD/T/TANAZZA.json index bc8b178a12..8c2c46607a 100644 --- a/inst/extdata/OSD/T/TANAZZA.json +++ b/inst/extdata/OSD/T/TANAZZA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bky3--31 to 37 inches; pale brown (10YR 6/3) gypsiferous material, yellowish brown (10YR 5/4) moist; massive; slightly hard; firm, moderately sticky and moderately plastic; few fine roots; common fine tubular pores; apparent texture of the fine earth material is clay loam; 50 percent large honeycomb gypsum masses; few white (10YR 8/1) calcium carbonate masses; slightly effervescent matrix and strongly effervescent calcium carbonate masses (15 percent calcium carbonate equivalent in the fine earth fraction); strongly alkaline (pH 8.6); abrupt smooth boundary. (4 to 7 inches thick)" diff --git a/inst/extdata/OSD/T/TANSEM.json b/inst/extdata/OSD/T/TANSEM.json index 3d64c2c2f8..c5ec3648bb 100644 --- a/inst/extdata/OSD/T/TANSEM.json +++ b/inst/extdata/OSD/T/TANSEM.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--14 to 17 inches; light yellowish brown (2.5Y 6/3) silt loam, light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to moderate medium prismatic and weak coarse subangular blocky; hard, friable, slightly sticky and slightly plastic; strong effervescence; few large white carbonate spots; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--17 to 23 inches; light yellowish brown (2.5Y 6/4) silt loam, light olive brown (2.5Y 5/4) moist; weak coarse prismatic structure; hard, friable, slightly sticky and slightly plastic; violent effervescence; many large prominent white carbonate accumulations; slightly alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--23 to 28 inches; light yellowish brown (2.5Y 6/4) silt loam, olive brown (2.5Y 4/3) moist; weak coarse prismatic structure; hard, friable, slightly sticky and slightly plastic; strong effervescence; few large and common very small white carbonate accumulations; slightly alkaline; clear wavy boundary. (Combined Bk horizons 8 to 30 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--28 to 60 inches; pale yellow (2.5Y 7/3) varved silt loam, light olive brown (2.5Y 5/3) moist; massive; many dark yellowish brown (10YR 4/4) stains on surface of varved material; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TAOPI.json b/inst/extdata/OSD/T/TAOPI.json index d991761170..e3788288f4 100644 --- a/inst/extdata/OSD/T/TAOPI.json +++ b/inst/extdata/OSD/T/TAOPI.json @@ -204,7 +204,7 @@ "cf_class": "cobbly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3C--30 to 60 inches; light gray (10YR 7/2) cobbly silt loam; massive; very friable; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/T/TASSEL.json b/inst/extdata/OSD/T/TASSEL.json index 626cef3e4c..bc61acf6ca 100644 --- a/inst/extdata/OSD/T/TASSEL.json +++ b/inst/extdata/OSD/T/TASSEL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 8 inches; light brownish gray (10YR 6/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; weak medium granular structure; soft, very friable; 3 percent sandstone gravel by volume; strong effervescence; slightly alkaline; gradual smooth boundary. (2 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--8 to 15 inches; light gray (10YR 7/2) fine sandy loam, grayish brown (10YR 5/2) moist; massive; slightly hard, friable; 10 percent sandstone gravel and cobbles by volume; violent effervescence; moderately alkaline; gradual smooth boundary. (4 to 11 inches)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--15 to 80 inches; light gray (10YR 7/2) partially consolidated soft sandstone, violent effervescence." diff --git a/inst/extdata/OSD/T/TEAKETTLE.json b/inst/extdata/OSD/T/TEAKETTLE.json index 72d742654d..e6e14ac79d 100644 --- a/inst/extdata/OSD/T/TEAKETTLE.json +++ b/inst/extdata/OSD/T/TEAKETTLE.json @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--100 to 200 cm; light olive brown (2.5Y 5/3) extremely gravelly loamy coarse sand, olive brown (2.5Y 4/3), moist; massive; loose, nonsticky, nonplastic; few fine roots throughout; many fine interstitial pores; 10 percent irregular moderately cemented carbonate concretions on bottom of rock fragments; 60 percent gravel, 10 percent cobbles; strongly effervescence; strongly alkaline (pH 8.7)." diff --git a/inst/extdata/OSD/T/TECKLA.json b/inst/extdata/OSD/T/TECKLA.json index 35db6faffc..39141f3745 100644 --- a/inst/extdata/OSD/T/TECKLA.json +++ b/inst/extdata/OSD/T/TECKLA.json @@ -181,7 +181,7 @@ "cf_class": "very channery", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk--31 to 45 inches; light reddish brown (5YR 6/4) very channery loam, reddish brown (5YR 4/4) moist; massive; soft, very friable; common fine and very fine roots; 40 percent medium and fine angular porcelanite channers; strong effervescence; calcium carbonate disseminated and as soft masses; strongly alkaline (pH 9.0); clear wavy boundary. (9 to 14 inches thick)" diff --git a/inst/extdata/OSD/T/TEEMAT.json b/inst/extdata/OSD/T/TEEMAT.json index 101657a00e..dd7562511b 100644 --- a/inst/extdata/OSD/T/TEEMAT.json +++ b/inst/extdata/OSD/T/TEEMAT.json @@ -135,7 +135,7 @@ "cf_class": "cobbly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--10 to 60 inches; light brown (7.5YR 6/4) cobbly sandy loam, brown (7.5YR 4/4) moist; massive; slightly hard, very friable, slightly sticky, nonplastic; few fine roots to 30 inches, 20 percent cobble, 30 percent gravel, and 5 percent stone in the lower part; strong effervescence; lime crust on undersides of gravel; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/T/TEETERS.json b/inst/extdata/OSD/T/TEETERS.json index 90cf4c7d07..5fdbf6d1b7 100644 --- a/inst/extdata/OSD/T/TEETERS.json +++ b/inst/extdata/OSD/T/TEETERS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--30 to 36 inches; dark gray (N 4/ ) silt, light gray (N 7/ ) dry; common medium distinct dark yellowish brown (10YR 3/4) mottles; massive with horizontal cleavage; hard, friable, nonsticky and nonplastic; few very fine roots; few very fine tubular pores; weakly effervescent; strongly alkaline (pH 8.6); gradual wavy boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/T/TELA.json b/inst/extdata/OSD/T/TELA.json index 4998674978..8790ba55a9 100644 --- a/inst/extdata/OSD/T/TELA.json +++ b/inst/extdata/OSD/T/TELA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt--23 to 41 cm (9 to 16 in); brown (10YR 5/3) sandy clay loam, dark brown (10YR 3/3) moist; moderate fine and medium subangular blocky and angular blocky structure; hard, friable; few fine pores; few patchy clay films on ped surfaces; very slight effervescence; slightly alkaline; gradual smooth boundary. Thickness is 10 to 28 cm (4 to 11 in)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--41 to 81 cm (16 to 32 in); pale brown (10YR 6/3) sandy clay loam, brown (10YR 4/3) moist; moderate fine and medium subangular blocky and angular blocky structure; hard, friable; few fine pores; few patchy clay films; 4 percent films and threads of secondary carbonates; strong effervescence; moderately alkaline; clear smooth boundary. Thickness is 25 to 69 cm (10 to 27 in)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--81 to 203 cm (32 to 80 in); pale brown (10YR 6/3) sandy clay loam, brown (10YR 5/3) weak fine and medium subangular blocky structure; hard, friable; 2 percent soft masses of calcium carbonate; few rounded pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TEMVIK.json b/inst/extdata/OSD/T/TEMVIK.json index 8b15c93c02..4b31641274 100644 --- a/inst/extdata/OSD/T/TEMVIK.json +++ b/inst/extdata/OSD/T/TEMVIK.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk1--24 to 36 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; common fine distinct yellowish brown (10YR 5/4) redox concentrations; weak coarse prismatic structure parting to weak coarse and medium subangular blocky; hard, friable, sticky and plastic; about 3 percent gravel; many medium and few large masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk2--36 to 44 inches; light olive gray (5Y 6/2) clay loam, olive brown (2.5Y 4/4) moist; few fine prominent strong brown (7.5YR 5/6) redox concentrations; weak coarse and fine subangular blocky structure; hard, friable, sticky and plastic; about 3 percent gravel; common masses of carbonates; strong effervescence; moderately alkaline; gradual boundary. (Combined Bk horizons 12 to 24 inches thick.)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--44 to 60 inches; light olive gray (5Y 6/2) clay loam, olive gray (5Y 5/2) moist; weak subangular blocky structure; hard, firm, sticky and plastic; about 3 percent gravel; few small masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TENCEE.json b/inst/extdata/OSD/T/TENCEE.json index 8afeb9a92f..cd731e0b97 100644 --- a/inst/extdata/OSD/T/TENCEE.json +++ b/inst/extdata/OSD/T/TENCEE.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCk2--35 to 50 inches; very pale brown (10YR 8/3) extremely gravelly sandy clay loam, very pale brown (10YR 7/3) moist; massive; soft, friable, slightly sticky and non-plastic; 70 percent calcium carbonate indurated nodules; some nodules have smooth surfaces; strong effervescence; moderately alkaline; clear wavy boundary (10 to 20 inches thick)." diff --git a/inst/extdata/OSD/T/TENDERFOOT.json b/inst/extdata/OSD/T/TENDERFOOT.json index e2fdb410d6..3ecf7c1275 100644 --- a/inst/extdata/OSD/T/TENDERFOOT.json +++ b/inst/extdata/OSD/T/TENDERFOOT.json @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": 7, "pH_class": "neutral", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--9 to 17 inches; reddish brown (5YR 4/4) extremely cobbly clay loam, reddish brown (5YR 4/3) moist; moderate fine subangular blocky structure; slightly hard, friable, sticky and slightly plastic; common very fine roots; few very fine tubular pores; 40 percent cobble and 25 percent gravel of calcium carbonate-coated limestone and hardpan fragments; slightly effervescent in the fine earth and strongly effervescent on coatings; neutral (pH 7.0); abrupt wavy boundary (7 to 9 inches thick)" diff --git a/inst/extdata/OSD/T/TENNEYCANYON.json b/inst/extdata/OSD/T/TENNEYCANYON.json index e5c634d799..8b4fce4d98 100644 --- a/inst/extdata/OSD/T/TENNEYCANYON.json +++ b/inst/extdata/OSD/T/TENNEYCANYON.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescent", "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)" diff --git a/inst/extdata/OSD/T/TENPLY.json b/inst/extdata/OSD/T/TENPLY.json index adcae0bd31..46cadc6544 100644 --- a/inst/extdata/OSD/T/TENPLY.json +++ b/inst/extdata/OSD/T/TENPLY.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bknz--16 to 75 centimeters; light gray (2.5Y 7/2) ashy silt loam, light olive brown(2.5Y 5/3); 25 percent sand; 17 percent clay; moderate very thick platy structure; very friable, hard, noncemented, slightly sticky, very plastic; moderate excavation difficulty; common fine roots between peds and many very fine roots between peds; few fine tubular and few medium tubular and many very fine tubular pores; strong effervescence, very strongly alkaline (pH 9.2), clear smooth boundary (40 to 75 cm thick)." diff --git a/inst/extdata/OSD/T/TETILLA.json b/inst/extdata/OSD/T/TETILLA.json index 50e93a8019..b7eaefab41 100644 --- a/inst/extdata/OSD/T/TETILLA.json +++ b/inst/extdata/OSD/T/TETILLA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--21 to 40 inches; light brown (7.5YR 6/4) loam, brown (7.5YR 4/4) moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; hard, firm, slightly sticky and slightly plastic; few fine and common very fine roots; common very fine tubular pores; common faint clay films on faces of peds and lining pores; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as common fine and medium irregularly shaped coats on faces of peds; moderately alkaline (pH 8.2); gradual wavy boundary. (8 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk2--40 to 57 inches; light brown (7.5YR 6/4) sandy clay loam, brown (7.5YR 4/4) moist; weak medium prismatic structure parting to moderate medium subangular blocky; hard, friable, slightly sticky and slightly plastic; few fine and common very fine roots; common very fine tubular pores; common faint clay films on faces of peds and lining pores; 2 percent gravel; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as many medium irregularly shaped coats on faces of peds and few medium irregularly shaped coats on undersides of rock fragments; moderately alkaline (pH 7.9); abrupt wavy boundary. (10 to 24 inches thick)" diff --git a/inst/extdata/OSD/T/TETONKA.json b/inst/extdata/OSD/T/TETONKA.json index d08021e922..e4b3cdf8e9 100644 --- a/inst/extdata/OSD/T/TETONKA.json +++ b/inst/extdata/OSD/T/TETONKA.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg--56 to 60 inches; gray (5Y 5/1) and olive gray (5Y 5/2) clay loam, light gray (5Y 7/1 & 7/2) dry; many medium distinct brownish yellow (10YR 6/6) dry redox concentrations; weak coarse platy structure; hard, firm, sticky and plastic; few medium concretions (iron and manganese oxides); few fine accumulations of carbonate; slight effervescence; moderately alkaline. (0 to 30 inches thick)" diff --git a/inst/extdata/OSD/T/THEDFORD.json b/inst/extdata/OSD/T/THEDFORD.json index 885b3c7f2c..a113c77774 100644 --- a/inst/extdata/OSD/T/THEDFORD.json +++ b/inst/extdata/OSD/T/THEDFORD.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2--12 to 48 centimeters (5 to 19 inches); dark grayish brown (10YR 4/2) fine sand, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky parting to weak fine granular structure; soft, very friable; many very fine and fine and common medium roots throughout; slightly alkaline; very slight effervescence in lower part; clear wavy boundary. [combined thickness of the A horizon is 25 to 76 centimeters (10 to 30 inches) thick]" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C--48 to 87 centimeters (19 to 34 inches); light brownish gray (2.5Y 6/2) fine sand, dark grayish brown (2.5Y 4/2) moist: single grain; loose; many very fine and fine and common medium roots throughout; moderately alkaline; slight effervescence; abrupt smooth boundary. [12 to 76 centimeters (5 to 30 inches) thick]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Cg1--87 to 115 centimeters (34 to 45 inches); light gray (2.5Y 7/2) loamy fine sand, light brownish gray (2.5Y 6/2) moist; common fine prominent irregular strong brown (7.5YR 4/6) moist, iron masses in the soil matrix; single grain; loose; common very fine, fine, and medium roots throughout; moderately alkaline; slight effervescence; strata at 87 to 92 centimeters (34 to 36 inches of gray (5/N) loam, black (2.5/N) moist and with 30 percent irregular masses of calcium carbonate; clear wavy boundary. [12 to 76 centimeters (5 to 30 inches) thick]" diff --git a/inst/extdata/OSD/T/THESISTERS.json b/inst/extdata/OSD/T/THESISTERS.json index dee9ee43f5..26a777e9a2 100644 --- a/inst/extdata/OSD/T/THESISTERS.json +++ b/inst/extdata/OSD/T/THESISTERS.json @@ -89,7 +89,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 1 inches, (0 to 3 cm); brown (10YR 5/3) extremely gravelly silt loam, dark brown (10YR 3/3) moist; moderate fine and medium subangular blocky structure; moderately hard, very friable, slightly sticky and slightly plastic; common very fine roots throughout; common fine tubular and few medium tubular and many very fine tubular pores; 75 percent pebbles and 3 percent cobbles; strongly effervescence (20 percent calcium carbonate equivalence in the fine earth fraction); moderately alkaline (pH 8.0); abrupt smooth boundary. (1 to 2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "very abrupt", "topography": "wavy", "narrative": "Bk--1 to 6 inches, (3 to 15 cm); brown (10YR 4/3) very gravelly silt loam, dark brown (10YR 3/3) moist; moderate medium subangular blocky structure; moderately hard, very friable, slightly sticky and slightly plastic; few fine to coarse roots throughout and many very fine roots throughout; common fine tubular and many very fine tubular pores; 10 percent distinct very pale brown (10YR 8/2) calcium carbonate coats on bottoms of rock fragments and 35 percent distinct very dark brown (10YR 2/2) organic stains on rock fragments; 25 percent distinct light yellowish brown (10YR 6/4) coats of oxidized iron around rock fragments; 50 percent pebbles and 1 percent cobbles; slightly effervescence (80 percent calcium carbonate equivalent in the fine earth fraction); moderately alkaline (pH 8.0); very abrupt wavy boundary. (3 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--6 to 10 inches, (15 to 25 cm); gray (10YR 6/1) limestone bedrock, dark gray (10YR 4/1) moist; common very fine and fine roots in cracks and common medium roots in cracks; slightly effervescence." diff --git a/inst/extdata/OSD/T/THREETOP.json b/inst/extdata/OSD/T/THREETOP.json index ee652591cd..8b0b54ef72 100644 --- a/inst/extdata/OSD/T/THREETOP.json +++ b/inst/extdata/OSD/T/THREETOP.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--7 to 13 inches; brown (10YR 5/3) sandy clay loam, dark brown (10YR 4/3) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; hard, friable, slightly sticky and slightly plastic; many fine roots; common distinct clay skins on faces of peds; slight effervescence, calcium carbonate disseminated; 10 percent angular sandstone pebbles; moderately alkaline (pH 8.2); clear wavy boundary. (Combined thickness of the Bt horizon is 8 to 16 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--13 to 18 inches; pale brown (10YR 6/3) sandy clay loam, dark brown (10YR 4/3) moist; weak medium subangualr blocky structure; hard, friable, nonsticky and slightly plastic; common fine roots; violent effervescence, calcium carbonate disseminated; 10 percent angular sandstone pebbles; moderately alkaline (pH 8.4); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--18 to 24 inches; very pale brown (10YR 7/3) very gravelly sandy loam, pale brown (10YR 6/3) moist; massive; slightly hard, friable, nonsticky and nonplastic; violent effervescence, calcium carbonate disseminated and as thick coatings on undersides of pebbles; 45 percent angular sandstone pebbles; strongly alkaline (pH 8.6). (Combined thickness of Bk horizon is 10 to 27 inches.)" diff --git a/inst/extdata/OSD/T/THURBER.json b/inst/extdata/OSD/T/THURBER.json index fa02b822a0..4773f31b18 100644 --- a/inst/extdata/OSD/T/THURBER.json +++ b/inst/extdata/OSD/T/THURBER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "B't2--145 to 180 cm (57 to 71 in); dark yellowish brown (10YR 4/4) clay loam, dark yellowish brown (10YR 3/4) moist; weak fine and medium angular blocky structure; very hard, firm; few fine roots; common clay films on surfaces of some peds; few films, threads and concretions of calcium carbonate; weakly effervescent; moderately alkaline; gradual boundary. Thickness is 0 to 51 cm (0 to 20 in)" diff --git a/inst/extdata/OSD/T/TIETON.json b/inst/extdata/OSD/T/TIETON.json index 0d5fea85e6..08996f5910 100644 --- a/inst/extdata/OSD/T/TIETON.json +++ b/inst/extdata/OSD/T/TIETON.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "BC--44 to 48 inches; grayish brown (10YR 5/2) loam, dark grayish brown (10YR 4/2) moist; massive; hard, firm, slightly sticky and slightly plastic; few roots; many very fine tubular pores; 5 percent fragments of andesite; few lime coatings on upper boundary with slight effervescence; neutral (pH 7.2); abrupt smooth boundary. (3 to 16 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bk--48 to 50 inches; light yellowish brown (2.5Y 6/4) weathered andesite, olive brown (2.5Y 4/4) moist; massive; hard, firm,; lime coatings along cracks with violent effervescence; neutral (pH 7.2); abrupt smooth boundary. (2 to 6 inches thick)" diff --git a/inst/extdata/OSD/T/TIFFANY.json b/inst/extdata/OSD/T/TIFFANY.json index deea519986..34254bd5b9 100644 --- a/inst/extdata/OSD/T/TIFFANY.json +++ b/inst/extdata/OSD/T/TIFFANY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--23 to 36 inches; olive brown (2.5Y 4/4) fine sandy loam, light yellowish brown (2.5Y 6/3) dry; many medium prominent strong brown (7.5YR 5/6) redoximorphic concentrations and few fine distinct dark gray (10YR 4/1) redoximorphic depletions; weak medium subangular blocky structure parting to weak fine granular; slightly hard, very friable, slightly sticky and nonplastic; few very fine roots; common fine pores; few fine black iron-manganese concretions; slight effervescence in lower part; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--36 to 60 inches; light olive brown (2.5Y 5/4) and light brownish gray (2.5Y 6/2) stratified fine sandy loam, loamy fine sand, and loamy very fine sand, pale yellow (2.5Y 7/4) and light gray (2.5Y 7/2) dry; many fine and medium prominent strong brown (7.5YR 5/6), yellowish brown (10YR 5/6) and very dark brown (10YR 2/2) redoximorphic concentrations, and olive gray (5Y 5/2) redoximorphic depletions; massive; slightly hard, very friable; nonsticky and nonplastic; few fine iron-manganese concretions; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/T/TILFORD.json b/inst/extdata/OSD/T/TILFORD.json index 02fb42803d..727b732206 100644 --- a/inst/extdata/OSD/T/TILFORD.json +++ b/inst/extdata/OSD/T/TILFORD.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--13 to 23 cm (5 to 9 inches); dark reddish gray (5YR 4/2) silt loam, dark reddish brown (5YR 3/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; slight effervescence; neutral; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--23 to 41 cm (9 to 16 inches); reddish brown (5YR 5/3) silt loam, dark reddish brown (5YR 3/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bw3--41 to 66 cm (16 to 26 inches); reddish yellow (5YR 6/6) silt loam, yellowish red (5YR 4/6) moist; weak coarse prismatic structure parting to weak coarse blocky; slightly hard, friable, slightly sticky and slightly plastic; slight effervescence; moderately alkaline; diffuse wavy boundary. (Combined thickness of the Bw horizons is 15 to 63 cm.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bky--66 to 100 cm (26 to 40 inches); light reddish brown (2.5YR 6/4) loam, red (2.5YR 4/6) moist; weak coarse prismatic structure parting to weak coarse subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; common fine and medium accumulations of gypsum; common fine and medium accumulations of carbonates; strong effervescence; moderately alkaline. (13 to 50 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--100 to 200 cm (40 to 80 inches); light reddish brown (2.5YR 6/4) loam, red (2.5YR 4/6) moist; massive; slightly hard, friable, nonsticky and nonplastic; few accumulations of gypsum and carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TILLMAN.json b/inst/extdata/OSD/T/TILLMAN.json index af9fca063c..31bcf39d08 100644 --- a/inst/extdata/OSD/T/TILLMAN.json +++ b/inst/extdata/OSD/T/TILLMAN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk1--69 to 102 cm (27 to 40 in); reddish brown (5YR 4/4) clay, dark reddish brown (5YR 3/4) moist; weak coarse prismatic structure parting to moderate medium angular blocky structure parting to moderate fine angular blocky; very firm, extremely hard; few fine roots and few medium roots; 20 percent distinct clay films; 5 percent fine carbonate masses and 5 percent fine carbonate concretions; violent effervescence; moderately alkaline; gradual smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk2--102 to 135 cm (40 to 53 in); reddish brown (5YR 4/4) clay, dark reddish brown (5YR 3/4) moist; weak coarse prismatic structure parting to moderate medium angular blocky structure parting to moderate fine angular blocky; very firm, extremely hard; few fine roots and few medium roots; 15 percent distinct clay films; 5 percent fine carbonate masses and 5 percent fine carbonate concretions; violent effervescence; moderately alkaline; gradual smooth boundary. (8 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk3--135 to 168 cm (53 to 66 in); reddish brown (5YR 4/4) clay, dark reddish brown (5YR 3/4) moist; fine distinct reddish brown (2.5YR 4/4) mottles; weak coarse prismatic structure parting to moderate medium angular blocky structure parting to moderate fine angular blocky; very firm, extremely hard; few fine roots and few medium roots; 10 percent distinct clay films; 7 percent coarse carbonate masses and 7 percent coarse carbonate concretions; violent effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Btk horizon is 30 to 76 cm [12 to 30 in])" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "2BCk--168 to 203 cm (66 to 80 in); reddish brown (2.5YR 4/4) clay, dark reddish brown (2.5YR 3/4) moist; weak coarse prismatic structure parting to moderate medium subangular blocky structure; very firm, extremely hard; few fine roots and few medium roots; 3 percent medium carbonate masses and 3 percent medium carbonate concretions; violent effervescence; moderately alkaline; gradual smooth boundary. (Thickness of the BCk horizon is 0 to 46 cm [0 to 18 in])" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--203 to 216 cm (80 to 85 in); red (2.5YR 4/8) clay loam, red (2.5YR 4/6) moist; massive; very firm, extremely hard; horizon has rock structure with cleavage planes. Some clay coatings on cleavage planes; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TILVERN.json b/inst/extdata/OSD/T/TILVERN.json index 4dccfe905c..b2e92ebcc8 100644 --- a/inst/extdata/OSD/T/TILVERN.json +++ b/inst/extdata/OSD/T/TILVERN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bk1--12 to 28 inches; reddish brown (5YR 5/4) silty clay, reddish brown (5YR 4/4) moist; moderate coarse angular blocky structure parting to moderate fine and medium angular blocky; very hard, firm; few fine and medium roots; few worm channels and casts; common old crack fills contain loamy material; common large pressure faces; common fine and medium concretions of calcium carbonate; strong effervescence; moderately alkaline; diffuse wavy boundary. (13 to 22 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--28 to 46 inches; reddish brown (2.5YR 5/4) silty clay, reddish brown (2.5YR 4/4) moist; many wedge shaped peds tilted at 15 to 35 degrees from horizontal parting to moderate fine and medium angular blocky structure; very hard, firm; few fine roots; common fine and medium concretions of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (12 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--46 to 53 inches; reddish brown (2.5YR 5/4) silty clay, reddish brown (2.5YR 4/4) moist; moderate coarse subangular blocky structure parting to moderate fine and medium subangular blocky; very hard, firm; few fine roots; few medium distinct light olive gray (5Y 6/2) iron depletions; common pockets of crystals of gypsum and masses of calcium carbonate; common fine and few medium concretions of calcium carbonate; few weathered claystone fragments in lower part; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cd--53 to 80 inches; reddish brown (2.5YR 4/4) weakly consolidated claystone; dark reddish brown (2.5YR 3/4) moist; rock-like structure composed of wedge shaped aggregates that part to fine angular blocks; very hard, firm; common strata and mottles of light greenish gray (5GY 7/1); few thin red (2.5YR 5/6) loamy strata; few masses of calcium carbonate in upper part; common masses of gypsum crystals; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TIMBERG.json b/inst/extdata/OSD/T/TIMBERG.json index 5b13e72b71..ebfe3c5db7 100644 --- a/inst/extdata/OSD/T/TIMBERG.json +++ b/inst/extdata/OSD/T/TIMBERG.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--7 to 12 inches; weak red (2.5YR 5/2) silty clay loam, reddish brown (2.5YR 4/4) moist; strong fine subangular blocky structure, very hard, friable, moderately sticky and moderately plastic; common fine and very fine roots; many fine and very fine pores; moderately effervescent; moderately alkaline (pH 8.0); clear wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/T/TIMPER.json b/inst/extdata/OSD/T/TIMPER.json index 6700e490fa..3fde0115cd 100644 --- a/inst/extdata/OSD/T/TIMPER.json +++ b/inst/extdata/OSD/T/TIMPER.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.9, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Bqk--46 to 69 cm; light gray (10YR 7/1) stratified gravelly loamy sand and sand, grayish brown (10YR 5/2) moist; moderate thick platy structure due to stratification and weak cementation, single grained in other strata; hard in some strata, loose in others, firm and loose when moist, nonsticky and nonplastic; common fine roots that run horizontally between plates; common very fine interstitial pores in cemented strata and many very fine and fine interstitial pores in other strata; 20 percent gravel, violently effervescent on the outer faces of plates and slightly effervescent within plates and noncemented strata; strongly alkaline (pH 8.9); clear wavy boundary. (0 to 30 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "3Bqkm--69 to 91 cm; light gray (10YR 7/1) strongly silica-carbonate cemented duripan, grayish brown (10YR 5/2) moist; weak thick platy structure; extremely hard, very firm, nonsticky, nonplastic; few fine roots; few fine tubular pores; slightly effervescent in fractures and noneffervescent elsewhere but has thin very pale brown (10YR 8/2) and very pale brown (10YR 7/3) moist sheets where carbonate and silica have accumulated on plate tops; strongly alkaline (pH 9.0); abrupt wavy boundary. (0 to 30 cm thick)" diff --git a/inst/extdata/OSD/T/TINSLEY.json b/inst/extdata/OSD/T/TINSLEY.json index 9c637b3745..d6c35b2f84 100644 --- a/inst/extdata/OSD/T/TINSLEY.json +++ b/inst/extdata/OSD/T/TINSLEY.json @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--11 to 60 inches; pale brown (10YR 6/3) extremely gravelly loamy sand, brown (10YR 4/3) moist; single grain; loose, nonsticky and nonplastic; common very fine roots in the upper 13 inches and few very fine roots below that depth; 10 percent cobbles, 50 percent gravel; very slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TIPPIPAH.json b/inst/extdata/OSD/T/TIPPIPAH.json index 14db372192..bf38caaae2 100644 --- a/inst/extdata/OSD/T/TIPPIPAH.json +++ b/inst/extdata/OSD/T/TIPPIPAH.json @@ -250,7 +250,7 @@ "cf_class": "extremely gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "3Cqk--124 to 140 cm; light gray (10YR 7/2) extremely gravelly coarse sand, grayish brown (10YR 5/2) moist; massive; slightly hard, very friable, nonsticky and nonplastic; few very fine roots; many very fine and fine interstitial pores; 75 percent gravel; violently effervescent where few thin silica and carbonate cemented lenses occur, slightly effervescent matrix; strongly alkaline (pH 8.7); abrupt wavy boundary. (13 to 30 cm thick.)" diff --git a/inst/extdata/OSD/T/TOBIN.json b/inst/extdata/OSD/T/TOBIN.json index c06a7bd37f..cda996227f 100644 --- a/inst/extdata/OSD/T/TOBIN.json +++ b/inst/extdata/OSD/T/TOBIN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--81 to 152 centimeters (32 to 60 inches); grayish brown (10YR 5/2) silt loam, dark grayish brown (10YR 4/2) moist; a few thin strata of dark grayish brown (10YR 4/2) silty clay loam, very dark grayish brown (10YR 3/2) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; few fine roots; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TOBY.json b/inst/extdata/OSD/T/TOBY.json index 772e28e436..952a40bd9c 100644 --- a/inst/extdata/OSD/T/TOBY.json +++ b/inst/extdata/OSD/T/TOBY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 60 inches; grayish brown (2.5Y 5/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; slightly hard, very friable, slightly sticky and nonplastic; few fine roots; few fine pores; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TOLMAN.json b/inst/extdata/OSD/T/TOLMAN.json index 0fb17e8f0a..d97ad1dc7e 100644 --- a/inst/extdata/OSD/T/TOLMAN.json +++ b/inst/extdata/OSD/T/TOLMAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "R--16 inches; hard, noncalcareous sandstone interbedded with lenses of weakly effervescent sandstone. (Many feet thick)" diff --git a/inst/extdata/OSD/T/TOLNA.json b/inst/extdata/OSD/T/TOLNA.json index 8ca0d11cec..734928878d 100644 --- a/inst/extdata/OSD/T/TOLNA.json +++ b/inst/extdata/OSD/T/TOLNA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--40 to 60 inches; light olive gray (5Y 6/2) and light brownish gray (2.5Y 6/2) loamy coarse sand, olive gray (5Y 4/2) and dark grayish brown (2.5Y 4/2) moist; single grain; loose; about 10 percent gravel; about 70 percent shale in the 0.1 to 76 mm fraction; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/T/TOMERA.json b/inst/extdata/OSD/T/TOMERA.json index d8b75e7330..248d0e1450 100644 --- a/inst/extdata/OSD/T/TOMERA.json +++ b/inst/extdata/OSD/T/TOMERA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk1--66 to 86 cm; brown (10YR 5/3) clay, brown (10YR 5/3) moist, weak medium and fine subangular blocky structure; hard, friable, very sticky and very plastic; many very fine roots; many very fine exped tubular pores; common faint clay films on peds and in pores; 10 percent gravel; slightly effervescent, strongly effervescent in common fine pale brown (10YR 6/3) soft masses of carbonates; strongly alkaline (pH 8.8); clear wavy boundary. (15 to 36 cm thick)" diff --git a/inst/extdata/OSD/T/TONIO.json b/inst/extdata/OSD/T/TONIO.json index 7517ad6694..4ea4dfee1d 100644 --- a/inst/extdata/OSD/T/TONIO.json +++ b/inst/extdata/OSD/T/TONIO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 25 cm (0 to 10 in); brown (10YR 5/3) fine sandy loam, brown (10YR 4/3) moist; weak fine and medium subangular blocky structure; slightly hard, very friable; few fine roots; many fine pores; 2 percent threads and films of calcium carbonate; slight effervescence; moderately alkaline; gradual smooth boundary. (18 to 46 cm [7 to 18 in] thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bt1--25 to 76 cm (10 to 30 in); brown (7.5YR 5/4) sandy clay loam, brown (7.5YR 4/4) moist; weak fine and medium subangular blocky structure; slightly hard, very friable; few patchy clay films on faces of peds; few fine roots; many fine pores; 2 percent threads and films of calcium carbonate strong effervescence; moderately alkaline; gradual smooth boundary. (15 to 61 cm [6 to 24 in] thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--76 to 102 cm (30 to 40 in); light brown (7.5YR 6/4) sandy clay loam, brown (7.5YR 5/4) moist; moderate fine and medium subangular blocky structure; hard, friable, few patchy clay films on faces of peds; few fine roots; many fine pores; 7 percent threads and films of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (15 to 41 cm [6 to 16 in] thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk--102 to 137 cm (40 to 54 in); very pale brown (10YR 7/4) sandy clay loam, light yellowish brown (10YR 6/4) moist; weak fine and medium subangular blocky structure; hard, friable; few fine pores; 10 percent soft masses of calcium carbonate up to 12mm (1/2 in) diameter; strong effervescence; moderately alkaline; abrupt wavy boundary. (25 to 61 cm [10 to 24 in] thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--137 to 203 cm (54 to 80 in); pink (7.5YR 7/4) sandstone, reddish yellow (7.5YR 6/6) moist; few yellowish red (5YR 5/6) streaks; weakly cemented; brittle; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TONKA.json b/inst/extdata/OSD/T/TONKA.json index 58d313e020..9926c3e14e 100644 --- a/inst/extdata/OSD/T/TONKA.json +++ b/inst/extdata/OSD/T/TONKA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cg--50 to 60 inches; gray (5Y 5/1) clay loam, light gray (5Y 6/1) dry; many medium distinct dark brown (7.5YR 4/4) redoximorphic concentrations; weak fine platy and moderate very fine angular blocky structure; hard, friable, sticky and slightly plastic; few fine roots; common fine very dark brown (10YR 2/2) manganese concretions; about 3 percent gravel; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/T/TOOELE.json b/inst/extdata/OSD/T/TOOELE.json index 28c873868a..6ed2c4cc56 100644 --- a/inst/extdata/OSD/T/TOOELE.json +++ b/inst/extdata/OSD/T/TOOELE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C3--42 to 60 inches; very pale brown (10YR 7/4) fine sand, yellowish brown (10YR 5/4) moist; single grain; loose; few very fine pores; moderately effervescent, carbonates are disseminated; strongly alkaline (pH 9.2)." diff --git a/inst/extdata/OSD/T/TOOTALL.json b/inst/extdata/OSD/T/TOOTALL.json index 9112d45c2c..251ff42515 100644 --- a/inst/extdata/OSD/T/TOOTALL.json +++ b/inst/extdata/OSD/T/TOOTALL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 8 cm; dark yellowish brown (10YR 4/4) sandy clay loam, dark brown (10YR 3/3), moist; weak fine granular structure; very friable, soft, moderately sticky, moderately plastic; many very fine and common medium roots; many very fine dendritic tubular pores; slight effervescence; slightly alkaline (pH 7.8); clear wavy boundary. (3 to 14 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt1--8 to 21 cm; brown (7.5YR 5/4) clay loam, brown (7.5YR 4/3) moist; moderate very fine angular blocky structure; friable, slightly hard, very sticky, very plastic; many very fine and few medium roots; many fine tubular pores; 10 percent faint clay films on all faces of peds; strong effervescence; moderately alkaline (pH 8.0); clear wavy boundary." diff --git a/inst/extdata/OSD/T/TOPSEY.json b/inst/extdata/OSD/T/TOPSEY.json index db6053c2a1..5912c5fbf2 100644 --- a/inst/extdata/OSD/T/TOPSEY.json +++ b/inst/extdata/OSD/T/TOPSEY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 20 cm (0 to 8 in); dark grayish brown (10YR 4/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate very fine granular and subangular blocky structure; slightly hard, friable; common very fine, fine and few medium roots; common fine tubular pores; few wormcasts; violent effervescence; moderately alkaline; clear smooth boundary. Thickness is 18 to 36 cm (7 to 14 in)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw1--20 to 36 cm (8 to 14 in); grayish brown (2.5Y 5/2) clay loam, dark grayish brown (2.5Y 4/2) moist; moderate very fine granular and subangular blocky structure; hard, friable; common fine and few medium roots; common fine tubular pores; dark organic stains on some ped surfaces; few very fine concretions and soft masses of calcium carbonate; about 2 percent fossil shells from 1/10 inch to 1 1/2 inches across; violent effervescence; moderately alkaline; clear smooth boundary. Thickness is 13 to 41 cm (5 to 16 in)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw2--36 to 48 cm (14 to 19 in); light yellowish brown (2.5Y 6/4) gravelly loam, light olive brown (2.5Y 5/4) moist; moderate medium subangular blocky structure; hard, friable; common fine and few medium roots; common fine tubular pores; few very fine concretions, threads, and soft masses of calcium carbonate; about 30 percent fossil shells from 1/10 inch to 1 1/2 inches across; few grayish shale fragments; violent effervescence; moderately alkaline; clear smooth boundary. Combined thickness of the Bw horizons is 13 to 48 cm (5 to 19 in)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "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)" diff --git a/inst/extdata/OSD/T/TOTTEN.json b/inst/extdata/OSD/T/TOTTEN.json index dfcb72351d..0cf72fc97e 100644 --- a/inst/extdata/OSD/T/TOTTEN.json +++ b/inst/extdata/OSD/T/TOTTEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; black (10YR 2/1) loam, very dark gray (10YR 3/1) dry; moderate fine angular blocky structure parting to moderate fine granular; slightly hard, friable, slightly sticky, slightly plastic; many fine roots and pores; a few fine pebbles; strong effervescence; moderately alkaline; abrupt smooth boundary. (4 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Btn1--5 to 10 inches; very dark gray (10YR 3/1) sandy clay loam, dark gray (10YR 4/1) dry; interior of prisms are light brownish gray (2.5Y 6/2) and white (N 8/0) dry; moderate very coarse prismatic structure parting to strong fine and very fine angular blocky; hard, friable, sticky and plastic; common roots; clean sand grains coat faces of prisms; violent effervescence ped interiors; strong effervescence ped exteriors; moderately alkaline; clear irregular boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btn2--10 to 17 inches; light olive brown (2.5Y 5/4) sandy clay loam, light gray (2.5Y 7/2) dry; many fine and medium distinct gray (5Y 6/1) redoximorphic depletions and yellowish brown (10YR 5/6) redoximorphic concentrations; very dark gray (10YR 3/1) coatings on faces of prisms; moderate very coarse prismatic structure parting to moderate fine and very fine angular blocky; hard, friable, slightly sticky, slightly plastic; few roots; common fine pores; diffuse carbonates in interior of peds; violent effervescence; moderately alkaline; gradual wavy boundary. (Combined Btn horizons 4 to 19 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Bk--17 to 26 inches; olive gray (5Y 5/2) loam, light gray (5Y 7/1) dry; patches of dark grayish brown (2.5Y 4/2) on faces of prisms; many fine and medium prominent yellowish brown (10YR 5/6) and few fine prominent black (10YR 2/1) redoximorphic concentrations and medium distinct gray (5Y 6/1) redoximorphic depletions; moderate very coarse prismatic structure parting to moderate coarse and medium platy and moderate and strong fine and very fine angular blocky; hard, friable, slightly sticky, slightly plastic; few roots; slight effervescence, strong effervescence in interiors of peds; moderately alkaline; clear irregular boundary. (0 to 9 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--26 to 34 inches; light olive brown (2.5Y 5/4) coarse sand, light yellowish brown (2.5Y 6/4) dry; common distinct light gray (5Y 7/2) dry redoximorphic depletions and few fine prominent black (10YR 2/1) redoximorphic concentrations; single grain; slightly hard, loose, nonsticky; slight effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C2--34 to 40 inches; dark yellowish brown (10YR 4/4) gravelly coarse sand, light yellowish brown (10YR 6/4) dry; single grain; loose; 25 percent by volume of fragments coarser than 2 mm; slight effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--40 to 60 inches; olive brown (2.5Y 4/4) and brown (10YR 5/3) stratified coarse sand and very gravelly coarse sand, light olive brown (2.5Y 5/4) and light yellowish brown (10YR 6/4) dry; single grained; loose; 10 to over 60 percent by volume of fragments coarser than 2 mm in some strata; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TOULON.json b/inst/extdata/OSD/T/TOULON.json index 79a3210a54..47732fb2d6 100644 --- a/inst/extdata/OSD/T/TOULON.json +++ b/inst/extdata/OSD/T/TOULON.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk--51 to 157 cm; gray (N 5/) and pinkish white (7.5YR 8/2) very gravelly very coarse sand, very dark gray (N 3/) and pinkish white (7.5YR 8/2) moist; common colorless quartz grains and other very pale brown (10YR 7/3) sand and fine gravel; single grain; loose, nonsticky and nonplastic; many very fine interstitial pores; 40 percent gravel and 15 percent cobbles; slightly effervescent to strongly effervescent where carbonates coat the undersides of gravel and cobbles; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/T/TOWNER.json b/inst/extdata/OSD/T/TOWNER.json index c99efe1a70..81d5d58f20 100644 --- a/inst/extdata/OSD/T/TOWNER.json +++ b/inst/extdata/OSD/T/TOWNER.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--29 to 36 inches; grayish brown (2.5Y 5/2) loam, light gray (2.5Y 7/2) dry; weak medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 25 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--36 to 60 inches; olive brown (2.5Y 4/4) loam, light brownish gray (2.5Y 6/2) dry; weak medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TRACK.json b/inst/extdata/OSD/T/TRACK.json index ba7640bcb2..ff0eaed4c0 100644 --- a/inst/extdata/OSD/T/TRACK.json +++ b/inst/extdata/OSD/T/TRACK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A11--0 to 3 inches; dark gray (10YR 4/1) loam; very dark gray (10YR 3/1) moist; weak thin platy structure; soft, friable, slightly sticky and slightly plastic; many roots; about 2 percent pebbles; violent effervescence; moderately alkaline (pH 8.2); abrupt smooth boundary. (3 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A12--3 to 8 inches; gray (10YR 5/1) loam,; very dark gray (10YR 3/1) moist; moderate thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; common roots; common fine pores; about 2 percent pebbles; violent effervescence; moderately alkaline (pH 8.3); abrupt smooth boundary. (2 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "B21--8 to 16 inches; gray (10YR 5/1) loam, very dark gray (10YR 3/1) moist; moderate medium angular blocky structure; hard, friable, sticky and plastic; few roots; common fine pores; about 5 percent pebbles; violent effervescence; moderately alkaline (pH 8.4); abrupt wavy boundary. (6 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "IIB22--16 to 22 inches; gray (10YR 5/1) very gravelly loam, very dark gray (10YR 3/1) moist; few yellowish red (5YR 5/6) medium prominent mottles; massive; hard, firm, sticky and plastic; few roots; few fine pores; about 55 percent pebbles; strong effervescence; some disseminated and segregated lime, some pebbles are lime coated on their lower side; strongly alkaline (pH 8.5); abrupt wavy boundary. (4 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIIC--22 to 60 inches thick; grayish brown (10YR 5/2) extremely gravelly sand; very dark grayish brown (10YR 3/2) moist; few medium prominent yellowish red (5YR 5/6) mottles; single grained; loose; few fine roots; about 70 percent pebbles and cobbles; slight effervescence; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/T/TRACTUFF.json b/inst/extdata/OSD/T/TRACTUFF.json index 15438e4755..ebb82e2ea4 100644 --- a/inst/extdata/OSD/T/TRACTUFF.json +++ b/inst/extdata/OSD/T/TRACTUFF.json @@ -158,7 +158,7 @@ "cf_class": "extremely cobbly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btk3--41 to 48 cm; pale brown (10YR 6/3) extremely cobbly sandy clay loam, yellowish brown (10YR 5/4) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very coarse and coarse roots; few very fine and fine tubular pores; 15 percent gravel, 50 percent cobbles; common faint clay films on faces of peds and lining pores; few distinct secondary calcium carbonate coats on bottom of rock fragments and pockets of disseminated secondary calcium carbonate that are violently effervescent; strongly effervescent matrix; moderately alkaline (pH 8.0); abrubt wavy boundary. (8 to 18 cm thick)" diff --git a/inst/extdata/OSD/T/TRAER.json b/inst/extdata/OSD/T/TRAER.json index e627befb2e..e3a78488a7 100644 --- a/inst/extdata/OSD/T/TRAER.json +++ b/inst/extdata/OSD/T/TRAER.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--50 to 60 inches; mottled light olive gray (5Y 6/2) and yellowish brown (10YR 5/6) silt loam (24 percent clay); massive; friable; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/T/TREADWAY.json b/inst/extdata/OSD/T/TREADWAY.json index 3a4ded5a57..bdbaf00fb1 100644 --- a/inst/extdata/OSD/T/TREADWAY.json +++ b/inst/extdata/OSD/T/TREADWAY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A1--0 to 2 inches; reddish brown (5YR 5/3) silty clay loam, reddish brown (5YR 4/3) moist; moderate medium platy structure; firm, hard; common fine and very fine and common medium roots; many fine and common medium pores; 1 percent shale fragments; very slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A2--2 to 13 inches; reddish brown (5YR 5/4) silty clay loam, reddish brown (5YR 4/4) moist; moderate coarse platy structure; very firm, extremely hard; common fine and very fine and common medium roots; many fine and common medium pores; 1 percent fine carbonate masses; 1 percent fine gypsum crystals, by volume; 1 percent gypsum, by weight; 1 percent fine crystals of other salts; very slightly saline; slightly sodic; 1 percent shale fragments; slight effervescence; moderately alkaline; gradual smooth boundary. (combined thickness of the A horizon : 5 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkyz1--13 to 24 inches; reddish brown (5YR 5/4) silty clay loam, reddish brown (5YR 4/4) moist; weak medium prismatic structure parting to moderate fine subangular blocky; very firm, extremely hard; common fine and very fine and few medium roots; common fine and few medium pores; 1 percent fine carbonate masses; 10 percent fine gypsum crystals, by volume; 9 percent gypsum, by weight; 2 percent fine crystals of other salts; slightly saline; slightly sodic; 1 percent shale fragments; slight effervescence; moderately alkaline; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkyz2--24 to 37 inches; reddish brown (5YR 5/3) silty clay, reddish brown (5YR 4/3) moist; weak coarse prismatic structure parting to weak medium angular blocky; very firm, extremely hard; common fine and very fine and few medium roots; few fine and very fine pores; 15 percent distinct pressure faces; 1 percent fine carbonate masses; 3 percent fine gypsum crystals, by volume; 2 percent gypsum, by weight; 5 percent fine crystals of other salts; moderately saline; strongly sodic; slight effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bkyz3--37 to 43 inches; reddish brown (5YR 5/4) silty clay, reddish brown (5YR 4/4) moist; weak medium prismatic structure; few faint bedding planes; very firm, extremely hard; few fine and very fine roots; few fine and very fine pores; 1 percent fine carbonate masses; 1 percent fine gypsum crystals, by volume; 2 percent gypsum, by weight; 5 percent fine crystals of other salts; moderately saline; strongly sodic; strong effervescence; moderately alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bkyz4--43 to 58 inches; reddish brown (5YR 5/3) silty clay, reddish brown (5YR 4/3) moist; weak medium prismatic structure; very firm, extremely hard; few fine and very fine roots; few fine and very fine pores; few fine iron-manganese masses; 1 percent fine carbonate masses; 1 percent fine gypsum crystals, by volume; 2 percent gypsum, by weight; 10 percent fine crystals of other salts; moderately saline; strongly sodic; slight effervescence; moderately alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyz5--58 to 70 inches; reddish brown (5YR 5/3) silty clay, reddish brown (5YR 4/3) moist; weak medium prismatic structure parting to moderate medium angular blocky; very firm, extremely hard; few fine and very fine roots; few fine and very fine pores; few fine iron-manganese masses; 1 percent fine carbonate masses; 1 percent fine gypsum crystals, by volume; 3 percent gypsum, by weight; 3 percent fine crystals of other salts; moderately saline; strongly sodic; slight effervescence; moderately alkaline; gradual wavy boundary. (combined thickness of the Bkyz horizons : 20 to70 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkssyz--70 to 80 inches; reddish brown (5YR 5/3) silty clay, reddish brown (5YR 4/3) moist; weak coarse angular blocky structure parting to weak medium angular blocky; very firm, extremely hard; few fine and very fine roots; few fine and very fine pores; 5 percent distinct slickensides; few fine iron-manganese masses; 1 percent fine carbonate masses; 1 percent fine gypsum crystals, by volume; 2 percent gypsum, by weight; 2 percent fine crystals of other salts; moderately saline; strongly sodic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TREBOR.json b/inst/extdata/OSD/T/TREBOR.json index 07c44cde8e..bc40a9ae8a 100644 --- a/inst/extdata/OSD/T/TREBOR.json +++ b/inst/extdata/OSD/T/TREBOR.json @@ -158,7 +158,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--7 to 11 inches; reddish brown (5YR 5/3) and very pale brown (10YR 7/4) channery silt loam, reddish brown (5YR 4/3) and yellowish brown (10YR 5/4) moist; moderate fine and medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few fine and coarse roots; 20 percent by volume fragments of limestone; slight effervescence; slightly alkaline; gradual wavy boundary. (3 to 7 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--11 to 30 inches; yellow (10YR 8/6) very channery silt loam, brownish yellow (10YR 6/6) moist; weak medium and coarse subangular blocky structure; hard, friable; few fine and coarse roots; 45 percent by volume fragments of limestone; strong effervescence; moderately alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/T/TRENARY.json b/inst/extdata/OSD/T/TRENARY.json index b92f482314..d4a9bdd1b9 100644 --- a/inst/extdata/OSD/T/TRENARY.json +++ b/inst/extdata/OSD/T/TRENARY.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--48 to 80 inches; reddish brown (2.5YR 4/4) sandy loam; weak medium subangular blocky structure; friable; about 2 percent gravel and 3 percent cobbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TREON.json b/inst/extdata/OSD/T/TREON.json index ae2284d5af..8a70ccc12f 100644 --- a/inst/extdata/OSD/T/TREON.json +++ b/inst/extdata/OSD/T/TREON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 18 centimeters (0 to 7 inches); brown (10YR 5/3) fine sandy loam, dark brown (l0YR 3/3) moist; moderate medium granular structure; soft, very friable; strong effervescence; slightly alkaline (pH 7.4); clear smooth boundary. (10 to 23 centimeters (4 to 9 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ck--18 to 28 centimeters (7 to 11 inches); very pale brown (10YR 7/3) fine sandy loam, dark brown (10YR 3/3) moist; massive; slightly hard, very friable; lime disseminated through entire mass; violent effervescence; slightly alkaline (pH 7.7); abrupt smooth boundary. (5 to 28 centimeters (2 to 11 inches) thick)" diff --git a/inst/extdata/OSD/T/TREY.json b/inst/extdata/OSD/T/TREY.json index c85e663a13..b6996c0b7d 100644 --- a/inst/extdata/OSD/T/TREY.json +++ b/inst/extdata/OSD/T/TREY.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr3--47 to 60 inches; light gray (5Y 7/2) soft sandstone; olive gray (5Y 5/2) moist; very few fine roots penetrate into the bedrock; few fine accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TRIBBEY.json b/inst/extdata/OSD/T/TRIBBEY.json index d5e0951c66..aff522d28e 100644 --- a/inst/extdata/OSD/T/TRIBBEY.json +++ b/inst/extdata/OSD/T/TRIBBEY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Ab--127 to 165 cm (50 to 65 in); very dark grayish brown (10YR 3/2) loam; weak fine granular structure; slightly hard, friable; saturated with water; common fine distinct red (2.5YR 4/6) masses of iron accumulation with clear boundaries; common fine distinct gray (10YR 5/1) iron depletions with __ boundaries; slight effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/T/TRIPP.json b/inst/extdata/OSD/T/TRIPP.json index 55722fd8cc..310dd160fe 100644 --- a/inst/extdata/OSD/T/TRIPP.json +++ b/inst/extdata/OSD/T/TRIPP.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--89 to 114 centimeters (35 to 45 inches); very pale brown (10YR 8/2) very fine sandy loam, light brownish gray (10YR 6/2) moist; weak medium subangular blocky structure; slightly hard, friable; thread-like secondary deposits of carbonates; violent effervescence; moderately alkaline; clear wavy boundary. (10 to 30 centimeters (4 to 12 inches) thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--114 to 203 centimeters (45 to 80 inches); very pale brown (10YR 7/3) loam, brown (10YR 5/3) moist; massive; soft, very friable; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TROSKY.json b/inst/extdata/OSD/T/TROSKY.json index 536efbd838..9ec3c8a64a 100644 --- a/inst/extdata/OSD/T/TROSKY.json +++ b/inst/extdata/OSD/T/TROSKY.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--8 to 14 inches; black (N 2/0) silty clay loam, very dark gray (10YR 3/1) dry; moderate very fine subangular blocky structure; friable; slightly effervescence; slightly alkaline; clear smooth boundary. (4 to 12 inches thick)" diff --git a/inst/extdata/OSD/T/TROUT_COVE.json b/inst/extdata/OSD/T/TROUT_COVE.json index d1fd08fc4d..b6761dd96a 100644 --- a/inst/extdata/OSD/T/TROUT_COVE.json +++ b/inst/extdata/OSD/T/TROUT_COVE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Lma1--0 to 8 centimeters (0 to 3 inches); grayish brown (10YR 5/2) marly silt loam, light gray (10YR 7/1), dry; weak fine granular structure; very friable, soft; slightly sticky, slightly plastic; many fine, common medium and common coarse roots throughout; 10 percent shell fragments; strong effervescence; moderately alkaline (pH 7.9); clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Lma2--8 to 13 centimeters (3 to 5 inches); light gray (2.5Y 7/1) marly silt loam; weak fine granular structure; very friable, soft; slightly sticky, slightly plastic; many fine, common medium and common coarse roots throughout; 10 percent shell fragments; strong effervescence; moderately alkaline (pH 8.0); clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Lma3--13 to 36 centimeters (5 to 14 inches); light gray (2.5Y 7/2) marly silt; moderate medium subangular blocky structure; very friable, soft; nonsticky, nonplastic; many fine, common medium and common coarse roots throughout; 10 percent fine faint spherical 2.5Y (5/1) masses of reduced iron throughout; 10 percent shell fragments; strong effervescence; moderately alkaline (pH 7.9); gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Lma4--36 to 99 centimeters (14 to 39 inches); grayish brown (2.5Y 5/2) marly silt; moderate medium subangular blocky structure; very friable, soft; nonsticky, nonplastic; common fine and medium roots throughout; 10 percent shell fragments; strong effervescence; slightly alkaline (pH 7.7); clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Lma5--99 to 109 centimeters (39 to 42 inches); light yellowish brown (2.5Y 6/3) marly silt; massive; very friable, soft; nonsticky, nonplastic; common fine and few medium throughout; strong effervescence; moderately alkaline (pH 8.0); abrupt irregular boundary. [Combined thickness of the Lma horizons is 100 to 150 centimeters (40 to 60 inches)]" diff --git a/inst/extdata/OSD/T/TRUJILLO.json b/inst/extdata/OSD/T/TRUJILLO.json index 9f07ea0ef3..16c5cf74d4 100644 --- a/inst/extdata/OSD/T/TRUJILLO.json +++ b/inst/extdata/OSD/T/TRUJILLO.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk--58 to 70 inches; yellowish brown (10YR 5/4) fine sandy loam, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, friable, nonsticky and nonplastic; few fine and very fine roots; few fine irregular soft masses of lime; slightly effervescent (matrix is noneffervescent); slightly alkaline (pH 7.5)." diff --git a/inst/extdata/OSD/T/TRULON.json b/inst/extdata/OSD/T/TRULON.json index 3de10d518e..6d28f0ef59 100644 --- a/inst/extdata/OSD/T/TRULON.json +++ b/inst/extdata/OSD/T/TRULON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "weak effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ap--0 to 3 inches; grayish brown (10YR 5/2) loam, dark brown (10YR 3/3) moist; weak medium platy structure slightly hard, friable, moderately sticky, slightly plastic; weak effervescence." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A--3 to 7 inches; brown (10YR 5/3) loam, dark brown (10YR 3/3) moist; weak medium prismatic structure, hard, friable, slightly sticky, slightly plastic; moderate effervescence; wavy boundary. (A horizon is 6 to 10 inches thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bw--7 to 9 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; moderate coarse prismatic structure hard, friable, slightly sticky, slightly plastic; violent effervescence, common soft masses of segregated lime; less than 15 percent limestone fragments; gradual boundary. (2 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--9 to 15 inches; very pale brown (10YR 7/3) loam, pale brown (10YR 6/3) moist; weak coarse prismatic structure; hard, friable, slightly sticky, slightly plastic; violent effervescence, lime flour and common medium lime masses; few limestone fragments; clear wavy boundary. (8 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Ck--15 to 30 inches; pink (7.5YR 8/3) gravelly loam, pink (7.5YR 7/3) moist; massive; slightly hard, friable s1ightly sticky, slightly plastic; violent effervescence; about 20 percent limestone fragments with thick lime coats on all surfaces; abrupt irregular boundary." diff --git a/inst/extdata/OSD/T/TRUMBULL.json b/inst/extdata/OSD/T/TRUMBULL.json index b1fb1d32d8..d92a21d5e6 100644 --- a/inst/extdata/OSD/T/TRUMBULL.json +++ b/inst/extdata/OSD/T/TRUMBULL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--112 to 152 cm (44 to 60 in); gray (N 5/0) silty clay loam; many medium prominent yellowish brown (10YR 5/6) concentrations; massive; firm; 3 percent rock fragments; moderately alkaline; strong effervescence." diff --git a/inst/extdata/OSD/T/TSAYA.json b/inst/extdata/OSD/T/TSAYA.json index 846d47e2c6..3d39d55c7c 100644 --- a/inst/extdata/OSD/T/TSAYA.json +++ b/inst/extdata/OSD/T/TSAYA.json @@ -112,7 +112,7 @@ "cf_class": "very channery", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "C1--3 to 6 inches; reddish brown (2.5YR 4/4) very channery loam, dark reddish brown (2.5YR 3/4) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; 40 percent channers, 15 percent flagstones; common fine and very fine roots; few fine and very fine tubular pores; moderately effervescent; moderately alkaline (pH 8.1); clear smooth boundary. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/T/TUFFMAN.json b/inst/extdata/OSD/T/TUFFMAN.json index a2683b2294..a0b1dba1f0 100644 --- a/inst/extdata/OSD/T/TUFFMAN.json +++ b/inst/extdata/OSD/T/TUFFMAN.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "V1--0 to 1 cm; pale brown (10YR 6/3) very gravelly sandy loam, brown (10YR 4/3), moist; weak medium platy; soft, very friable, nonsticky and nonplastic; many very fine and fine vesicular pores; 5 percent cobbles and 50 percent gravel; violent effervescence; moderately alkaline, (pH 8.4); abrupt smooth boundary. (0 to 5 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "V2--1 to 5 cm; pale brown (10YR 6/3) very gravelly loam, brown (10YR 4/3), moist; weak medium platy structure; soft, very friable, slightly sticky and slightly plastic; many very fine and fine vesicular pores; 40 percent gravel; violent effervescence; strongly alkaline, (pH 8.6); clear smooth boundary. (0 to 12 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--5 to 23 cm; light brown (7.5YR 6/3) extremely gravelly loam, brown (7.5YR 4/3), moist; moderate fine subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and fine roots; few fine tubular pores; 10 percent cobbles and 60 percent gravel; fine carbonate concretions on underside of most rock fragments; violent effervescence; moderately alkaline, (pH 8.2); clear smooth boundary. (15 to 25 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk2--23 to 28 cm; light brown (7.5YR 6/3) extremely gravelly sandy loam, brown (7.5YR 5/3), moist; moderate fine subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and fine roots; few fine tubular pores; 5 percent cobbles and 75 percent gravel; fine carbonate concretions on underside of most rock fragments; violent effervescence; moderately alkaline, (pH 8.0); abrupt wavy boundary. (0 to 13 cm thick)" diff --git a/inst/extdata/OSD/T/TUGAS.json b/inst/extdata/OSD/T/TUGAS.json index 363f002b69..45cd79d5c0 100644 --- a/inst/extdata/OSD/T/TUGAS.json +++ b/inst/extdata/OSD/T/TUGAS.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--7 to 11 inches; reddish brown (5YR 5/4) very gravelly sandy loam, reddish brown (5YR 4/4) moist; weak very fine granular structure; soft, very friable, nonsticky and nonplastic; few fine roots; 35 percent gravel; fine earth, strongly effervescent, some gravel tops are noneffervescent; sand grains are discontinuously calcium carbonate coated, they also have discontinuous coatings of clay; most gravel have calcium carbonate coated bottoms but tops of many gravel are calcium carbonate free; moderately alkaline; clear wavy boundary. (0 to 6 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--30 to 61 inches; light brown (7.5YR 6/4) very gravelly sand, brown (7.5YR 5/4) moist; massive; soft, very friable, nonsticky and nonplastic; 35 percent gravel; in places there are distinct strata of sand, 1 to 2 cm thick, and of fine gravel up to 10 cm thick, other parts are very gravelly throughout with little stratification apparent; most parts are slightly or strongly effervescent with a few places noneffervescent; some gravel are calcium carbonate free and others have thin, patchy coatings; moderately alkaline." diff --git a/inst/extdata/OSD/T/TUGHILL.json b/inst/extdata/OSD/T/TUGHILL.json index a690311ffd..edcccaf38d 100644 --- a/inst/extdata/OSD/T/TUGHILL.json +++ b/inst/extdata/OSD/T/TUGHILL.json @@ -250,7 +250,7 @@ "cf_class": "extremely gravelly", "pH": 7.3, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C -- 105 to 130 cm; 50 percent gray (2.5Y 6/1) and 50 percent light brownish gray (2.5Y 6/2); extremely gravelly loam; massive; firm; 50 percent gravel, 20 percent cobbles and 2 percent stones; slight effervescence, HCl; neutral (pH 7.3)." diff --git a/inst/extdata/OSD/T/TULELAKE.json b/inst/extdata/OSD/T/TULELAKE.json index 009ce9c197..73a2d0a2a2 100644 --- a/inst/extdata/OSD/T/TULELAKE.json +++ b/inst/extdata/OSD/T/TULELAKE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Cca1--39 to 43 inches; gray (10YR 6/1) silty clay, dark gray (10YR 4/1) moist; few fine prominent strong brown (7.5YR 5/8) mottles, yellowish red (5YR 4/6) moist; moderate fine medium and coarse subangular blocky structure; hard, firm, sticky and plastic; common very fine and few fine roots; common very fine and fine tubular pores; pressure faces on peds; many slightly effervescent areas of disseminated lime and common strongly effervescent filaments and threads of lime; moderately alkaline (pH 8.0); abrupt wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "3Cca2--43 to 47 inches; gray (10YR 6/1) silty clay loam, dark gray (10YR 4/1) moist, few fine prominent strong brown (7.5YR 5/8) mottles, yellowish red (5YR 4/6) moist; moderate fine, medium and coarse subangular blocky structure; hard, firm, sticky and plastic; common very fine and few fine roots; common very fine and fine tubular pores; pressure faces on peds; many slightly effervescent areas of disseminated lime and common strongly effervescent filaments and threads of lime; moderately alkaline (pH 8.3); clear wavy boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/T/TULIA.json b/inst/extdata/OSD/T/TULIA.json index b475b4adb0..0d51a01465 100644 --- a/inst/extdata/OSD/T/TULIA.json +++ b/inst/extdata/OSD/T/TULIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 15 cm (0 to 6 in); brown (7.5YR 5/3) loam, brown (7.5YR 4/3) moist; moderate fine subangular blocky structure; slightly hard, friable; common very fine and fine roots; about 10 percent by volume calcium carbonate nodules and finely disseminated carbonates; violent effervescence; moderately alkaline; clear smooth boundary. (10 to 30 cm thick)." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkk--15 to 43 cm (6 to 17 in); light brown (7.5YR 6/4) clay loam, brown (7.5YR 5/4), moist; moderate fine subangular blocky structure; hard, firm; common very fine and fine roots; about 40 percent by volume calcium carbonate masses, nodules, and finely disseminated carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (15 to 41 cm thick. )" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkk--43 to 74 cm (17 to 29 in); strong brown (7.5YR 5/6) clay loam, strong brown (7.5YR 4/6), moist; moderate fine subangular blocky structure; very hard, very firm; few very fine and fine roots; few faint discontinuous clay films on ped surfaces; about 55 percent by volume calcium carbonate masses, nodules, and finely disseminated carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (15 to 66 cm thick)." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--74 to 117 centimeters (29 to 46 inches); strong brown (7.5YR 5/6) clay loam, strong brown (7.5YR 4/6), moist; weak coarse prismatic parts to moderate fine subangular blocky structure; very hard, very firm; few very fine roots; few distinct discontinuous clay films on ped surfaces; about 35 percent by volume calcium carbonate masses, nodules, and finely disseminated carbonates; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--117 to 147 cm (46 to 58 inches); strong brown (7.5YR 5/6), sandy clay loam, strong brown (7.5YR 4/6), moist; weak coarse prismatic parts to moderate fine subangular blocky structure; hard, firm; few very fine roots; common distinct discontinuous clay films on ped surfaces; about 30 percent by volume calcium carbonate masses, nodules, and finely disseminated carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (combined horizons 50 to 80 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btk3--147 to 188 cm (58 to 74.0 inches); reddish yellow (7.5YR 6/6), sandy clay loam, strong brown (7.5YR 5/6), moist; moderate fine subangular blocky structure; slightly hard, friable; few very fine roots; few faint discontinuous clay films on ped surfaces; about 20 percent by volume calcium carbonate masses, nodules, and finely disseminated carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (40 to 60 cm thick)." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btk4--188 to 203 cm (74 to 80 inches); yellowish red (5YR 5/6) and pink (7.5YR 7/3), sandy clay loam, yellowish red (5YR 4/6) and brown (7.5YR 5/3), moist; moderate fine subangular blocky structure; slightly hard, friable; few very fine roots; few faint discontinuous clay films on ped surfaces; about 17 percent by volume calcium carbonate masses, nodules, and finely disseminated carbonates; half to one-inch-thick lenses of gravels; violent effervescence; moderately alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/T/TUPPER.json b/inst/extdata/OSD/T/TUPPER.json index e0dce87e7d..b3c2194d8b 100644 --- a/inst/extdata/OSD/T/TUPPER.json +++ b/inst/extdata/OSD/T/TUPPER.json @@ -158,7 +158,7 @@ "cf_class": "extremely bouldery", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkq1--30 to 43 inches; yellowish brown (10YR 5/4) extremely bouldery fine sandy loam, dark yellowish brown (10YR 4/4) moist; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine and medium roots; common very fine and few fine tubular pores; about 30 percent boulders, 15 percent stones, 15 percent cobbles, and 15 percent gravel; strong effervescence (about 15 percent calcium carbonate equivalent); lime-silica coats on bottom of rock fragments 1 to 5 mm thick and in places bridging rock fragments. slightly alkaline (pH 7.4); clear wavy boundary. (3 to 17 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely bouldery", "pH": 7.6, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkq2--43 to 66 inches; yellowish brown (10YR 5/4) extremely bouldery loamy fine sand, dark yellowish brown (10YR 4/4) moist; single grain; loose; few fine roots; many very fine and few fine irregular pores; about 30 percent boulders, 15 percent stones, 15 percent cobbles, and 10 percent gravel; many splotches and fine veins of lime; violent effervescence (about 25 percent calcium carbonate equivalent); lime-silica coats on bottom of rock fragments 1 to 5 mm. thick and in places bridging rock fragments; weakly cemented lenses that are brittle when dry and firm when moist; moderately alkaline (pH 7.6)." diff --git a/inst/extdata/OSD/T/TURTON.json b/inst/extdata/OSD/T/TURTON.json index 9b828299b8..f91913bfe3 100644 --- a/inst/extdata/OSD/T/TURTON.json +++ b/inst/extdata/OSD/T/TURTON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btnkz--27 to 41 inches; grayish brown (2.5Y 5/2) loam, very dark grayish brown (2.5Y 3/2) moist; moderate coarse and medium prismatic structure parting to moderate coarse and medium angular blocky; very hard, friable; common medium and fine accumulations of carbonate; common fine nests of salts; strong effervescence; strongly alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz--41 to 47 inches; light brownish gray (2.5Y 6/2) loam, grayish brown (2.5Y 5/2) moist; weak coarse and medium prismatic structure parting to weak medium angular blocky; hard, friable; many coarse, medium and fine accumulations of carbonate; common fine nests of salts; violent effervescence; very strongly alkaline; gradual wavy boundary. (5 to 15 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--47 to 60 inches; light gray (2.5Y 7/2) very fine sandy loam, light brownish gray (2.5Y 6/2) moist; many fine distinct yellowish brown (10YR 5/6) redox concentrations and common medium and fine faint gray (10YR 6/1) redox depletions; massive; slightly hard, friable; common fine nests of salts; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/T/TUSLER.json b/inst/extdata/OSD/T/TUSLER.json index 8a60b8a77c..5c16f87d8b 100644 --- a/inst/extdata/OSD/T/TUSLER.json +++ b/inst/extdata/OSD/T/TUSLER.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--3 to 10 inches; grayish brown (10YR 5/2) loamy fine sand, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure; loose; many roots; slight effervescence; slightly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--10 to 19 inches; brown (10YR 5/3) loamy fine sand, brown (10YR 4/3) moist; weak medium subangular blocky structure; loose; few roots; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C3--19 to 27 inches; light yellowish brown (2.5Y 6/4) loamy fine sand, light olive brown (2.5Y 5/4) moist; weak medium subangular blocky structure parting to single grain; loose; few roots; strong effervescence; moderately alkaline; clear wavy boundary. (Combined C horizons 12 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--27 to 60 inches; light gray (2.5Y 7/2) soft sandstone that crushes to loamy fine sand, grayish brown (2.5Y 5/2) moist; hard and brittle when dry; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TUTHILL.json b/inst/extdata/OSD/T/TUTHILL.json index 263a5a6850..935ccf661c 100644 --- a/inst/extdata/OSD/T/TUTHILL.json +++ b/inst/extdata/OSD/T/TUTHILL.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--48 to 60 inches; light gray (10YR 7/2) and white (10YR 8/1) loamy sand, light brownish gray (10YR 6/2) and light gray (10YR 7/2) moist; single grained; loose; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TUTTLE.json b/inst/extdata/OSD/T/TUTTLE.json index b1caf898de..c7b60e2089 100644 --- a/inst/extdata/OSD/T/TUTTLE.json +++ b/inst/extdata/OSD/T/TUTTLE.json @@ -89,7 +89,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 15 inches; very dark grayish brown (10YR 3/2) channery silty clay loam, very dark brown (10YR 2/2) moist; moderate fine granular structure; slightly hard, friable; many fine and medium roots; few chert fragments less than 2 inches in diameter, 20 percent by volume limestone fragments, 1/4 inch to 24 inches in length; strong effervescence; moderately alkaline; abrupt smooth boundary. (8 to 18 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw1--15 to 24 inches; dark grayish brown (10YR 4/2) channery silty clay loam, very dark grayish brown (10YR 3/2) moist; moderate fine blocky structure; slightly hard, friable; many fine and medium roots; 25 percent by volume limestone fragments, 1/4 inch to 24 inches in length; few gravel size fragments; strong effervescence; moderately alkaline; abrupt smooth boundary. (7 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bw2--24 to 36 inches; brown (7.5YR 5/2) channery silty clay loam, dark reddish gray (5YR 4/2) moist; moderate fine subangular blocky structure; slightly hard, friable; many fine roots; 20 percent by volume limestone fragments, 1/4 inch to 15 inches length; strong effervescence; moderately alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bw3--36 to 46 inches; light brown (7.5YR 6/4) silty clay loam, brown (7.5YR 4/4) moist; weak fine subangular blocky structure; slightly hard, friable; common fine roots; 10 percent by volume limestone fragments, 1/4 inch to 15 inches in length; strong effervescence; moderately alkaline; clear smooth boundary. (Combined thickness of 2Bw ranges from 10 to 24 inches.)" diff --git a/inst/extdata/OSD/T/TWILIGHT.json b/inst/extdata/OSD/T/TWILIGHT.json index 73d2451854..8ae4dc5a05 100644 --- a/inst/extdata/OSD/T/TWILIGHT.json +++ b/inst/extdata/OSD/T/TWILIGHT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--16 to 28 inches; light gray (2.5Y 7/2) fine sandy loam, grayish brown (2.5Y 5/2) moist; weak coarse subangular blocky; slightly hard, very friable; few fine roots; few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 15 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--28 to 60 inches; white (2.5Y 8/1) weakly cemented sandstone, light brownish gray (2.5Y 6/2) moist; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/T/TWINPALMS.json b/inst/extdata/OSD/T/TWINPALMS.json index 64957d753f..f7c14cd489 100644 --- a/inst/extdata/OSD/T/TWINPALMS.json +++ b/inst/extdata/OSD/T/TWINPALMS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 20 cm (0 to 8 in); light olive brown (2.5Y 5/3) fine sand, light yellowish brown (2.5Y 6/3) dry; weak fine subangular blocky structure parting to single grain; loose; 6 percent very fine and fine roots; 5 percent fine faint light yellowish brown (2.5Y 6/4) masses of oxidized iron with clear boundaries lining pores; 2 percent gravel-sized and 10 percent sand-sized seashell fragments; nonsaline; Sodium Adsorption Ratio is less than 1; very slight effervescence; slightly alkaline; clear smooth boundary." diff --git a/inst/extdata/OSD/T/TWOBITTER.json b/inst/extdata/OSD/T/TWOBITTER.json index 2114d9bf47..580f2bc7fe 100644 --- a/inst/extdata/OSD/T/TWOBITTER.json +++ b/inst/extdata/OSD/T/TWOBITTER.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bkq -- 35 to 60 inches; yellowish brown (10YR 5/4) very gravelly coarse sand, dark yellowish brown (10YR 3/4) moist; massive; slightly hard, friable, nonsticky and nonplastic; 15 percent discontinuous bands and pockets of lime and silica, very weakly cemented, strongly effervescent; 45 percent gravel and 3 percent cobbles; noneffervescent; slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/T/TWOJAYAY.json b/inst/extdata/OSD/T/TWOJAYAY.json index 05968e59a9..5cd069fa00 100644 --- a/inst/extdata/OSD/T/TWOJAYAY.json +++ b/inst/extdata/OSD/T/TWOJAYAY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 20 cm; light gray (10YR 7/2) ashy sandy loam, grayish brown (10YR 5/2) moist; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; many very fine and common fine roots; many very fine interstitial pores; strong effervescence; very strongly alkaline (pH 9.6); clear smooth boundary. (13 to 25 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--20 to 50 cm; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; 5 percent medium very dark gray (10YR 3/1) redox depletions; moderate medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common very fine and fine roots; common very fine and fine tubular and interstitial pores; strong effervescence; very strongly alkaline (pH 9.6); clear wavy boundary. (20 to 30 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--50 to 66 cm; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; 25 percent fine and medium yellowish brown (10YR 5/4) redox concentrations; massive; hard, friable, moderately sticky and moderately plastic; few very fine and fine roots; common very fine and fine tubular and interstitial pores; strong effervescence; very strongly alkaline (pH 9.6); clear wavy boundary. (10 to 20 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C3--66 to 81 cm; light brownish gray (2.5Y 6/2) loam, very dark grayish brown (2.5Y 3/2) moist; 25 percent fine yellowish brown (10YR 5/6) redox concentrations; massive; hard, friable, moderately sticky and moderately plastic; few very fine and fine roots; common very fine and fine interstitial pores; slight effervescence; very strongly alkaline (pH 9.2); clear wavy boundary. (15 to 25 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C4--81 to 112 cm; light brownish gray (2.5Y 6/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; 25 percent coarse yellowish brown (10YR 5/4) redox concentrations; massive; slightly hard, very friable, slightly sticky and nonplastic; few very fine roots; common very fine tubular and interstitial pores; slight effervescence; strongly alkaline (pH 9.0); clear wavy boundary. (20 to 32 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C5--112 to 127 cm; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; 25 percent medium yellowish brown (10YR 5/4) redox concentrations; massive; hard, friable, moderately sticky and moderately plastic; few very fine roots; common very fine tubular and interstitial pores; slight effervescence; strongly alkaline (pH 8.8); clear wavy boundary. (0 to 20 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C6--127 to 152 cm; light brownish gray (2.5Y 6/2) stratified sandy clay loam to coarse sand, dark grayish brown (2.5Y 4/2) moist; strong brown (7.5YR 5/6) redox concentrations; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; common very fine tubular and interstitial pores; slight effervescence; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/T/TWOTOP.json b/inst/extdata/OSD/T/TWOTOP.json index 1ae9b346dd..bcf904ec4f 100644 --- a/inst/extdata/OSD/T/TWOTOP.json +++ b/inst/extdata/OSD/T/TWOTOP.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 3 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; vesicular crust in upper 1/2 inch, weak medium and fine subangular blocky structure in lower part; very hard, very firm, sticky and plastic; common roots; slight effervescence; slightly alkaline; clear smooth boundary. (2 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--3 to 9 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak medium subangular blocky structure; extremely hard, very firm, sticky and plastic; common roots; slight effervescence; slightly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bss--9 to 16 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; extremely hard, very firm, sticky and plastic; few intersecting slickensides; common roots; few fine accumulations of carbonate; slight effervescence; slightly alkaline; clear smooth boundary. (Combined Bw and Bss horizons 8 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bssyz--16 to 35 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; weak very coarse subangular blocky structure; extremely hard, very firm, sticky and plastic; few interesecting slickensides; few roots; many visible crystals of salt and gypsum; slight effervescence; slightly alkaline; gradual wavy boundary. (10 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--35 to 45 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; few fine prominent mottles of strong brown (7.5YR 5/8) moist; massive; extremely hard, very firm, sticky and plastic; slight effervescence; slightly alkaline; gradual wavy boundary." diff --git a/inst/extdata/OSD/T/TYCREEK.json b/inst/extdata/OSD/T/TYCREEK.json index f7cb99f790..ac8d474f57 100644 --- a/inst/extdata/OSD/T/TYCREEK.json +++ b/inst/extdata/OSD/T/TYCREEK.json @@ -227,7 +227,7 @@ "cf_class": "channery", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "BCk--116 to 163 centimeters; very pale brown (10YR 8/3) parachannery loam, yellow (10YR 7/6), moist; weak fine subangular blocky structure; slightly hard, very friable, slightly sticky, slightly plastic; few fine very coarse roots; few very fine tubular pores; 11 percent medium threadlike very pale brown (10YR 8/3) dry, carbonate masses and common medium carbonate concretions around rock fragments; 5 percent gravel and 15 percent parachanners; strong effervescence; moderately alkaline, pH 7.9; abrupt smooth boundary." diff --git a/inst/extdata/OSD/U/UBLY.json b/inst/extdata/OSD/U/UBLY.json index de1cf6476f..b4f3883cc6 100644 --- a/inst/extdata/OSD/U/UBLY.json +++ b/inst/extdata/OSD/U/UBLY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--39 to 60 inches; brown (10YR 5/3) clay loam; weak coarse angular blocky structure; firm; about 5 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/U/UFFENS.json b/inst/extdata/OSD/U/UFFENS.json index 3a1b8137bf..9b5ce43de8 100644 --- a/inst/extdata/OSD/U/UFFENS.json +++ b/inst/extdata/OSD/U/UFFENS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "C3--54 to 57 inches; light gray (2.5YR 7/2) silty clay, grayish brown (2.5YR 5/2) moist; weak medium prismatic structure; extremely hard, firm, sticky and plastic; few fine roots; few fine vesicular pores; moderately effervescent; moderately alkaline (pH 8.4); clear smooth boundary. (3 to 14 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--57 to 70 inches; light brownish gray (10YR 6/2) sand, light brownish gray (10YR 6/2) moist; single grain; loose; few fine roots; few fine pores; moderately effervescent; strongly alkaline (pH 8.5)." diff --git a/inst/extdata/OSD/U/ULEN.json b/inst/extdata/OSD/U/ULEN.json index ae68107bfd..14f91a51bc 100644 --- a/inst/extdata/OSD/U/ULEN.json +++ b/inst/extdata/OSD/U/ULEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 23 centimeters; black (10YR 2/1) fine sandy loam, very dark gray (10YR 3/1) dry; weak medium subangular blocky structure; slightly hard and very friable; nonsticky and nonplastic; common very fine and few fine roots; slight effervescence; moderately alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ak--23 to 33 centimeters; very dark grayish brown (10YR 3/2) loamy fine sand, dark grayish brown (10YR 4/2) dry; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; common very fine and few fine roots; strong effervescence; moderately alkaline; clear wavy boundary. (Combined A horizons 25 to 51 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--33 to 51 centimeters; dark grayish brown (10YR 4/2) loamy fine sand, grayish brown (10YR 5/2) dry; few fine distinct dark yellowish brown (10YR 4/4) redoximorphic concentrations; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; few very fine and fine roots; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--51 to 107 centimeters; grayish brown (10YR 5/2) loamy fine sand, light brownish gray (2.5Y 6/2) dry; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; few very fine and fine roots; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons 10 to 76 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--107 to 200 centimeters; light olive brown (2.5Y 5/4) fine sand, light yellowish brown (2.5Y 6/4) dry; few medium distinct dark yellowish brown (10YR 4/4) redoximorphic concentrations; single grain; loose, nonsticky and nonplastic; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/U/ULUPALAKUA.json b/inst/extdata/OSD/U/ULUPALAKUA.json index 262ebed632..1fa12eb535 100644 --- a/inst/extdata/OSD/U/ULUPALAKUA.json +++ b/inst/extdata/OSD/U/ULUPALAKUA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC--33 inches; black unweathered cinders and a few yellowish red weathered cinders; slight effervescence with hydrochloric acid." diff --git a/inst/extdata/OSD/U/ULY.json b/inst/extdata/OSD/U/ULY.json index 400e6c5edd..9089ec6f6d 100644 --- a/inst/extdata/OSD/U/ULY.json +++ b/inst/extdata/OSD/U/ULY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--53 to 64 centimeters (21 to 25 inches); light gray (10YR 7/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, friable; strong effervescence; moderately alkaline; clear smooth boundary. (0 to 15 centimeters (0 to 6 inches) thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--64 to 203 centimeters (25 to 80 inches); very pale brown (10YR 8/2) silt loam, pale brown (10YR 6/3) moist; massive; slightly hard, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/U/ULYSSES.json b/inst/extdata/OSD/U/ULYSSES.json index fc710b63e3..0775277182 100644 --- a/inst/extdata/OSD/U/ULYSSES.json +++ b/inst/extdata/OSD/U/ULYSSES.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--22 to 47 cm; (9 to 19 inches); brown (10YR 4/3) silty clay loam, dark grayish brown (10YR 4/2) moist; 15 percent sand; 27 percent clay; weak medium prismatic structure; slightly hard, friable, moderately sticky, moderately plastic; common fine roots throughout; common fine low-continuity tubular pores; strong effervescence (8 percent calcium carbonate equivalent); moderately alkaline (pH 7.9 by 1:1 water); clear wavy boundary; (Lab horizon ID 14N00843). (The combined thickness of the Bw horizons is 12 to 41 cm (5 to 16 inches).)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--47 to 79 cm; (19 to 28 inches); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; 13 percent sand; 25 percent clay; weak fine prismatic parting to moderate medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; few fine roots throughout; common fine low continuity tubular pores; 2 percent fine irregular carbonate masses and 2 percent fine irregular carbonate nodules in the matrix; violent effervescence (11 percent calcium carbonate equivalent); moderately alkaline (pH 8.0 by 1:1 water); clear smooth boundary; (Lab horizon ID 14N00844)." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk2--79 to 114 cm; (28 to 45 inches); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; 13 percent sand; 23 percent clay; moderate medium prismatic structure; soft, friable, slightly sticky, slightly plastic; few fine and few very fine roots throughout; common fine low continuity tubular pores; 3 percent fine irregular carbonate masses in the matrix; violent effervescence (10 percent calcium carbonate equivalent); moderately alkaline (pH 8.3 by 1:1 water); clear smooth boundary; (Lab horizon ID 14N00845)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk3--114 to 154 cm; (45 to 61 inches); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; 14 percent sand; 22 percent clay; moderate medium prismatic structure; soft, very friable, nonsticky, nonplastic; few fine and few very fine roots throughout; few very fine and common fine low continuity tubular pores; 2 percent fine irregular carbonate masses and 1 percent fine irregular carbonate nodules in the matrix; violent effervescence (9 percent calcium carbonate equivalent); moderately alkaline (pH 8.3 by 1:1 water); clear smooth boundary; (Lab horizon ID 14N00846)." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk4--154 to 200 cm; (61 to 79 inches); pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; 13 percent sand; 21 percent clay; weak coarse prismatic structure; soft, very friable, nonsticky, nonplastic; few fine roots throughout; common fine low continuity tubular pores; 3 percent fine threadlike carbonate masses in the matrix; strong effervescence (9 percent calcium carbonate equivalent); moderately alkaline (pH 8.3 by 1:1 water); (Lab horizon ID 14N00847). (The combined thickness of the Bk horizon is 127 to 170 cm (50 to 67 inches))." diff --git a/inst/extdata/OSD/U/URANDA.json b/inst/extdata/OSD/U/URANDA.json index 757095413a..d65fd292bf 100644 --- a/inst/extdata/OSD/U/URANDA.json +++ b/inst/extdata/OSD/U/URANDA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkyz1--21 to 32 inches; dark grayish brown (2.5Y 4/2) loam, light brownish gray (2.5Y 6/2) dry; common fine prominent yellowish brown(10YR 5/4) redoximorphic concentrations; moderate medium subangular blocky structure; hard, firm, sticky and plastic; common very fine roots; few very fine pores; many fine and medium masses of salt crystals; common medium and fine masses of gypsum crystals; lime segregated in many medium and fine irregularly shaped masses; violent effervescence; strongly alkaline; abrupt wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyz2--32 to 46 inches; grayish brown (2.5Y 5/2) loam, light brownish gray (2.5Y 6/2) dry; common medium prominent dark yellowish brown (10YR 4/4) and common medium and fine prominent yellowish brown (10YR 5/4) redoximorphic concentrations; moderate medium subangular blocky structure; hard, firm, sticky and plastic; few very fine roots; few very fine pores; many medium and fine masses of salt crystals; common medium and fine masses of gypsum crystals; lime segregated in many medium and fine irregularly shaped masses; violent effervescence; strongly alkaline; gradual wavy boundary. (Combined Bkz horizons 6 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "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)" diff --git a/inst/extdata/OSD/U/UTURIN.json b/inst/extdata/OSD/U/UTURIN.json index 6d71f81302..9baa264263 100644 --- a/inst/extdata/OSD/U/UTURIN.json +++ b/inst/extdata/OSD/U/UTURIN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bg--55 to 60 inches; very dark gray (10YR 3/1) silty clay loam; moderate fine subangular blocky structure; firm; slight effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/U/UWALA.json b/inst/extdata/OSD/U/UWALA.json index 1ee912a29c..a68d40dc70 100644 --- a/inst/extdata/OSD/U/UWALA.json +++ b/inst/extdata/OSD/U/UWALA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 13 centimeters (0 to 5 inches); dark reddish brown (5YR 3/3) silty clay loam, reddish brown (5YR 4/3) dry; weak medium and fine subangular blocky structure parting to weak fine granular; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; few fine interstitial pores; common fine black concretions; strong effervescence with hydrogen peroxide; very strongly acid; clear wavy boundary. (8 to 15 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--13 to 46 centimeters (5 to 18 inches); dark reddish brown (5YR 3/3) silty clay loam, reddish brown (5YR 4/3) dry; weak fine and medium subangular blocky structure parting to moderate fine granular; slightly hard, friable, slightly sticky and moderately plastic; many very fine and fine roots; common very fine tubular and interstitial pores; few fine black concretions; common fragments of burned organic matter; moderate effervescence with hydrogen peroxide; very strongly acid; abrupt smooth boundary. (31 to 36 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bto1--46 to 66 centimeters (18 to 26 inches); dark reddish brown (5YR 3/4) silty clay loam, yellowish red (5YR 3/6) dry; moderate fine subangular blocky structure; slightly hard, firm, slightly sticky and moderately plastic; few fine roots; many fine tubular pores; moderately thick patchy coatings on all faces of peds; common fine black concretions; strong effervescence with hydrogen peroxide; medium acid; clear smooth boundary. (18 to 23 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "very weak effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bto2--66 to 81 centimeters (26 to 32 inches); dark reddish brown (5YR 3/4) moist and dry silty clay loam; strong fine blocky structure; hard, firm, moderately sticky and moderately plastic; common fine tubular pores; moderately thick patchy coatings on faces of peds; few black concretions; few very firm earthy lumps; very weak effervescence with hydrogen peroxide; medium acid; clear smooth boundary. (13 to 18 centimeters thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "BC--112 to 145 centimeters (44 to 57 inches); dark reddish brown (5YR 3/3) silty clay loam, dark reddish brown (5YR 3/4) dry; weak very fine angular and subangular blocky structure; hard, firm, slightly sticky and moderately plastic; many fine and very fine and medium tubular pores; many very fine weathered rock particles; no effervescence with hydrogen peroxide; medium acid; clear smooth boundary. (28 to 36 centimeters thick)" diff --git a/inst/extdata/OSD/V/VALLERS.json b/inst/extdata/OSD/V/VALLERS.json index 6c11a8bc4e..e8d3efd807 100644 --- a/inst/extdata/OSD/V/VALLERS.json +++ b/inst/extdata/OSD/V/VALLERS.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 9 inches; black (10YR 2/1) loam, dark gray (10YR 4/1) dry; moderate very fine and fine granular structure; hard, friable, sticky and plastic; strong effervescence; slightly alkaline; abrupt smooth boundary. (Combined A horizons 6 to 24 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkg--9 to 22 inches; gray (5Y 5/1) and olive gray (5Y 5/2) clay loam, gray (5Y 6/1) and light gray (5Y 7/2) dry; many medium prominent yellowish brown (10YR 5/4) redoximorphic concentrations; weak medium subangular blocky structure; hard, firm, sticky and plastic; about 5 percent pebbles and other rock fragments; violent effervescence; slightly alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkyg--22 to 44 inches; olive gray (5Y 5/2) and gray (5Y 5/1) clay loam, light olive gray (5Y 6/2) and light gray (5Y 7/1) dry; many large prominent yellowish brown (10YR 5/4) redoximorphic concentrations; weak fine subangular blocky structure; hard, firm, sticky and plastic; about 5 percent pebbles and other rock fragments; many nests of gypsum; strong effervescence; slightly alkaline; gradual wavy boundary. (Combined Bkg horizons 6 to 35 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BCyg--44 to 60 inches; gray (5Y 5/1) clay loam, gray (5Y 6/1) dry; many medium prominent yellowish brown (10YR 5/4) redoximorphic concentrations; massive, very hard, firm, sticky and plastic; about 5 percent pebbles and other rock fragments; common nests of gypsum; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/V/VANOCKER.json b/inst/extdata/OSD/V/VANOCKER.json index 6801e65ae2..fc2ac7acf6 100644 --- a/inst/extdata/OSD/V/VANOCKER.json +++ b/inst/extdata/OSD/V/VANOCKER.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt--7.5 to 18 cm; brown (10YR 4/3) very gravelly silty clay loam, brown (10YR 5/3) dry; moderate fine subangular blocky structure; slightly hard, friable, moderately sticky and moderately plastic; many fine, medium and coarse roots; many faint continuous clay films on faces of peds; 40 percent by volume subangular limestone gravel; disseminated calcium carbonate throughout; very slight effervescence; slightly alkaline; clear wavy boundary. (7 to 25 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--18 to 40 cm; brown (10YR 4/3) very gravelly clay loam, brown (10YR 5/3) dry; moderate ffine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common fine, medium, and coarse roots; 55 percent by volume subangular limestone gravel; common medium and coarse accumulations of calcium carbonate throughout and on the bottom of rock fragments; slight effervescence; slightly alkaline; clear wavy boundary. (0 to 38 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--40 to 104 cm; brown (10YR 5/3) very gravelly loam, light gray (10YR 7/2) dry; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few medium and coarse roots; 55 percent by volume subangular limestone gravel; few (3 percent) fine threads of calcium carbonate in soil matrix and medium and coarse calcium carbonate coatings on the bottom of rock fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (10 to 76 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--104 to 152 cm; brown (10YR 4/3) extremely gravelly silt loam, brown (10YR 5/3) dry; weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic; few medium and coarse roots; 65 percent by volume subangular limestone gravel; few (3 percent) fine threads of calcium carbonate in matrix and continuous calcium carbonate coatings on faces of peds; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/V/VASSETT.json b/inst/extdata/OSD/V/VASSETT.json index f5db44ebc7..c18b2b2464 100644 --- a/inst/extdata/OSD/V/VASSETT.json +++ b/inst/extdata/OSD/V/VASSETT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--61 to 91 cm; brown (7.5YR 5/3) silt loam, brown (7.5YR 4/4) moist; moderate coarse subangular blocky structure; slightly hard, friable; violent effervescence, lime segregated as common fine masses, threads, and seams; strongly alkaline; clear smooth boundary." diff --git a/inst/extdata/OSD/V/VEBAR.json b/inst/extdata/OSD/V/VEBAR.json index 6cbea479cf..c417cf07cd 100644 --- a/inst/extdata/OSD/V/VEBAR.json +++ b/inst/extdata/OSD/V/VEBAR.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCk--26 to 32 inches; light yellowish brown (2.5Y 6/4) fine sandy loam, light olive brown (2.5Y 5/4) moist; massive; slightly hard, very friable, nonsticky and nonplastic; few hard sandstone fragments; few small sandstone fragments; few small carbonate accumulations; strong effervescence (2 percent calcium carbonate equivalent); slightly alkaline; clear wavy boundary. (0 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--32 to 60 inches; light yellowish brown (2.5Y 6/4) soft sandstone; strong effervescence in upper part and slight effervescence in lower part; lense of hard sandstone 3 inches thick at 43 inches with carbonate accumulations around hard fragments; moderately alkaline." diff --git a/inst/extdata/OSD/V/VEGOCITO.json b/inst/extdata/OSD/V/VEGOCITO.json index 52fee63d4d..4422a283e8 100644 --- a/inst/extdata/OSD/V/VEGOCITO.json +++ b/inst/extdata/OSD/V/VEGOCITO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--40 to 80 centimeters (20 to 31 in.); dark brown (10YR 3/3), brown (10YR 4/3), dry; 30 percent sand; 37 percent clay; moderate medium prismatic structure parts to strong medium angular blocky structure; friable, very hard, very sticky, very plastic; common fine roots and common very fine roots; many very fine tubular pores; 60 percent distinct clay films on all faces of peds; 2 percent fine faint yellowish brown (10YR 5/4), dry, and dark yellowish brown (10YR 4/4), moist, masses of oxidized iron; 10 percent medium threadlike carbonate masses lining pores; 1 percent gravel; slight effervescence; gradual smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--80 to 135 centimeters (31 to 53 in.); dark brown (10YR 3/3), pale brown (10YR 6/3), dry; 35 percent sand; 30 percent clay; moderate medium subangular blocky structure; friable, very hard, moderately sticky, very plastic; few very fine roots; common fine tubular pores; 40 percent distinct clay films on all faces of peds; 5 percent fine prominent yellowish brown (10YR 5/6), dry, and dark yellowish brown (10YR 4/6), moist, masses of oxidized iron; 40 percent coarse irregular carbonate masses throughout; 1 percent gravel; violent effervescence; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCkg--135 to 175 centimeters (53 to 69 in.); dark grayish brown (10YR 4/2), grayish brown (10YR 5/2), dry; 20 percent sand; 28 percent clay; structureless massive structure; friable, moderately hard, moderately sticky, moderately plastic; 35 percent medium prominent yellowish brown (10YR 5/6), dry, and dark yellowish brown (10YR 4/6), moist, masses of oxidized iron; 5 percent fine threadlike carbonate masses lining pores and 5 percent fine irregular mica flakes, mixed in matrix; 1 percent gravel; violent effervescence; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--175 to 200 centimeters (69 to 79 in.); 35 percent sand; 27 percent clay; structureless massive structure; friable, moderately hard, moderately sticky, moderately plastic; 5 percent fine irregular mica flakes, mixed in matrix; 10 percent gravels and 15 percent cobbles; violent effervescence." diff --git a/inst/extdata/OSD/V/VELENO.json b/inst/extdata/OSD/V/VELENO.json index 849c58bc26..eb1f3f55e5 100644 --- a/inst/extdata/OSD/V/VELENO.json +++ b/inst/extdata/OSD/V/VELENO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 14 cm (0 to 6 in), light brownish gray (10YR 6/2) and grayish brown (10YR 5/2) clay loam; strong fine subangular blocky structure; very firm, extremely hard, moderately sticky, moderately plastic; common fine roots throughout and common medium roots throughout and common very fine roots throughout; common fine dendritic tubular and common medium dendritic tubular pores; strong effervescence; EC is 2; SAR is 7; moderately alkaline; clear smooth boundary. (5 to 20 cm [2 to 8 in])" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnss1--14 to 30 cm (6 to 12 in), light brownish gray (10YR 6/2) clay, grayish brown (10YR 5/2), moist; strong fine subangular blocky structure; very firm, very sticky, moderately plastic; common fine roots throughout and common medium roots throughout and many very fine roots throughout; common fine dendritic tubular and common medium dendritic tubular pores; 3 percent prominent slickensides; 10 percent prominent pressure faces; strong effervescence; EC is 14; SAR is 27; moderately alkaline; clear smooth boundary. (10 to 41 cm [4 to 16 in])" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnss2--30 to 52 cm (12 to 21in), light brownish gray (10YR 6/2) clay, grayish brown (10YR 5/2), moist; strong medium angular blocky and weak very fine wedge structure; very firm, very sticky, moderately plastic; common fine roots throughout and common medium roots throughout and common very fine roots throughout; common fine dendritic tubular and common medium dendritic tubular pores; 20 percent prominent slickensides; 40 percent prominent pressure faces; strong effervescence; EC is 18; SAR is 38; moderately alkaline; clear smooth boundary. (15 to 38 cm [6 to 15 in])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnss3--52 to 72 cm (21 to 28 in), light brown (7.5YR 6/3) clay, brown (7.5YR 5/3), moist; strong medium angular blocky, and moderate very fine wedge structure; very firm, very sticky, moderately plastic; common very fine roots throughout; common fine dendritic tubular and common medium dendritic tubular and common very fine dendritic tubular pores; 25 percent prominent slickensides (pedogenic) and 40 percent prominent pressure faces; 1 percent fine irregular insect casts throughout; strong effervescence; EC is 23; SAR is 39; moderately alkaline; clear smooth boundary. (20 to 64 cm [8 to 25 in])" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnssz--72 to 113 cm (28 to 45 in), light brown (7.5YR 6/3) clay, brown (7.5YR 5/3), moist; moderate fine prismatic, and strong very fine wedge structure; very firm, very sticky, moderately plastic; common very fine roots throughout; common very fine dendritic tubular pores; 2 percent prominent organic stains and 30 percent prominent slickensides (pedogenic) and 80 percent prominent brown (7.5YR 4/4) pressure faces; 15 percent fine irregular calcite crystals in matrix and 1 percent medium irregular calcite crystals throughout; strong effervescence; EC is 22; SAR is 35; moderately alkaline; clear smooth boundary. (33 to 76 cm [13 to 30 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnssyz--113 to 162 cm (45 to 64 in), brown (7.5YR 5/4) clay, brown (7.5YR 5/4), moist; strong coarse angular blocky, and strong fine angular blocky structure; firm, very sticky, moderately plastic; common fine dendritic tubular pores; 20 percent prominent slickensides (pedogenic) on all faces of peds and 30 percent faint brown (7.5YR 5/4) clay bridges on all faces of peds; 3 percent fine irregular calcite crystals in matrix and 2 percent medium irregular barite crystals in matrix; strong effervescence; EC is 22; SAR is 35; anmoderately alkaline; clear smooth boundary. (33 to 53 cm [13 to 21 in])" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bnyz--162 to 188 cm (64 to 74 in), clay, brown (7.5YR 5/3), moist; strong medium subangular blocky, and strong fine subangular blocky structure; friable, very sticky, moderately plastic; common fine dendritic tubular pores; 20 percent prominent clay films on all faces of peds and 70 percent faint brown (7.5YR 5/3) and brown (7.5YR 5/3) clay bridges on all faces of peds; 1 percent fine prominent spherical strong brown (7.5YR 4/6) and dark brown (7.5YR 3/3) in matrix and 1 percent fine; 1 percent fine spherical carbonate masses in matrix and 1 percent fine irregular fecal pellets in matrix and 2 percent fine irregular carbonate masses in matrix and 1 percent medium barite crystals in matrix; strong effervescence; EC is 20; SAR is 36; moderately alkaline; clear smooth boundary. (25 to 81 cm [10 to 32 in])" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "2Bnyz--188 to 216 cm ( 74 to 85 in), clay loam, 85 percent brown (7.5YR 5/3) and 15 percent gray (7.5YR 5/1), moist; strong coarse subangular blocky, and strong fine subangular blocky structure; friable, very sticky, moderately plastic; common fine dendritic tubular pores; 60 percent prominent brown (7.5YR 4/2) clay films on all faces of peds; 3 percent fine prominent spherical strong brown (7.5YR 4/6) in matrix; 3 percent fine irregular calcite crystals in matrix and 1 percent fine irregular white (10YR 8/1) barite crystals in matrix and 1 percent fine irregular fecal pellets; strong effervescence; EC is 19; SAR is 36; moderately alkaline; clear smooth boundary." diff --git a/inst/extdata/OSD/V/VELVA.json b/inst/extdata/OSD/V/VELVA.json index 2ec50c50c1..c9a4c83971 100644 --- a/inst/extdata/OSD/V/VELVA.json +++ b/inst/extdata/OSD/V/VELVA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ab--12 to 13 inches; very dark grayish brown (10YR 3/2) fine sandy loam, very dark brown (10YR 2/2) moist; weak medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; many roots; many fine pores; slight effervescence; mildly alkaline; clear smooth boundary. (0 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--13 to 15 inches; grayish brown (2.5Y 5/2) fine sandy loam, very dark grayish brown (2.5Y 3/2) moist; weak coarse prismatic structure parting to weak coarse and medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common roots; common fine pores; strong effervescence; mildly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--15 to 36 inches; grayish brown (2.5Y 5/2) fine sandy loam with thin strata of loam and loamy fine sand less than 1 inch thick, dark grayish brown (2.5Y 4/2) moist; weak very coarse prismatic structure parting to weak coarse and medium subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; common roots; common fine pores; strong effervescence; mildly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--36 to 52 inches; grayish brown (2.5Y 5/2) loamy fine sand, very dark grayish brown (2.5Y 3/2) moist; single grain; few roots; strong effervescence; moderately alkaline; clear smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--52 to 60 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak coarse subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few roots; few pores; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/V/VENLO.json b/inst/extdata/OSD/V/VENLO.json index c41a3aabe8..de817455d6 100644 --- a/inst/extdata/OSD/V/VENLO.json +++ b/inst/extdata/OSD/V/VENLO.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--30 to 60 inches; gray (5Y 5/1) fine sand, light gray (5Y 7/1) and white (5Y 8/1) dry; single grain; loose, nonsticky and nonplastic; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/V/VENUM.json b/inst/extdata/OSD/V/VENUM.json index 66c93f9ab8..0cd0994f11 100644 --- a/inst/extdata/OSD/V/VENUM.json +++ b/inst/extdata/OSD/V/VENUM.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkq2--26 to 38 inches; light yellowish brown (10YR 6/4) extremely gravelly clay loam, yellowish brown (10YR 5/4) moist; moderate fine and medium angular blocky structure; hard, friable, very sticky and very plastic; common very fine and few fine roots; common very fine and fine tubular pores; few faint clay films in pores and on faces of peds; slightly effervescent on area of peds with clay films; 35 percent pebbles, 25 percent cobbles; calcium carbonate and silica coatings 1 to 3 mm thick on undersides of coarse fragments; common soft masses of secondary carbonates; strongly effervescent; slightly alkaline (pH 7.8) gradual wavy boundary. (0 to 14 inches thick)" diff --git a/inst/extdata/OSD/V/VERDEL.json b/inst/extdata/OSD/V/VERDEL.json index 82d4593b5d..70fe7e5c2a 100644 --- a/inst/extdata/OSD/V/VERDEL.json +++ b/inst/extdata/OSD/V/VERDEL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw1--20 to 28 inches; grayish brown (2.5Y 5/2) silty clay, very dark grayish brown (2.5Y 3/2) moist; moderate medium subangular blocky structure parting to strong fine blocky; very hard, firm; few fine segregations of lime; few pressure faces; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw2--28 to 40 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; strong coarse prismatic structure parting to strong fine blocky; very hard, firm; common fine segregations of lime; common pressure faces; few slickensides that do not intersect; slight effervescence; moderately alkaline; gradual smooth boundary. (Combined thickness of the Bw horizons is 8 to 32 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--40 to 60 inches; grayish brown (2.5Y 5/2) silty clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, very firm; common medium segregations of lime; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/V/VERDIGRE.json b/inst/extdata/OSD/V/VERDIGRE.json index fe069c8295..e5628585d5 100644 --- a/inst/extdata/OSD/V/VERDIGRE.json +++ b/inst/extdata/OSD/V/VERDIGRE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2BC--25 to 42 inches; light gray (2.5Y 7/2) and olive yellow (2.5Y 6/6) silty clay, light brownish gray (2.5Y 6/2) and light olive brown (2.5Y 5/6) moist; moderate coarse angular blocky structure parting to moderate medium angular blocky; very hard, very firm; few very fine roots; slight effervescence; many seams and pockets of soft carbonates; moderately alkaline; gradual wavy boundary. (10 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C--42 to 56 inches; light gray (5Y 7/2) and olive yellow (2.5Y 6/6) silty clay, light olive gray (5Y 6/2) and light olive brown (2.5Y 5/6) moist; massive, very hard, very firm; few very fine roots; 2 to 5 percent by volume of shale channers; slight effervescence; many seams and pockets of soft carbonates; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--56 to 60 inches; light gray (5Y 7/2) and yellowish brown (10YR 5/6) bedded shale, light olive gray (5Y 6/2) and dark yellowish brown (10YR 4/6) moist; very hard, very firm; slight effervescence; few seams and pockets of soft carbonates; moderately alkaline." diff --git a/inst/extdata/OSD/V/VERENDRYE.json b/inst/extdata/OSD/V/VERENDRYE.json index 2c8c19e9a4..af8d60869f 100644 --- a/inst/extdata/OSD/V/VERENDRYE.json +++ b/inst/extdata/OSD/V/VERENDRYE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 6 inches; black (10YR 2/1) loamy coarse sand, very dark gray (10YR 3/1) dry; weak very fine subangular blocky structure; soft, very friable, nonsticky and nonplastic; many fine and very fine roots; slight effervescence; slightly alkaline; clear smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A2--6 to 10 inches; very dark gray (10YR 3/1) loamy coarse sand, dark gray (10YR 4/1) dry; few fine distinct dark brown (10YR 3/3) redoximorphic concentrations; weak very fine subangular blocky structure; soft, very friable, nonsticky and nonplastic; many fine and very fine roots; slight effervescence; slightly alkaline; clear smooth boundary. (Combined A horizons 10 to 16 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--10 to 14 inches; dark grayish brown (2.5Y 4/2) coarse sand, light brownish gray (2.5Y 6/2) dry; few fine distinct olive brown (2.5Y 4/4) redoximorphic concentrations; single grain; loose, nonsticky and nonplastic; common fine and very fine roots; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--14 to 20 inches; dark grayish brown (2.5Y 4/2) coarse sand, light gray (2.5Y 7/2) dry; single grain; loose, nonsticky and nonplastic; common fine and very fine roots; about 2 percent gravel; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C3--20 to 34 inches; olive gray (5Y 5/2) coarse sand, light olive gray (5Y 6/2) dry; common fine prominent light olive brown (2.5Y 5/6) redoximorphic concentrations; single grain; loose, nonsticky and nonplastic; few fine roots; about 1 percent gravel; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C4--34 to 60 inches; light brownish gray (2.5Y 6/2) coarse sand, light gray (2.5Y 7/2) dry; single grain; loose, nonsticky and nonplastic; about 1 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/V/VERGENNES.json b/inst/extdata/OSD/V/VERGENNES.json index a430ef84bc..b9cd7afddb 100644 --- a/inst/extdata/OSD/V/VERGENNES.json +++ b/inst/extdata/OSD/V/VERGENNES.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "mild effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC -- 22 to 29 inches, 50 percent dark grayish brown (10YR 4/2) and 50 percent brown (10YR 4/3) clay; weak very coarse prismatic parting to moderate fine and very fine subangular blocky structure; friable; very sticky and very plastic; few fine, medium and coarse roots; many fine vesicular and few fine and medium tubular pores; thin discontinuous clay films on ped surfaces; common fine faint dark yellowish brown (10YR 4/6) soft masses of iron accumulation; ped surfaces are grayish brown (10YR 5/2); slightly alkaline, mild effervescence; gradual wavy boundary. (6 to 10 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1 -- 29 to 37 inches, 50 percent dark grayish brown (10YR 4/2) and 50 percent brown (10YR 4/3) clay; massive, weakly varved with very weak coarse prism like features; firm, very sticky and very plastic; few fine and medium coarse roots; common fine vesicular and few fine tubular pores; common coatings of light gray (10YR 7/2) CaCO3 on feature surfaces; common fine distinct dark yellowish brown (10YR 4/6) soft masses of iron accumulation; feature surfaces are gray (10YR 5/1); moderately alkaline, strong effervescence; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3 -- 45 to 77 inches, variegated grayish brown (10YR 5/2) gray (5Y 5/1) and brown (10YR 4/3) clay; massive, varved with moderate very coarse prism like features; firm, very sticky and very plastic; few fine roots; few fine vesicular and tubular pores; light gray (10YR 7/2) carbonate nodules; few fine distinct dark yellowish brown (10YR 4/6) soft masses of iron accumulation; ped surfaces are gray (10YR 5/1); moderately alkaline, strong effervescence." diff --git a/inst/extdata/OSD/V/VERICK.json b/inst/extdata/OSD/V/VERICK.json index 3497d8bbfe..5841b9465c 100644 --- a/inst/extdata/OSD/V/VERICK.json +++ b/inst/extdata/OSD/V/VERICK.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violenty effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Crk--38 to 203 cm (15 to 80 in); light yellowish brown (2.5Y 6/4) weakly cemented sandstone bedrock, light olive brown (2.5Y 5/4) moist; platy, with plates 6 to 24 mm (1/4 to 1 in) thick that have patchy coating of calcium carbonate; a few roots enter fractures in upper part; violenty effervescent, moderately alkaline." diff --git a/inst/extdata/OSD/V/VIBORG.json b/inst/extdata/OSD/V/VIBORG.json index f9a8344ef4..070e93e427 100644 --- a/inst/extdata/OSD/V/VIBORG.json +++ b/inst/extdata/OSD/V/VIBORG.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--21 to 29 inches; grayish brown (2.5Y 5/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; few fine faint mottles of light olive brown (2.5Y 5/3) moist; weak coarse prismatic structure parting to moderate coarse and medium subangular blocky; slightly hard, friable, slightly sticky; few very fine accumulations of calcium carbonate; slight effervescence; neutral; clear wavy boundary. (Combined Bw horizon is 12 to 19 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--29 to 37 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct gray (5Y 5/1) redox depletions, and few fine distinct stains of light olive brown (2.5Y 5/6) redox concentrations; moderate coarse, medium, and fine blocky structure; hard, friable, sticky; few fine irregular dark accumulations (iron and manganese oxides); many fine and medium accumulations of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (4 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk2--37 to 50 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; common fine and medium distinct gray (5Y 5/1) redox depletions; weak coarse, medium, and fine blocky structure; hard, firm, sticky; common fine stains (oxides) of yellowish brown (10YR 5/6) and strong brown (7.5YR 5/6) moist; common fine dark accumulations (iron and manganese oxides); common fine and medium accumulations of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (8 to 16 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--50 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; common fine prominent black (10YR 2/1) and gray (5Y 5/1) redox depletions; massive; hard, firm, sticky; common to many fine stains (oxides) of yellowish brown (10YR 5/6) and yellowish red (5YR 4/6) redox concentrations; common fine dark (iron and manganese oxides); few fine accumulations of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/V/VICTORIA.json b/inst/extdata/OSD/V/VICTORIA.json index 4b5ca280d8..ff58d4c085 100644 --- a/inst/extdata/OSD/V/VICTORIA.json +++ b/inst/extdata/OSD/V/VICTORIA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 15 cm (0 to 6 in); very dark gray (10YR 3/1) clay, black (10YR 2/1) moist; weak medium angular blocky and moderate fine granular structure; extremely hard, extremely firm, very sticky, very plastic; common fine roots; common fine pores; slight effervescence; electrical conductivity is 0.9 dS/m; sodium absorption ratio is 1; calcium carbonate equivalent is 2.5; moderately alkaline; abrupt smooth boundary. (Thickness is 10 to 18 cm [4 to 7 in].)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss1--15 to 61 cm (6 to 24 in); very dark gray (10YR 3/1) clay, very dark gray (10YR 3/1) moist; moderate fine and medium angular blocky structure; extremely hard, extremely firm, very sticky, very plastic; few fine roots; few fine pores; 15 percent distinct slickensides; common cracks filled with black (10YR 2/1) clay; strong effervescence; electrical conductivity is 0.8 dS/m; sodium absorption ratio is 4.4; calcium carbonate equivalent is 4.4; moderately alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss2--61 to 94 cm (24 to 37 in); very dark gray (10YR 3/1) clay, very dark gray (10YR 3/1) moist; weak fine and medium wedge structure parting to weak medium angular blocky; extremely hard, extremely firm, very sticky, very plastic; few fine roots; few fine pores;20 percent distinct slickensides; 1 percent fine light gray (10YR 7/2) carbonate masses; common cracks filled with black (10YR 2/1) clay; strong effervescence; electrical conductivity is 1.3 dS/m; sodium absorption ratio is 12; calcium carbonate equivalent is 5.2; strongly alkaline; gradual wavy boundary. (Combined thickness of the Bss horizons is 46 to 107 cm [18 to 42 in].)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bnss--94 to 127 cm (37 to 50 in); pale brown (10YR 6/3) clay, pale brown (10YR 6/3) moist; weak fine and medium wedge structure parting to weak medium angular blocky; extremely hard, extremely firm, very sticky, very plastic; few fine roots; few fine pores; 10 percent distinct slickensides; many cracks filled with dark gray (10YR 4/1) clay; strong effervescence; electrical conductivity is 2.4 dS/m; sodium absorption ratio is 24; calcium carbonate equivalent is 5.7; moderately alkaline; gradual wavy boundary. (Thickness of the Bnss horizon is 20 to53 cm [8 to 21 in].)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkny1--127 to 158 cm (50 to 62 in); pale yellow (2.5Y 7/3) clay, very pale brown (10YR 7/3) moist; weak coarse angular blocky structure; extremely hard, extremely firm, very sticky, very plastic; 3 percent fine and medium calcium carbonate masses; 5 percent fine and medium gypsum crystals; common cracks filled with dark gray (10YR 4/1) clay; strong effervescence; electrical conductivity is 7.9 dS/m; sodium absorption ratio is 18; calcium carbonate equivalent is 6.3; slightly alkaline; gradual wavy boundary. (Combined thickness of the Bkny horizons is 31 to 81 cm [15 to 32 in].)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkny2--158 to 228 cm (62 to 91 in); pale yellow (2.5Y 8/3) clay, very pale brown (10YR 7/3) moist; weak very coarse subangular blocky structure; extremely hard, extremely firm, very sticky, very plastic; 3 percent faint grayish brown (10YR 5/2) organic stains on vertical faces of peds; 1 percent fine spherical black (10YR 2/1) iron-manganese nodules; 2 percent medium distinct brown (10YR 5/3) iron-manganese masses with sharp boundaries on faces of peds; 1 percent fine and medium gypsum crystals; 1 percent fine and medium calcium carbonate masses; strong effervescence; electrical conductivity is 9.1 dS/m; sodium absorption ratio is 20; calcium carbonate equivalent is 7.3; slightly alkaline." diff --git a/inst/extdata/OSD/V/VIENNA.json b/inst/extdata/OSD/V/VIENNA.json index d76af55494..6f84bc5de1 100644 --- a/inst/extdata/OSD/V/VIENNA.json +++ b/inst/extdata/OSD/V/VIENNA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--17 to 30 inches; light olive brown (2.5Y 5/4) clay loam, pale yellow (2.5Y 7/4) dry; moderate medium and coarse prismatic structure parting to weak fine and medium subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common very fine roots; common very fine pores; 25 percent calcium carbonate equivalent; many fine carbonate masses; 2 percent pebbles; strong effervescence; slightly alkaline; gradual wavy boundary. (5 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2BCk--30 to 42 inches; light olive brown (2.5Y 5/4) clay loam, pale yellow (2.5Y 7/4) dry; moderate medium and coarse prismatic structure parting to weak fine and medium subangular blocky structure; hard, friable, slightly sticky, slightly plastic; common very fine pores; 22 percent calcium carbonate equivalent; common fine carbonate masses; 2 percent pebbles; strong effervescence; moderately alkaline; gradual wavy boundary. (6 to 15 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--42 to 80 inches; light olive brown (2.5Y 5/4) clay loam, pale yellow (2.5Y 7/4) dry; few fine distinct yellowish brown (10YR 5/4) redoximorphic concentrations and few fine distinct gray (10YR 6/1) redoximorphic depletions; massive; hard, friable, slightly sticky, slightly plastic; few very fine pores; 15 percent calcium carbonate equivalent; few fine iron-manganese concretions; 2 percent pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/V/VIKING.json b/inst/extdata/OSD/V/VIKING.json index 9c27299efa..b8db51f11a 100644 --- a/inst/extdata/OSD/V/VIKING.json +++ b/inst/extdata/OSD/V/VIKING.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--7 to 11 inches; black (10YR 2/1) clay, very dark gray (10YR 3/1) dry; moderate fine subangular blocky structure; friable; very dark brown (10YR 2/2) coatings on peds; discontinuous gravelly band in parts; slight effervescence, mildly alkaline; clear smooth boundary. (3 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bg--11 to 18 inches; dark gray (5Y 4/1) clay; moderate medium and coarse prismatic structure parting to moderate very fine subangular blocky; sticky, very firm; some spots with colors of higher value and chroma along old root channels; about 3 percent coarse fragments; slight effervescence, mildly alkaline; gradual smooth boundary. (4 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "BCg--18 to 33 inches; dark gray (5Y 4/1) clay; few fine prominent yellowish brown (10YR 5/6) and dark yellowish brown (10YR 4/4) mottles; moderate medium and coarse prismatic structure parting to weak very fine angular blocky; sticky, very firm; about 3 percent coarse fragments; strong effervescence, mildly alkaline; gradual smooth boundary. (6 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--33 to 60 inches; dark gray (5Y 4/1) clay; few fine prominent yellowish brown (10YR 5/6) and dark yellowish brown (10YR 4/4) mottles; weak very fine angular blocky structure; sticky, very firm; about 3 percent coarse fragments; strong effervescence, moderately alkaline." diff --git a/inst/extdata/OSD/V/VINCOM.json b/inst/extdata/OSD/V/VINCOM.json index 3176707780..9ae3515a4b 100644 --- a/inst/extdata/OSD/V/VINCOM.json +++ b/inst/extdata/OSD/V/VINCOM.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--22 to 60 inches; white (10YR 8/2) silty clay loam, pale brown (10YR 6/3) moist; 1/4- to 1/2-inch thick varves; strong medium platy structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; very strongly effervescent; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/V/VINJE.json b/inst/extdata/OSD/V/VINJE.json index 3d3977716f..f783b3ae84 100644 --- a/inst/extdata/OSD/V/VINJE.json +++ b/inst/extdata/OSD/V/VINJE.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--46 to 60 inches; light olive brown (2.5Y 5/4) and grayish brown (2.5Y 5/2) loam; common fine distinct yellowish brown (10YR 5/6) and common medium distinct brown (7.5YR 4/4) mottles; massive; friable; few fine black (10YR 2/1) and strong brown (7.5YR 5/6) concretions (iron and manganese oxides); few calcium carbonate accumulations in thread-like streaks; slight effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/V/VINSON.json b/inst/extdata/OSD/V/VINSON.json index 5014e5d97a..71908ba9d9 100644 --- a/inst/extdata/OSD/V/VINSON.json +++ b/inst/extdata/OSD/V/VINSON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 10 inches; reddish brown (5YR 4/3) silt loam, dark reddish brown (5YR 3/3), moist; 23 percent clay; moderate fine granular structure; friable, slightly hard; many fine roots; common fine and few medium pores; common worm casts; 2 percent fine carbonate nodules; 2 percent 2 to 20 millimeter fragments of dolomite; slight effervescence; moderately alkaline; clear smooth boundary. (6 to 18 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--10 to 28 inches; reddish brown (5YR 5/4) silty clay loam, reddish brown (5YR 4/4), moist; 30 percent clay; weak medium prismatic structure parting to moderate fine and medium subangular blocky; friable, hard; common fine roots; common fine and common very fine pores; common worm casts; 2 percent fine and medium carbonate nodules and 2 percent fine and medium carbonate masses; 2 percent 2 to 20 millimeter fragments of dolomite; strong effervescence; moderately alkaline; clear smooth boundary. (combined thickness of the B horizons is 10 to 25 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bky--28 to 32 inches; yellowish red (5YR 5/6) silty clay loam, yellowish red (5YR 4/6), moist; 30 percent clay; weak medium prismatic structure parting to moderate fine and medium subangular blocky structure; friable, hard; few fine roots; common fine and common very fine pores; common worm casts; 2 percent fine and medium carbonate nodules and 2 percent fine and medium carbonate masses; 5 percent fine and medium gypsum masses; 2 percent 2 to 20 millimeter fragments of dolomite; strong effervescence; moderately alkaline; abrupt wavy boundary." diff --git a/inst/extdata/OSD/V/VIVIAN.json b/inst/extdata/OSD/V/VIVIAN.json index 415a2639cd..48c47a9811 100644 --- a/inst/extdata/OSD/V/VIVIAN.json +++ b/inst/extdata/OSD/V/VIVIAN.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 10 centimeters (0 to 4 inches); grayish brown (10YR 5/2) gravelly loam, dark grayish brown (10YR 4/2) moist; weak medium subangular blocky structure parting to weak fine granular; slightly hard, friable; many roots; 15 to 20 percent gravel; violent effervescence; slightly alkaline; clear smooth boundary. [5 to 25 centimeters (2 to 10 inches thick)]" @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--10 to 23 centimeters (4 to 9) inches; pale brown (10YR 6/3) very gravelly loam, brown (10YR 5/3) moist; massive; slightly hard, friable; common roots; about 40 percent gravel; violent effervescence; slightly alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C2--23 to 127 centimeters (9 to 50 inches); pale brown (10YR 6/3) very gravelly loam, brown (10YR 5/3) moist; massive; loose; common roots to about 89 centimeters (35 inches); few roots to about 107 centimeters (42 inches); about 55 percent gravel; violent effervescence; moderately alkaline; abrupt wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--127 to 152 centimeters (50 to 60 inches); pale yellow (2.5Y 7/4) shale, light olive brown (2.5Y 5/4) moist; brittle; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/V/VODA.json b/inst/extdata/OSD/V/VODA.json index fc37f77942..036429177d 100644 --- a/inst/extdata/OSD/V/VODA.json +++ b/inst/extdata/OSD/V/VODA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 18 centimeters (0 to 7 inches); grayish brown (2.5Y 5/2) silty clay loam, very dark grayish brown (2.5Y 3/2) moist; weak fine granular structure; slightly hard, friable; many fine roots; strong effervescence; moderately alkaline; clear smooth boundary. (18 to 30 centimeters (7 to 12 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--18 to 61 centimeters (7 to 24 inches); gray (5Y 5/1) silty clay, very dark gray (5Y 3/1) moist; common medium prominent dark yellowish brown (10YR 4/4) mottles; moderate medium platy structure; few thin strata of lighter or darker colors; hard, firm; common fine roots; violent effervescence; moderately alkaline; clear smooth boundary. (25 to 76 centimeters (10 to 30 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--61 to 152 centimeters (24 to 60 inches); light brownish gray (2.5Y 6/2) silt loam, dark grayish brown (2.5Y 4/2) moist; many fine prominent yellowish brown (10YR 5/4) mottles; massive; slightly hard, friable; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WABEK.json b/inst/extdata/OSD/W/WABEK.json index 227aaf15ef..c2567ba772 100644 --- a/inst/extdata/OSD/W/WABEK.json +++ b/inst/extdata/OSD/W/WABEK.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--5 to 9 inches; light brownish gray (10YR 6/2) gravelly coarse sandy loam, brown (10YR 4/3) moist; single grain; common roots; about 25 percent coarse fragments; carbonate crusts coat undersides of coarse fragments; strong effervescence; slightly alkaline; diffuse boundary. (0 to 24 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--9 to 60 inches; pale brown (10YR 6/3) very gravelly coarse sand, grayish brown (10YR 5/2) moist; stratified with varying amounts and mixtures of gravel and cobblestones; single grain; few roots in upper 10 inches; about 50 percent coarse fragments; strong effervescence, decreasing to slight effervescence in the lower part; slightly alkaline." diff --git a/inst/extdata/OSD/W/WADENA.json b/inst/extdata/OSD/W/WADENA.json index a0a0d37be5..749d9973a2 100644 --- a/inst/extdata/OSD/W/WADENA.json +++ b/inst/extdata/OSD/W/WADENA.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--40 to 60 inches; brown (10YR 5/3) gravelly coarse sand; few masses of yellowish brown (10YR 5/4), dark yellowish brown (10YR 4/4), and grayish brown (10YR 5/2); single grain; loose; about 20 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WADENILL.json b/inst/extdata/OSD/W/WADENILL.json index 82ad05b843..77a33f64fe 100644 --- a/inst/extdata/OSD/W/WADENILL.json +++ b/inst/extdata/OSD/W/WADENILL.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--31 to 60 inches; yellowish brown (10YR 5/4) fine sandy loam; few fine distinct grayish brown (10YR 5/2) and common medium distinct yellowish brown (10YR 5/6) relic mottles; massive; friable; 8 percent coarse fragments; few threads and masses of calcium carbonate; strong effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/W/WAHIAWA.json b/inst/extdata/OSD/W/WAHIAWA.json index 6b35e0561c..3f6a25d0a5 100644 --- a/inst/extdata/OSD/W/WAHIAWA.json +++ b/inst/extdata/OSD/W/WAHIAWA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap1--0 to 6 inches; very dusky red (2.5YR 2/2) silty clay, dusky red (2.5YR 3/2) dry; moderate medium, fine and very fine granular structure; very hard, friable, sticky and plastic; many roots; many medium, fine and very fine pores; many 1/8 to l/4 inch black concretions; violent effervescence with hydrogen peroxide; moderately acid (pH 5.6); abrupt smooth boundary. (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.8, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ap2--6 to 12 inches; dusky red (2.5YR 3/2) moist and dry silty clay; common dark reddish brown (2.5YR 3/4) material from the B horizon mixed by cultivation; moderate coarse subangular blocky structure; hard, firm, sticky and plastic; compact in place; many roots; few fine and very fine tubular pores; many black concretions; violent effervescence with hydrogen peroxide; moderately acid (pH 5.8); abrupt wavy boundary. (5 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.6, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bo1--12 to 16 inches; dark reddish brown (2.5YR 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate fine and very fine subangular blocky structure; hard, firm, sticky and plastic; common roots; common fine and very fine and few coarse tubular pores; many black concretions; strong effervescence with hydrogen peroxide; moderately acid (pH 5.6); gradual wavy boundary. (4 to 8 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bo2--16 to 33 inches; dark reddish brown (2.5YR 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate and strong fine and very fine subangular blocky structure; hard, friable, sticky and plastic; few roots; common fine and very fine tubular pores; nearly continuous pressure faces; many fine distinct black stains; few black concretions; strong effervescence with hydrogen peroxide; slightly acid (pH 6.5); diffuse wavy boundary. (14 to 2O inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Bo3--33 to 45 inches; dark reddish brown (2.5YR 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate and strong very fine subangular blocky structure; hard, friable, sticky and plastic; common fine and very fine tubular pores; nearly continuous pressure faces; many fine distinct black stains; few black concretions; moderate effervescence with hydrogen peroxide; neutral (pH 7.l); diffuse wavy boundary. (10 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 6.9, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bo4--45 to 60 inches; dark reddish brown (2.5YR 2/4) silty clay, dark reddish brown (2.5YR 3/4) dry; moderate and strong very fine subangular blocky structure; hard, friable, sticky and plastic; common fine and very fine tubular pores; few fine black stains; thin patchy clay films; continuous pressure faces; many distinct slickensides up to 2 inches long; very few black concretions; slight effervescence with hydrogen peroxide; neutral (pH 6.9)." diff --git a/inst/extdata/OSD/W/WAHIKULI.json b/inst/extdata/OSD/W/WAHIKULI.json index 2d5c1bcdfa..9a6cff86eb 100644 --- a/inst/extdata/OSD/W/WAHIKULI.json +++ b/inst/extdata/OSD/W/WAHIKULI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ap1--0 to 20 centimeters (0 to 8 inches); dark reddish brown (2.5YR 3/3) silty clay, dark red (2.5YR 3/6) dry; weak fine and very fine subangular blocky structure; slightly hard, friable, moderately sticky and moderately plastic; many fine roots; common fine irregular pores; few fine black concretions; strong effervescence with hydrogen peroxide; slightly alkaline (pH 7.4); gradual wavy boundary. (15 to 25 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--20 to 38 centimeters (8 to 15 inches); dark reddish brown (2.5YR 3/3) silty clay, dark red (2.5YR 3/6) dry; weak medium and fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; many fine roots; many fine tubular pores; few fine black concretions and stains; common sand size aggregates that are resistant to crushing; strong effervescence with hydrogen peroxide; slightly alkaline (pH 7.7); clear wavy boundary. (13 to 20 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--38 to 69 centimeters (15 to 27 inches); dark reddish brown (2.5YR 3/4) silty clay, dark red (2.5YR 3/6) dry; weak medium and fine subangular blocky structure; slightly hard, friable, moderately sticky and moderately plastic; common fine roots; many fine and medium tubular pores; few black stains on faces of peds and in pores; patchy pressure faces; 2 percent highly weathered gravel; strong effervescence with hydrogen peroxide; slightly alkaline (pH 7.6); gradual wavy boundary. (25 to 38 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw2--69 to 81 centimeters (27 to 32 inches); dark reddish brown (2.5YR 3/4) gravelly silty clay, red (2.5YR 4/6) dry; weak fine subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few fine roots; common fine and medium tubular pores; 35 percent highly weathered to slightly weathered gravel; 2 percent cobbles; strong effervescence with hydrogen peroxide; slightly alkaline (pH 7.6); abrupt wavy boundary. (10 to 18 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--81 centimeters; gray porous basalt bedrock with dark reddish brown coatings and very little soil material in voids and cracks; in irrigated areas this material is very difficult to grind out with auger; in dry areas this material is extremely difficult to chip with spade; very slight effervescence with hydrochloric acid on some rock surfaces." diff --git a/inst/extdata/OSD/W/WAHPETON.json b/inst/extdata/OSD/W/WAHPETON.json index 6416c47552..d61f608869 100644 --- a/inst/extdata/OSD/W/WAHPETON.json +++ b/inst/extdata/OSD/W/WAHPETON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; very dark gray (10YR 3/1) silty clay, black (10YR 2/1) moist; strong very fine angular blocky structure; very hard, friable; sticky and plastic; many fine roots; many fine pores; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--8 to 23 inches; dark gray (10YR 4/1) silty clay, black (10YR 2/1) moist; strong medium subangular blocky structure parting to strong very fine angular blocky; very hard, firm; sticky and plastic; common fine roots; common fine pores; faces of peds have slick, shiny surface when moist; gray (10YR 5/1) band crosses horizon at depths of 12 to 14 inches; slight effervescence; slightly alkaline; clear smooth boundary. (Combined A horizons 16 to 40 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C--23 to 27 inches; gray (10YR 5/1) silty clay, very dark gray (10YR 3/1) moist; strong very fine angular blocky structure; hard, firm; sticky and plastic; few roots, common fine pores; slight effervescence; slightly alkaline; clear smooth boundary. (2 to 10 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Assb--27 to 38 inches; dark gray (10YR 4/1) silty clay, black (10YR 2/1) moist; strong medium subangular blocky structure parting to strong very fine angular blocky; hard, firm; sticky and plastic; few roots; common fine pores; slickensides on vertical faces of peds; few fine masses of carbonates; slight effervescence; slightly alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Css--38 to 47 inches; gray (10YR 5/1) silty clay, very dark gray (10YR 3/1) moist; moderate medium prismatic structure parting to strong very fine angular blocky; very hard, firm; sticky and plastic; few fine roots; common fine pores; distinct slickensides on faces of peds; common medium masses of carbonates; strong effervescence; slightly alkaline; gradual wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A'ssb--47 to 60 inches; dark gray (10YR 4/1) silty clay, black (10YR 2/1) moist; moderate medium prismatic structure parting to strong fine and very fine angular blocky; very hard, firm; sticky and plastic; few fine pores; slickensides are vertical but slant to 15 degrees from vertical below depths of 54 inches; few masses of carbonates; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/W/WAHTUM.json b/inst/extdata/OSD/W/WAHTUM.json index 85c06920dd..d71f6c75c6 100644 --- a/inst/extdata/OSD/W/WAHTUM.json +++ b/inst/extdata/OSD/W/WAHTUM.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "B22t--14 to 18 inches; brown (10YR 5/3) heavy silty clay loam, dark brown (10YR 3/3) moist; massive with some weakly cemented concretions; very hard, firm, sticky, plastic; few fine roots; common fine pores; strong effervescence on lime veins or coatings on concretions, no effervescence on the matrix; moderately alkaline (pH 8.4); abrupt wavy boundary. (2 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1cam--18 to 24 inches; brown (10YR 5/3) silt loam, dark brown (10YR 3/3) moist; massive; weakly cemented (lime silica); very hard, firm, slightly sticky, slightly plastic; few fine roots; common fine pores; violent effervescence with dilute hydrochloric acid; light gray (10YR 7/2) mycelial lime and lime coatings on embedded concretions; strongly alkaline (pH 8.6); gradual wavy boundary. (2 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--24 to 46 inches; grayish brown (10YR 5/2) sandy loam, very dark grayish brown (10YR 3/2) moist; massive; soft, very friable, nonsticky, slightly plastic; few fine roots; violent effervescence with dilute hydrochloric acid; strongly alkaline (pH 8.6); gradual wavy boundary. (2 to 20 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--46 to 60 inches; grayish brown (10YR 5/2) extremely gravelly sandy loam, very dark grayish brown (10YR 3/2) moist; massive; loose; nonsticky, slightly plastic; 75 percent gravel and cobbles; violent effervescence; much of the gravel is lime silica coated; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/W/WAIAKOA.json b/inst/extdata/OSD/W/WAIAKOA.json index 58de6f1e95..34150cdfef 100644 --- a/inst/extdata/OSD/W/WAIAKOA.json +++ b/inst/extdata/OSD/W/WAIAKOA.json @@ -89,7 +89,7 @@ "cf_class": "very stony", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strongly effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 centimeters (0 to 2 inches); dark reddish brown (5YR 3/3) very stony silty clay loam, reddish brown (5YR 3/4) dry; moderate medium and thick platy structure; hard, friable, slightly sticky and slight plastic; many roots; many fine pores; roots tend to follow plates;5 percent angular 'a'a gravels, 15 percent angular 'a'a cobbles and 30 percent angular 'a'a stones ;1 to 3 percent angular 'a'a stones on surface; strongly effervescence with hydrogen peroxide; neutral (pH 6.7); abrupt smooth boundary. (3 to 8 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--5 to 20 centimeters (2 to 8 inches); dark reddish brown (5YR 3/2) silty clay loam, dark reddish brown (5YR 3/4) dry; weak coarse prismatic structure; hard, friable, slightly sticky and slightly plastic; many roots; many fine and very fine pores; compact in place except a few pockets of loose material; 5 percent angular 'a'a gravels; strongly delayed effervescence with hydrogen peroxide; neutral (pH 6.7); gradual wavy boundary. (10 to 20 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--20 to 41 centimeters (8 to 16 inches); dark reddish brown (5YR 3/3) silty clay loam, dark reddish brown (5YR 3/4) dry; weak coarse prismatic structure; hard, friable, slightly sticky and slightly plastic; many roots; many fine pores; common sand-size aggregates that are resistant to crushing; 5 percent angular 'a'a gravels; strongly delayed effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear wavy boundary. (15 to 23 centimeters thick)" diff --git a/inst/extdata/OSD/W/WAIALEALE.json b/inst/extdata/OSD/W/WAIALEALE.json index 1b5e28c010..90ab138ede 100644 --- a/inst/extdata/OSD/W/WAIALEALE.json +++ b/inst/extdata/OSD/W/WAIALEALE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A2g--0 to 4 inches; dark gray (5YR 4/1) silty clay loam, gray (10YR 5/1) dry; weak fine subangular blocky structure; hard, friable, sticky and plastic; many roots; very slight delayed effervescence with hydrogen peroxide; few fine gravel-sized ironstone-gibbsite pebbles that have soft centers; extremely acid (pH 4.0); clear wavy boundary. (3 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 4.4, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "gradual", "topography": "irregular", "narrative": "B2ir--4 to 21 inches; strong brown (7.5YR 4/6) gravelly silty clay loam, dark reddish brown (5YR 3/4) dry; weak fine subangular blocky structure; hard, friable, sticky, plastic and smeary; few roots; coatings in some pores and on some pebbles of reddish black (10R 2/1); pockets up to 8\" thick of dark reddish brown (5YR 3/2) silt loam that is very friable, slightly sticky and slightly plastic; no effervescence with hydrogen peroxide; amount of gravel increases with depth; extremely acid (pH 4.4); gradual irregular boundary. (15 to 18 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 3.4, "pH_class": "extremely acid", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "02--3 inches to 0; dark reddish brown (5YR 2/2) mucky peat, dark reddish brown (5YR 2/2) dry; massive; slightly hard, friable, slightly sticky and slightly plastic; common roots, moderate delayed effervescence with hydrogen peroxide; extremely acid (pH 3.4); abrupt smooth boundary. (2 to 5 inches thick)" diff --git a/inst/extdata/OSD/W/WAIALUA.json b/inst/extdata/OSD/W/WAIALUA.json index e32e711204..5a7c992944 100644 --- a/inst/extdata/OSD/W/WAIALUA.json +++ b/inst/extdata/OSD/W/WAIALUA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 12 inches; dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/2) moist; moderate medium and coarse subangular blocky structure; very hard, firm, very sticky and very plastic; many fine roots; common very fine and fine pores; thin layer of moderate very fine and fine granules on surface; common fine black concretions; strong effervescence with hydrogen peroxide; neutral (pH 6.7); clear wavy boundary. (5 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B21--12 to 20 inches; dark reddish brown (5YR 3/3) silty clay, dark reddish brown (5YR 3/2) moist; moderate fine and medium subangular blocky structure; very hard, friable, very sticky and very plastic; many fine and medium roots; common fine and medium tubular pores; few fine black concretions; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear wavy boundary. (6 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B22--20 to 30 inches; reddish brown (5YR 4/3) silty clay, dark reddish brown (5YR 3/3) moist; weak medium and coarse subangular blocky structure; very hard, friable, very sticky and very plastic; many fine roots; many fine tubular pores; common thin clay films in pores; few black concretions; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear wavy boundary. (8 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B23--30 to 38 inches; dark reddish brown (5YR 3/4) silty clay, dark reddish brown (5YR 3/3) moist; common medium distinct dark red (2.5YR 3/6) mottles; weak medium and coarse subangular blocky structure; very hard, friable, very sticky and very plastic; many fine roots; many fine tubular pores; thin patchy clay films in pores and on faces of peds; many fine black concretions; black stains 2 to 5 mm. wide; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear smooth boundary. (6 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--38 to 55 inches; dark reddish brown (5YR 3/4) silty clay, dark reddish brown (5YR 3/3) moist; common medium distinct dark red (2.5YR 3/6) mottles; weak coarse subangular blocky structure; very hard, friable, very sticky and very plastic; few fine roots; common fine tubular pores; few fine black concretions; black stains 2 to 5 mm.; slight effervescence with hydrogen peroxide; slightly acid (pH 6.4)." diff --git a/inst/extdata/OSD/W/WAIAWA.json b/inst/extdata/OSD/W/WAIAWA.json index c46dab91ca..eff445610b 100644 --- a/inst/extdata/OSD/W/WAIAWA.json +++ b/inst/extdata/OSD/W/WAIAWA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 5 centimeters (0 to 2 inches); dark reddish brown (5YR 3/2) heavy clay loam, dark reddish brown (5YR 3/4) rubbed, dark reddish brown (5YR 3/3) dry; strong very fine granular structure; slightly hard, friable, moderately sticky and moderately plastic; many coarse, medium, fine and very fine roots; slight effervescence with hydrogen peroxide; slightly acid (pH 6.4); clear smooth boundary. (1.3 to 8 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "A2--5 to 36 centimeters (2 to 14 inches); dark reddish brown (5YR 3/4) clay, same color rubbed, dark reddish brown (5YR 3/3) dry; moderate coarse angular blocky structure; very hard, very firm, moderately sticky and moderately plastic; many coarse, medium and common fine and very fine roots; slickensides on some peds; slight effervescence with hydrogen peroxide; neutral (pH 6.6); abrupt irregular boundary. (15 to 31 centimeters thick)" diff --git a/inst/extdata/OSD/W/WAIHUNA.json b/inst/extdata/OSD/W/WAIHUNA.json index dd144a3a38..aa5824aa29 100644 --- a/inst/extdata/OSD/W/WAIHUNA.json +++ b/inst/extdata/OSD/W/WAIHUNA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.3, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 1 inch; very dark grayish brown (10YR 3/2) moist and dry clay; strong very fine and fine granular structure; hard, friable, very sticky and very plastic; violent effervescence with hydrogen peroxide; strongly acid (pH 5.3); clear smooth boundary. (1/2 to 2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.3, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap2--1 to 6 inches; dark brown (10YR 3/3) clay, dark yellowish brown (10YR 3/4) dry; moderate very fine granular structure; very hard, friable, very sticky and very plastic; many interstitial pores; cracks up to 1 inch wide develop on drying; many variegated sand grains can be seen under a hand lens; common plant remains that have been plowed under; violent effervescence with hydrogen peroxide; strongly acid (pH 5.3); clear smooth boundary. (5 to 6 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 5.1, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap3--6 to 12 inches; dark brown (7.5YR 3/2) moist and dry clay; massive; hard, friable, very sticky and very plastic; few very fine tubular pores; cracks up to 1 inch wide develop on drying; many plant remains that have been plowed under; many variegated sand grains can be seen under a hand lens; violent effervescence with hydrogen peroxide; strongly acid (pH 5.1); clear smooth boundary. (5 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 5.4, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap4--12 to 18 inches; dark brown (10YR 3/3) clay, dark yellowish brown (10YR 3/4) dry; weak very fine subangular blocky structure; very hard, friable, very sticky and very plastic; common pores; cracks up to 1 inch develop on drying; common plant remains that have been plowed under; many variegated sand grains can be seen under a hand lens; occasional highly weathered pebbles; violent effervescence with hydrogen peroxide; strongly acid (pH 5.4); clear smooth boundary. (6 to 7 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 5.9, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AC--18 to 25 inches; dark brown (10YR 3/3) moist and dry clay; weak coarse prismatic structure parting to moderate very fine and fine subangular blocky; very hard, firm, very sticky and very plastic; common pores; common slickensides, some are weakly grooved; few highly weathered pebbles; many variegated sand grains can be seen under a hand lens; firm in place; violent effervescence with hydrogen peroxide; moderately acid (pH 5.9); gradual wavy boundary. (7 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--25 to 41 inches; dark brown (7.5YR 3/2) moist and dry clay; strong very fine subangular blocky structure; very hard, firm, very sticky and very plastic; common pores; many variegated sand grains can be seen under a hand lens; few highly weathered pebbles; common slickensides; strong effervescence with hydrogen peroxide; neutral (pH 6.6); clear smooth boundary. (15 to 17 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C2--41 to 53 inches; dark brown (7.5YR 3/2) moist and dry clay; moderate very fine and fine subangular blocky structure; very hard, firm, very sticky and very plastic; many very fine tubular pores; many variegated sand grains can be seen under a hand lens; common highly weathered pebbles; common slickensides; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4); gradual wavy boundary. (11 to 12 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--53 to 65 inches; dark brown (7.5YR 3/2) moist and dry silty clay; moderate very fine and fine subangular blocky structure; hard, firm, very sticky and very plastic; many very fine and fine and few coarse tubular pores; common patchy slickensides; common manganese stains; many variegated sand grains, more than above horizons; common highly weathered pebbles; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4)" diff --git a/inst/extdata/OSD/W/WAIKALOA.json b/inst/extdata/OSD/W/WAIKALOA.json index 61964736c9..66873af09a 100644 --- a/inst/extdata/OSD/W/WAIKALOA.json +++ b/inst/extdata/OSD/W/WAIKALOA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Ckb1--79 to 99 centimeters (31 to 39 inches); dark reddish brown (5YR 3/2) medial silty clay loam, strong brown (7.5YR 5/6) dry; weak coarse prismatic structure; hard, friable, slightly sticky and moderately plastic; common roots; many very fine pores; violent effervescence (4 percent calcium carbonate); slightly alkaline (pH 7.8); clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Ckb2--99 to 127 centimeters (39 to 50 inches); dark brown (7.5YR 3/4) silty clay loam, light yellowish brown (10YR 6/4) dry; weak coarse prismatic structure; hard, friable, slightly sticky and moderately plastic; few roots; many very fine pores; a strongly cemented layer about one inch thick is at 107 centimeters (42 inches); strong effervescence (3 percent calcium carbonate); moderately alkaline (pH 8.1); abrupt wavy boundary. (Combined thickness of the 2Ckb horizon is 43 to 69 centimeters {17 to 27} inches thick.)" diff --git a/inst/extdata/OSD/W/WAIKANE.json b/inst/extdata/OSD/W/WAIKANE.json index a1663bc5f9..e060964017 100644 --- a/inst/extdata/OSD/W/WAIKANE.json +++ b/inst/extdata/OSD/W/WAIKANE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 4.9, "pH_class": "very strongly acid", - "eff_class": "NA", + "eff_class": "very slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; dark brown (7.5YR 3/2) silty clay, dark brown (7.5YR 3/4) dry; strong fine and very fine subangular blocky structure; very hard, firm, sticky and plastic; many very fine and fine roots; many very fine and fine tubular pores; many worm holes and casts; very slight effervescence with hydrogen peroxide; very strongly acid (pH 4.9); abrupt smooth boundary. (6 to 9 inches thick)" diff --git a/inst/extdata/OSD/W/WAIKAPU.json b/inst/extdata/OSD/W/WAIKAPU.json index 60ca174624..fea5086ce0 100644 --- a/inst/extdata/OSD/W/WAIKAPU.json +++ b/inst/extdata/OSD/W/WAIKAPU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 5.1, "pH_class": "strongly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 10 centimeters (0 to 4 inches); dark reddish brown (5YR 3/2) silty clay loam, dark reddish brown (5YR 3/3) dry; weak very fine granular structure; soft, very friable, sticky and plastic; few roots; many interstitial pores; common very fine vertical tubular pores; many fine black concretions; violent effervescence with hydrogen peroxide; strongly acid (pH 5.1); clear wavy boundary. (8 to 13 centimeters {3 to 5 inches} thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.1, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Ap2--10 to 31 centimeters (4 to 12 inches); dark reddish brown (5YR 3/2) light silty clay loam, reddish brown (5YR 4/4) dry; weak medium and fine subangular blocky structure, some pockets of weak very fine granular structure; soft, friable, sticky and plastic; many roots; many very fine and few fine tubular pores; common fine black concretions; violent effervescence with hydrogen peroxide; slightly acid (pH 6.1); gradual wavy boundary. (18 to 25 centimeters {7 to 10 inches} thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw--31 to 61 centimeters (12 to 24 inches); dark reddish brown (2.5YR 3/4) silty clay loam, reddish brown (2.5YR 4/4) dry; strong fine and very fine angular and subangular blocky structure; slightly hard, friable, sticky and plastic; firm in place; few roots; many very fine and fine and few medium tubular pores; patchy glaze on faces of peds; common fine black concretions; violent effervescence with hydrogen peroxide; common fine hard earthy lumps which break down slowly upon rubbing; neutral (pH 7.0); gradual wavy boundary. (25 to 36 centimeters (10 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bo1--61 to 86 centimeters (24 to 34 inches); dark reddish brown (2.5YR 3/4) moist and dry silty clay loam; moderate medium subangular blocky structure parting to strong fine and very fine angular blocky; soft, friable, sticky and plastic; moderately firm in place; many very fine and fine and few medium tubular pores; weakly expressed patchy pressure faces; many black concretions, commonly up to 2 mm. in diameter; violent effervescence with hydrogen peroxide; neutral (pH 7.2); gradual wavy boundary. (20 to 31 centimeters (8 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bo2--86 to 112 centimeters (34 to 44 inches); reddish brown (5YR 5/3) silty clay loam, dark reddish brown (5YR 3/4) dry; weak medium and fine subangular blocky structure; few weakly grooved slickensides; soft, very friable sticky and plastic; many very fine and fine and common medium tubular pores; many black concretions; violent effervescence with hydrogen peroxide; neutral (pH 7.2); clear wavy boundary. (20 to 31 centimeters (8 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bss--112 to 152 centimeters (44 to 60 inches); pale red (2.5YR 6/2) silty clay loam, dark reddish brown (2.5YR 3/4) dry; weak medium subangular blocky structure parting to moderate fine and very fine subangular blocky; few slickensides; soft, friable, sticky and plastic; many very fine and fine and common medium tubular pores; patchy glaze on some peds; common fine hard earthy lumps that are broken down by persistent rubbing; few fine black concretions; slight effervescence with hydrogen peroxide; neutral (pH 7.2)." diff --git a/inst/extdata/OSD/W/WAIKOMO.json b/inst/extdata/OSD/W/WAIKOMO.json index 69df10150b..636e62645f 100644 --- a/inst/extdata/OSD/W/WAIKOMO.json +++ b/inst/extdata/OSD/W/WAIKOMO.json @@ -89,7 +89,7 @@ "cf_class": "stony", "pH": 7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 36 centimeters (0 to 14 inches); very dark grayish brown (10YR 3/2) stony silty clay, dark brown (7.5YR 3/2) dry; weak fine and very fine subangular blocky structure; very hard, very firm, moderately sticky and moderately plastic; many medium, fine and very fine roots; common medium, fine and many very fine irregular pores; 25 percent stones; moderate effervescence with hydrogen peroxide; neutral (pH 7.0); clear smooth boundary. (15 to 41 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "stony", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderate effervescence", "distinctness": "abrupt", "topography": "irregular", "narrative": "Bw--36 to 51 centimeters (14 to 20 inches); reddish brown (5YR 4/4) stony heavy silty clay loam, same color rubbed and dry; moderate fine and very fine subangular and angular blocky structure; very hard, firm, moderately sticky and moderately plastic; common medium, fine and very fine roots; common medium, fine and many very fine tubular pores; 25 percent stones; few, distinct clay films on faces of peds; when dry, peds are nearly covered with yellowish brown sugarlike coatings; many very fine dark reddish brown concretions, hard to very hard, that effervesce with hydrogen peroxide; slight to moderate effervescence with hydrogen peroxide; slightly alkaline (pH 7.4); abrupt irregular boundary. (10 to 20 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "no effervescence", "distinctness": "NA", "topography": "NA", "narrative": "R--51 centimeters (20 inches); hard pahoehoe lava rock with soil material in the few cracks. The soil material is brown (7.5YR 4/4) heavy silty clay loam, strong brown (7.5YR 5/6) dry; weak very fine subangular blocky structure; firm, moderately sticky and moderately plastic; few medium, fine and very fine roots; common medium and fine and many very fine pores; when dry, peds are nearly covered with yellowish brown sugarlike coatings; no effervescence with hydrogen peroxide; slightly alkaline (pH 7.5)." diff --git a/inst/extdata/OSD/W/WAILUKU.json b/inst/extdata/OSD/W/WAILUKU.json index c6f8c6c41e..4fc7cfafe0 100644 --- a/inst/extdata/OSD/W/WAILUKU.json +++ b/inst/extdata/OSD/W/WAILUKU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap1--0 to 10 centimeters (0 to 4 inches); dark reddish brown (5YR 3/3) silty clay, dark reddish gray (5YR 4/2) dry; weak fine and very fine granular structure; hard, friable, very sticky and very plastic; few fine roots; many very fine pores; few fine black concretions that effervesce with hydrogen peroxide; strong effervescence with hydrogen peroxide; slightly acid (pH 6.3); clear wavy boundary. (5 to 13 centimeters thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 5.9, "pH_class": "moderately acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap2--10 to 31 centimeters (4 to 12 inches); dark reddish brown (5YR 3/3) silty clay, reddish brown (5YR 4/3) dry; weak medium and fine subangular blocky structure; hard, firm, very sticky and very plastic; compact in place; many fine roots; many fine pores; few fine black concretions; strong effervescence with hydrogen peroxide; moderately acid (pH 5.9); clear wavy boundary. (18 to 25 centimeters thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw1--31 to 66 centimeters (12 to 26 inches); dark reddish brown (5YR 3/4) silty clay, reddish brown (5YR 4/3) dry; moderate medium and fine subangular blocky structure; slightly hard, friable, very sticky and very plastic; compact in place; few fine roots; many fine and very fine pores; continuous pressure faces on peds; few fine black concretions; few highly weathered pebbles of basic igneous rock; strong effervescence with hydrogen peroxide; slightly acid (pH 6.3); gradual wavy boundary. (28 to 41 centimeters thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.3, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bw2--66 to 89 centimeters (26 to 35 inches); dark reddish brown (5YR 3/4) silty clay, dark reddish gray (5YR 4/2) dry; moderate medium and fine subangular blocky structure; slightly hard, firm, very sticky and very plastic; few very fine roots; many fine pores; continuous pressure faces on peds; few fine black concretions; few highly weathered pebbles and cobbles of basic igneous rocks; strong effervescence with hydrogen peroxide; slightly acid (pH 6.3); gradual wavy boundary. (20 to 31 centimeters thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.2, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "BC--89 to 152 centimeters (35 to 60 inches); dark reddish brown (5YR 3/4) silty clay, dark reddish gray (5YR 4/2) dry; moderate medium, fine and very fine subangular blocky structure; slightly hard, firm, very sticky and very plastic; few roots; many fine and very fine pores; 10 to 15 percent weathered gravels and cobbles; strong effervescence with hydrogen peroxide; slightly acid (pH 6.2)." diff --git a/inst/extdata/OSD/W/WAINEE.json b/inst/extdata/OSD/W/WAINEE.json index 98c983183c..7986adc655 100644 --- a/inst/extdata/OSD/W/WAINEE.json +++ b/inst/extdata/OSD/W/WAINEE.json @@ -89,7 +89,7 @@ "cf_class": "extremely stony", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ap--0 to 12 inches; dark reddish brown (5YR 3/3) extremely stony silty clay, reddish brawn (5YR 4/4) dry; moderate fine and very fine granular structure; slightly hard, friable, sticky and plastic; many roots; many fine pores; 10 to 15 percent stones; few highly weathered rock fragments; strong effervescence with hydrogen peroxide; neutral (pH 6.7); clear wavy boundary. (11 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very stony", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B2--12 to 26 inches; dark reddish brown (5YR 3/3) very stony silty clay, reddish brown (5YR 4/4) dry; weak medium and fine subangular blocky structure; slightly hard, friable, sticky and plastic; common roots; many fine and medium pores; few very fine black specks; moderately firm in place; 35 to 40 percent hard and highly weathered pebbles, cobbles and stones; strong delayed effervescence with hydrogen peroxide; neutral (pH 6.7); clear wavy boundary. (12 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "extremely stony", "pH": 6.7, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "delayed effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "B3--26 to 36 inches; dark reddish brown (5YR 3/3) extremely stony silty clay, reddish brown (5YR 4/4) dry; weak medium and fine subangular blocky structure; slightly hard, friable, sticky and plastic; common roots; many fine pores; few very fine black specks; 70 to 80 percent gray and light yellowish brown pebbles, cobbles and stones; strong delayed effervescence with hydrogen peroxide; neutral (pH 6.7); clear wavy boundary. (9 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely stony", "pH": 7.1, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC--36 to 56 inches; dark brown (7.5YR 3/2) extremely stony silty clay, dark brown (7.5YR 4/4) dry; massive; slightly hard, firm, sticky and plastic; few fine and medium pores; 80 to 90 percent gray and light yellowish brown pebbles, cobbles and stones; strong effervescence with hydrogen peroxide; slight effervescence with hydrochloric acid on small pebbles; neutral (pH 7.1)." diff --git a/inst/extdata/OSD/W/WAIPAHU.json b/inst/extdata/OSD/W/WAIPAHU.json index 890b24a3ea..005b961c88 100644 --- a/inst/extdata/OSD/W/WAIPAHU.json +++ b/inst/extdata/OSD/W/WAIPAHU.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Ap--0 to 12 inches; dark grayish brown (10YR 4/2) silty clay, dark brown (10YR 4/3) dry; moderate fine and very fine granular and moderate medium subangular blocky structure; very hard, friable, sticky and plastic; many roots; common fine and very fine pores; few coral fragments; violent effervescence with hydrogen peroxide; slightly acid (pH 6.5); clear smooth boundary. (8 to 12 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.5, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "B21--12 to 26 inches; dark brown (10YR 4/3) silty clay, dark yellowish brown (10YR 4/4) dry; strong very coarse prismatic structure parting to moderate medium and coarse subangular blocky; hard, firm, sticky and plastic; few coarse roots, many fine roots; few coarse, common fine and very fine tubular pores; many weak pressure faces; few coatings in pores; few fine black concretions; strong effervescence with hydrogen peroxide; slightly acid (pH 6.5); gradual wavy boundary. (10 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B23--36 to 46 inches; dark brown (10YR 4/3) silty clay, dark yellowish brown (10YR 4/4) dry; strong coarse prismatic structure parting to moderate medium and coarse subangular and angular blocky; common, deeply grooved slickensides oriented at 20 degrees; hard, firm, sticky and plastic; few coarse roots, common fine roots, mainly matted between prisms; few coarse pores, many very fine tubular pores; black stains in pores and on faces of peds; common pressure faces on peds; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4); gradual smooth boundary. (8 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 6.4, "pH_class": "slightly acid", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "B24--46 to 70 inches; dark brown (10YR 4/3) silty clay, dark yellowish brown (10YR 4/4) dry; strong coarse prismatic structure parting to strong medium and coarse subangular blocky; common deeply grooved slickensides; very hard, firm, very sticky and very plastic; few fine roots; many very fine pores; coatings in pores; common pressure faces; many fine black concretions; prominent black stains; strong effervescence with hydrogen peroxide; slightly acid (pH 6.4)." diff --git a/inst/extdata/OSD/W/WAKEEN.json b/inst/extdata/OSD/W/WAKEEN.json index d39565c004..4d92a7b157 100644 --- a/inst/extdata/OSD/W/WAKEEN.json +++ b/inst/extdata/OSD/W/WAKEEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 30 centimeters (0 to 12 inches); very dark gray (10YR 3/1) silty clay loam, black (10YR 2/1) moist; strong medium granular structure; slightly hard, friable, slightly sticky, slightly plastic; strong effervescence; moderately alkaline; gradual smooth boundary. (18 to 51 centimeters (7 to 20 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bw--30 to 58 centimeters (12 to 23 inches); grayish brown (10YR 5/2) silty clay loam, dark grayish brown (10YR 4/2) moist; moderate medium granular structure; slightly hard, friable, slightly sticky, slightly plastic; many worm casts having slightly darker color than soil mass; segregated carbonates in form of threads and films; violent effervescence; moderately alkaline; gradual smooth boundary. (15 to 38 centimeters (6 to 15 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--58 to 91 centimeters (23 to 36 inches); very pale brown (10YR 8/3) silty clay loam, pale brown (10YR 6/3) moist; weak coarse prismatic structure; some bedding planes in lower part; hard, friable, slightly sticky, slightly plastic; many soft bodies of lime and soft bodies of chalk in lower part; violent effervescence; strongly alkaline; gradual wavy boundary. (18 to 51 centimeters (7 to 20 inches) thick)" diff --git a/inst/extdata/OSD/W/WAKO.json b/inst/extdata/OSD/W/WAKO.json index 58c31a81ba..14f8b62cc4 100644 --- a/inst/extdata/OSD/W/WAKO.json +++ b/inst/extdata/OSD/W/WAKO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkq--25 to 31 inches; pale brown (10YR 6/3) sandy clay loam, brown (10YR 5/3) moist; massive; hard, firm, slightly sticky and slightly plastic; few very fine and fine roots; few very fine and fine tubular pores; 3 percent pebbles; 10 percent strongly cemented nodules; lime and silica coats on undersides of coarse fragments; violent effervescence (30 percent calcium carbonate equivalent); moderately alkaline (pH 8.0); gradual wavy boundary. (5 to 18 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bkqm--31 to 43 inches; white (10YR 8/2) indurated duripan; several continuous laminar caps less than 1 mm thick and 1 to 2 inches apart beginning at 31 inches; violent effervescence; abrupt wavy boundary. (10 to 27 inches thick)" diff --git a/inst/extdata/OSD/W/WALDECK.json b/inst/extdata/OSD/W/WALDECK.json index e63134897d..6cf95da1f0 100644 --- a/inst/extdata/OSD/W/WALDECK.json +++ b/inst/extdata/OSD/W/WALDECK.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Ap--0 to 15 inches; dark grayish brown (10YR 4/2) fine sandy loam, very dark brown (10YR 2/2) moist; weak granular structure; soft, very friable; slight effervescence; moderately alkaline; gradual smooth boundary. (10 to 20 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--15 to 24 inches; grayish brown (10YR 5/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; few faint brown mottles in lower 2 inches; weak medium granular structure; slightly hard, very friable; slight effervescence; moderately alkaline; gradual smooth boundary. (0 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--24 to 46 inches; light brownish gray (10YR 6/2) fine sandy loam, grayish brown (10YR 5/2) moist; common medium distinct strong brown (7.5YR 5/6) and few gray (10YR 6/1) mottles; massive; hard, very friable; slight effervescence; moderately alkaline; diffuse boundary. (8 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--46 to 60 inches; pale brown (10YR 6/3) fine sand, brown (10YR 5/3) moist; single grained; loose; few thin strata of coarse sand and gravelly sand; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WALDRON.json b/inst/extdata/OSD/W/WALDRON.json index 4107da29d6..b633f53809 100644 --- a/inst/extdata/OSD/W/WALDRON.json +++ b/inst/extdata/OSD/W/WALDRON.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--7 to 13 inches; very dark grayish brown (10YR 3/2) silty clay; grayish brown (10YR 5/2) dry; weak thick and very thick strata parting to moderate very fine subangular blocky; firm; common thin (1 to 2 mm) discontinuous brown (10YR 5/3) very fine sandy loam strata and coatings along horizontal bedding planes and surfaces; few fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary. (0 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--13 to 17 inches; very dark brown (10YR 2/2) silty clay loam; dark grayish brown (10YR 4/2) dry; weak thick strata parting to moderate very fine subangular blocky; firm; common thin (1 to 3 mm) brown (10YR 5/3) very fine sandy loam strata; few fine roots; slight effervescence; slightly alkaline; abrupt smooth boundary. (0 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Cg1--17 to 28 inches; dark grayish brown (10YR 4/2) silty clay loam; common medium faint very dark brown (10YR 3/2) and dark brown (10YR 4/3) mottles; weak thick strata parting to moderate very fine subangular blocky structure; firm; few thin very dark grayish brown (10YR 3/2) strata with dark stains (iron and manganese oxides) on horizontal surfaces of strata; slight effervescence; slightly alkaline; abrupt smooth boundary. (0 to 15 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Cg2--28 to 40 inches; dark grayish brown (10YR 4/2) silty clay; weak thick strata parting to moderate very fine subangular blocky structure; firm; common thin very dark grayish brown (10YR 3/2) silty clay loam strata; few pockets of brown (10YR 5/3) very fine sandy loam; slight effervescence; slightly alkaline; abrupt smooth boundary. (0 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--40 to 60 inches; stratified very dark grayish brown (10YR 3/2) silty clay and dark brown (10YR 4/3) silty clay loam; weak thick strata parting to moderate very fine and fine subangular blocky structure; firm; common dark stains (iron and manganese oxides) on faces of peds; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/W/WALKE.json b/inst/extdata/OSD/W/WALKE.json index 9ccb82b205..9b95afb1df 100644 --- a/inst/extdata/OSD/W/WALKE.json +++ b/inst/extdata/OSD/W/WALKE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk1--15 to 26 inches; light yellowish brown (2.5Y 6/3) silty clay loam, olive brown (2.5Y 4/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; hard, firm, slightly sticky and slightly plastic; few accumulations of carbonate; strong effervescence; moderately alkaline; abrupt smooth boundary. (5 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bk2--26 to 45 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; weak coarse subangular blocky structure; very hard, firm, sticky and plastic; common accumulations of carbonate; strong effervescence; moderately alkaline; abrupt smooth boundary. (0 to 25 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2By--45 to 60 inches; gray (5Y 5/1) clay loam, very dark gray (5Y 3/1) moist; weak medium and coarse subangular blocky structure; very hard, firm, sticky and plastic; many fine shale fragments; common fine nests of gypsum; strong effervescence; slightly alkaline. (0 to 25 inches thick)" diff --git a/inst/extdata/OSD/W/WALUM.json b/inst/extdata/OSD/W/WALUM.json index 7715afc183..4556072a2b 100644 --- a/inst/extdata/OSD/W/WALUM.json +++ b/inst/extdata/OSD/W/WALUM.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bw2--16 to 24 inches; light brownish gray (2.5Y 6/2) loamy sand, dark grayish brown (2.5Y 4/2) moist; common medium distinct yellowish brown (10YR 5/4) and dark yellowish brown (10YR 4/4) and few fine black (10YR 2/1) redoximorphic concentrations; weak coarse prismatic and subangular blocky structure; soft, very friable, slightly sticky and nonplastic; few fine roots; few shale channers; about 90 percent shale in the 0.1 to 76 mm fraction; slight effervescence; slightly alkaline; clear wavy boundary. (0 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk1--24 to 30 inches; light gray (2.5Y 7/2) loamy sand, grayish brown (2.5Y 5/2) moist; weak coarse prismatic structure; soft, very friable, slightly sticky and slightly plastic; few fine roots; few shale channers; about 80 percent shale in the 0.1 to 76 mm fraction; few masses of carbonates; violent effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk2--30 to 40 inches; light gray (2.5Y 7/2) sand, grayish brown (2.5Y 5/2) moist; single grain; few shale channers; about 70 percent shale in the 0.1 to 76 mm fraction; few soft masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 6 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--40 to 60 inches; light gray (2.5Y 7/2), light brownish gray (2.5Y 6/2) and grayish brown (2.5Y 5/2) stratified coarse sand and sand, grayish brown (2.5Y 5/2) and dark grayish brown (2.5Y 4/2) moist; single grain; about 10 percent gravel; about 20 percent shale in the 0.1 to 76 mm fraction; thin coats of carbonates on undersides of pebbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WAMBA.json b/inst/extdata/OSD/W/WAMBA.json index 7a8605f870..074aa86e96 100644 --- a/inst/extdata/OSD/W/WAMBA.json +++ b/inst/extdata/OSD/W/WAMBA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 5 inches; very dark brown (10YR 2/2) silt loam, grayish brown (10YR 5/2) dry; moderate fine granular structure; slightly hard, friable, nonsticky, slightly plastic; many fine roots; slight effervescence; moderately alkaline (pH 8.0); abrupt smooth boundary. (3 to 6 inches thick)" diff --git a/inst/extdata/OSD/W/WAMDUSKA.json b/inst/extdata/OSD/W/WAMDUSKA.json index be07d9b5be..3a39b25d29 100644 --- a/inst/extdata/OSD/W/WAMDUSKA.json +++ b/inst/extdata/OSD/W/WAMDUSKA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 3 inches; very dark gray (10YR 3/1) loamy coarse sand, dark grayish brown (10YR 4/2) dry; single grain; loose, very friable, nonsticky, and nonplastic; many very fine and few fine and medium roots; slight effervescence; mildly alkaline; abrupt smooth boundary. (1 to 7 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--3 to 7 inches; dark grayish brown (2.5Y 4/2) gravelly loamy coarse sand, grayish brown (2.5Y 5/2) dry; single grain; loose, nonsticky, and nonplastic; many very fine and few fine and medium roots; about 35 percent by volume gravel; slight effervescence; moderately alkaline; abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--7 to 18 inches; dark grayish brown (10YR 4/2) very gravelly coarse sand, light brownish gray (10YR 6/2) dry; single grain; loose, nonsticky, and nonplastic; common very fine and few medium roots; about 40 percent by volume gravel; slight effervescence; mildly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C3--18 to 25 inches; dark grayish brown (2.5Y 4/2) very gravelly coarse sand, light brownish gray (2.5Y 6/2) dry; single grain; loose, nonsticky, and nonplastic; common very fine and few fine roots; about 55 percent by volume gravel; slight effervescence; mildly alkaline; abrupt wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C4--25 to 32 inches; very dark grayish brown (2.5Y 3/2) gravelly coarse sand, grayish brown (2.5Y 5/2) dry; single grain; loose, nonsticky, and nonplastic; common very fine and few fine, medium and coarse roots; about 20 percent by volume gravel; slight effervescence; mildly alkaline; abrupt wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C5--32 to 57 inches; dark brown (7.5YR 4/4), dark grayish brown (10YR 4/2) and dark brown (10YR 4/3) gravelly coarse sand, brown (7.5YR 5/4), grayish brown (10YR 5/2) and brown (10YR 5/3) dry; single grain; loose, nonsticky, and nonplastic; few very fine, fine and medium roots; about 15 percent by volume gravel; slight effervescence; moderately alkaline; abrupt wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ab--57 to 60 inches; black (10YR 2/1) gravelly loamy coarse sand, dark gray (10YR 4/1) dry; massive; loose, very friable, nonsticky, and nonplastic; few very fine roots; about 30 percent by volume gravel; slight effervescence; moderately alkaline. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/W/WANAGAN.json b/inst/extdata/OSD/W/WANAGAN.json index 8bfddc35db..3cff56f971 100644 --- a/inst/extdata/OSD/W/WANAGAN.json +++ b/inst/extdata/OSD/W/WANAGAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--14 to 18 inches; pale brown (10YR 6/3) loam, brown (10YR 4/3) moist; weak medium subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; 5 percent gravel; violent effervescence; slightly alkaline; clear wavy boundary. (0 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2BCk--18 to 26 inches; very pale brown (10YR 7/3) and brown (10YR 5/3) very gravelly sandy clay loam, pale brown (10YR 6/3) and dark brown (10YR 4/3) moist; massive; slightly hard, friable, sticky and plastic; few very fine roots; 40 percent gravel; 5 percent cobbles; common fine masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--26 to 39 inches; pale brown (10YR 6/3) very gravelly fine sandy loam, dark brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; 60 percent gravel; 5 percent cobbles; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C2--39 to 50 inches; pale brown (10YR 6/3) very gravelly fine sandy loam, dark brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; 50 percent gravel; 5 percent cobbles; strong effervescence; moderately alkaline; clear wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--50 to 60 inches; light brownish gray (2.5Y 6/2) extremely gravelly loam, grayish brown (2.5Y 5/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; 60 percent gravel; 5 percent cobbles; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WANBLEE.json b/inst/extdata/OSD/W/WANBLEE.json index 9774069ca4..3d54272234 100644 --- a/inst/extdata/OSD/W/WANBLEE.json +++ b/inst/extdata/OSD/W/WANBLEE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkz1--5 to 8 inches; brown (10YR 5/3) clay loam, dark brown (10YR 4/3) moist; weak medium subangular blocky structure; very hard, firm, sticky and plastic; common fine accumulations of carbonate and salts; slight effervescence; slightly alkaline; abrupt wavy boundary. (0 to 6 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bkz2--8 to 16 inches; pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; weak medium subangular blocky structure; hard, friable, slightly sticky; common fine accumulations of carbonate and salts; slight effervescence; moderately alkaline; gradual wavy boundary. (0 to 10 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--16 to 27 inches; pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; massive; hard, friable, slightly sticky; common fine fragments of siltstone; few fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (8 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--27 to 60 inches; very pale brown (10YR 8/3) and white (10YR 8/2) siltstone, pale brown (10YR 6/3) and light brownish gray (10YR 6/2) moist; easily dug with a spade; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/W/WANN.json b/inst/extdata/OSD/W/WANN.json index ae06d239be..ae040f4f94 100644 --- a/inst/extdata/OSD/W/WANN.json +++ b/inst/extdata/OSD/W/WANN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "A--15 to 41 centimeters (6 to l6 inches); gray (10YR 5/1) fine sandy loam, very dark gray (10YR 3/1) moist; weak coarse blocky structure parting to moderate medium granular; soft, friable; common fine roots throughout; strong effervescence; moderately alkaline. (Combined A horizons 25 to 49 centimeters (10 to 19 inches) thick.)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--41 to 127 centimeters (l6 to 50 inches); light brownish gray (10YR 6/2) sandy loam, grayish brown (10YR 5/2) moist, with thin strata of gray (10YR 5/1) fine sandy loam, very dark gray (10YR 3/1) moist; common medium distinct yellowish brown (10YR 5/4) moist masses of oxidized iron in the matrix; weak coarse prismatic structure; soft, friable; strong effervescence; moderately alkaline; clear wavy boundary. (61 to 91 centimeters (24 to 36 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--127 to 152 centimeters (50 to 60 inches); gray (10YR 6/1) sandy loam, dark gray (10YR 4/1) moist; single grain; loose; soft white masses of calcium carbonate above 132 centimeters (52 inches); strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WARSING.json b/inst/extdata/OSD/W/WARSING.json index 96c659cf6e..e5e7357946 100644 --- a/inst/extdata/OSD/W/WARSING.json +++ b/inst/extdata/OSD/W/WARSING.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "broken", "narrative": "Bw2--13 to 15 inches; grayish brown (2.5Y 5/2) loam, dark grayish brown (2.5Y 4/2) moist; few fine distinct yellowish brown (10YR 5/4) redoximorphic concentrations; moderate coarse and medium prismatic structure parting to moderate medium angular blocky; hard, friable, slightly sticky and slightly plastic; common roots; common pores; few faint patches of organic stains on faces of prisms; few pebbles as much as 10 mm in diameter; common threads of carbonates; strong effervescence; slightly alkaline; clear broken boundary. (Combined Bw horizons are 6 to 16 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--15 to 18 inches; light gray (2.5Y 7/2) and white (N 8/0) loam, grayish brown (2.5Y 5/2) and light brownish gray (2.5Y 6/2) moist; weak coarse prismatic structure parting to moderate very fine angular blocky; hard, friable, sticky and slightly plastic; few roots; common pores; common masses of carbonates; violent effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2Bk2--18 to 24 inches; light brownish gray (2.5Y 6/2) stratified very gravelly coarse sand, olive brown (2.5Y 4/4) moist; single grain; loose, nonsticky and nonplastic; few roots; about 50 percent gravel; undersides of pebbles coated with carbonates; violent effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C--24 to 60 inches; pale brown (10YR 6/3) and very pale brown (10YR 7/3) stratified very gravelly coarse sand, olive brown (2.5Y 4/4) and dark brown (10YR 4/3) moist; single grain; loose, nonsticky and nonplastic; about 60 percent gravel; undersides of pebbles coated with thin layer of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WASHTENAW.json b/inst/extdata/OSD/W/WASHTENAW.json index 69c6f8e7fc..c010e6ae5e 100644 --- a/inst/extdata/OSD/W/WASHTENAW.json +++ b/inst/extdata/OSD/W/WASHTENAW.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "IIC--56 to 64 inches; yellowish brown (10YR 5/4) loam; many coarse distinct grayish brown (10YR 5/2) mottles; massive, friable; few fine pebbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WASIOJA.json b/inst/extdata/OSD/W/WASIOJA.json index 27a5f4b852..9459e41d9c 100644 --- a/inst/extdata/OSD/W/WASIOJA.json +++ b/inst/extdata/OSD/W/WASIOJA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bt2--32 to 44 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; weak medium subangular blocky structure; very hard, firm, sticky and plastic; few very fine roots; common very fine tubular and few very fine interstitial pores; continuous thin clay bridges between mineral grains, and few moderately thick clay films on faces of peds; more compact and brittle than the Bt1 horizon; about 1 percent gravel; slightly effervescent in soil mass and strongly effervescent with lime in filaments and coatings; thin coating of lime on faces of most peds; moderately alkaline (pH 8.2); gradual irregularboundary. (9 to 14 inches thick)" diff --git a/inst/extdata/OSD/W/WATERTOWN.json b/inst/extdata/OSD/W/WATERTOWN.json index 7c5806b4a5..51d43174f3 100644 --- a/inst/extdata/OSD/W/WATERTOWN.json +++ b/inst/extdata/OSD/W/WATERTOWN.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--72 to 80 inches; very gravelly coarse sand; single grained; loose 40 percent gravel; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/W/WATROUS.json b/inst/extdata/OSD/W/WATROUS.json index 47edc57a61..39b5861d13 100644 --- a/inst/extdata/OSD/W/WATROUS.json +++ b/inst/extdata/OSD/W/WATROUS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt2--16 to 24 inches; grayish brown (2.5Y 5/2) loam, dark grayish brown (2.5Y 4/2) moist; moderate coarse prismatic structure parting to weak medium and coarse angular blocky; slightly hard, very friable, slightly sticky, and slightly plastic; few very fine roots; slight effervescence; mildly alkaline; gradual wavy boundary. (Combined Bt horizons 8 to 32 inches thick.)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--24 to 27 inches; light gray (2.5Y 7/2) loam, light olive brown (2.5Y 5/4) moist; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots; many fine soft masses of carbonates; violent effervescence; mildly alkaline; abrupt wavy boundary. (0 to 10 inches thick)" diff --git a/inst/extdata/OSD/W/WATTON.json b/inst/extdata/OSD/W/WATTON.json index 1ea15573df..9d30f61ea9 100644 --- a/inst/extdata/OSD/W/WATTON.json +++ b/inst/extdata/OSD/W/WATTON.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--43 to 60 inches; reddish brown (5YR 4/3) silt loam; weak medium angular blocky structure; firm; few distinct reddish brown (2.5YR 4/4) clay films on vertical faces, about 4 percent gravel and 1 percent cobbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WAUBAY.json b/inst/extdata/OSD/W/WAUBAY.json index 58a21fde3b..43f1bbdb34 100644 --- a/inst/extdata/OSD/W/WAUBAY.json +++ b/inst/extdata/OSD/W/WAUBAY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--79 to 102 centimeters 31 to 40 inches; light olive brown (2.5Y 5/3) silt loam, pale yellow (2.5Y 7/3) dry; weak medium prismatic structure parting to weak fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; few very fine roots; many very fine pores; 13 percent calcium carbonate equivalent; common fine carbonate masses; strong effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--102 to 127 centimeters (40 to 50 inches); light olive brown (2.5Y 5/3) silt loam, pale yellow (2.5Y 7/3) dry; few fine distinct yellowish brown (10YR 5/6) redoximorphic concentrations; weak medium prismatic structure parting to weak fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; common very fine pores; 18 percent calcium carbonate equivalent; common fine and medium carbonate masses; strong effervescence; moderately alkaline; gradual wavy boundary. [Combined thickness of the Bk horizon is 25 to 76 centimeters (10 to 30 inches).]" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--127 to 203 centimeters (50 to 80 inches); grayish brown (2.5Y 5/2) silt loam, light gray (2.5Y 7/2) dry; common fine distinct gray (10YR 6/1) redoximorphic depletions and common fine and medium prominent yellowish brown (10YR 5/6) redoximorphic concentrations; massive; slightly hard, friable, slightly sticky, slightly plastic; common very fine pores; strata of loam to silty clay loam; 7 percent calcium carbonate equivalent; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WAUCEDAH.json b/inst/extdata/OSD/W/WAUCEDAH.json index 5737467ae0..ca2c75114a 100644 --- a/inst/extdata/OSD/W/WAUCEDAH.json +++ b/inst/extdata/OSD/W/WAUCEDAH.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--36 to 60 inches; dark gray (10YR 4/1) loam with thin layers of partially decomposed vegetation; massive; friable; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WAUKENABO.json b/inst/extdata/OSD/W/WAUKENABO.json index b6e0ff004a..a92ad2ba88 100644 --- a/inst/extdata/OSD/W/WAUKENABO.json +++ b/inst/extdata/OSD/W/WAUKENABO.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slighlty effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--52 to 80 inches; pinkish gray (7.5YR 6/2) stratified very fine sandy loam, silt loam, loamy sand, sand and sandy loam; massive; friable; few fine distinct strong brown (7.5YR 4/6) Fe concentrations; slighlty effervescent; slightly alkaline." diff --git a/inst/extdata/OSD/W/WAUKON.json b/inst/extdata/OSD/W/WAUKON.json index 1820f612f6..0a4afb0680 100644 --- a/inst/extdata/OSD/W/WAUKON.json +++ b/inst/extdata/OSD/W/WAUKON.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--24 to 60 inches; light olive brown (2.5Y 5/4) loam; weak fine subangular blocky structure; friable; few, distinct strong brown (7.5YR 5/6) iron stains; about 5 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WAURIKA.json b/inst/extdata/OSD/W/WAURIKA.json index 949bf6fa2a..17270b9e6b 100644 --- a/inst/extdata/OSD/W/WAURIKA.json +++ b/inst/extdata/OSD/W/WAURIKA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "diffuse", "topography": "wavy", "narrative": "Btkss1--78 to 111 cm (31 to 44 in); dark grayish brown (10YR 4/2) silty clay; moderate coarse prismatic structure parting to moderate medium subangular blocky; very few very fine roots throughout; few fine pores; 1 percent distinct silt coatings on vertical faces of peds; 5 percent distinct slickensides; 40 percent distinct clay films on all faces of peds; 1 percent fine faint brown (7.5YR 5/3) masses of oxidized iron with clear boundaries in matrix; 10 percent coarse distinct carbonate masses in matrix; 5 percent medium distinct carbonate nodules in matrix; strong effervescent; moderately alkaline; diffuse wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "diffuse", "topography": "wavy", "narrative": "Btkss2--111 to 143 cm (31 to 56 in); brown (10YR 4/3) silty clay loam; weak coarse prismatic structure parting to weak medium angular blocky; few fine pores; 5 percent slickensides; 5 percent distinct organic stains on surfaces along root channels; 20 percent distinct clay films on all faces of peds; 5 percent fine manganese coatings; 15 percent medium prominent reddish brown (5YR 4/4) masses of oxidized iron with clear boundaries in matrix; 5 percent medium distinct pinkish gray (5YR 6/2) iron depletions with clear boundaries in matrix; 4 percent fine distinct carbonate, finely disseminated in matrix; strong effervescent; moderately alkaline; diffuse wavy boundary. (Combined thickness of the Btkss horizon is 38 to 76 cm [15 to 30 in])" diff --git a/inst/extdata/OSD/W/WAYDEN.json b/inst/extdata/OSD/W/WAYDEN.json index 28233f9d97..4f61fd235f 100644 --- a/inst/extdata/OSD/W/WAYDEN.json +++ b/inst/extdata/OSD/W/WAYDEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 3 inches; light gray (2.5Y 7/2) silty clay, grayish brown (2.5Y 5/2) moist; strong very fine granular structure; hard, friable, sticky and plastic; many fine and very fine roots; slight effervescence; moderately alkaline; clear wavy boundary. (1 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--3 to 7 inches; light gray (5Y 7/2) silty clay, olive gray (5Y 5/2) moist; moderate coarse and medium subangular blocky structure parting to moderate fine subangular blocky; very hard, friable, sticky and plastic; common fine and very fine roots; common fine pores; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "By--7 to 15 inches; light gray (5Y 7/2) silty clay, olive gray (5Y 5/2) moist; weak coarse subangular blocky structure parting to moderate fine subangular blocky; very hard, friable, sticky and plastic; common fine and very fine roots; many gypsum crystals; few soft shale chips; slight effervescence; moderately alkaline; gradual wavy boundary. (Combined B and C horizons 9 to 18 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--15 to 60 inches; olive (5Y 5/3) stratified silty clay shale, pale olive (5Y 6/3) moist; yellowish brown (10YR 5/6) moist stains on plates in places; extremely hard, very fine, slakes in water; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WEGA.json b/inst/extdata/OSD/W/WEGA.json index 98a3d032b9..a3599e8f4d 100644 --- a/inst/extdata/OSD/W/WEGA.json +++ b/inst/extdata/OSD/W/WEGA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--19 to 60 inches; light brown (7.5YR 6/4) and reddish yellow (7.5YR 6/6) stratified silt and silt loam; few fine distinct pinkish gray (7.5YR 6/2) mottles; fine stratification breaking to thin laminar fragments; very friable; violent effervescence; mildly alkaline." diff --git a/inst/extdata/OSD/W/WELLSFORD.json b/inst/extdata/OSD/W/WELLSFORD.json index f05aec461a..58578c5d34 100644 --- a/inst/extdata/OSD/W/WELLSFORD.json +++ b/inst/extdata/OSD/W/WELLSFORD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 5 inches; grayish brown (10YR 5/2) clay, dark grayish brown (10YR 4/2) moist; weak fine granular structure; hard, firm; common fine roots; slight effervescence in the lower part; moderately alkaline; gradual smooth boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--5 to 17 inches; olive (5Y 5/3) clay, olive (5Y 4/3) moist; moderate medium angular blocky structure; very hard, very firm; few fine roots; few fragments of sandstone less than 2 inches across; few calcium carbonate concretions 2 to 5 mm in diameter; strong effervescence; moderately alkaline; gradual smooth boundary. (4 to 16 inches thick)" diff --git a/inst/extdata/OSD/W/WENDOVER.json b/inst/extdata/OSD/W/WENDOVER.json index 0dedf04372..4408933d49 100644 --- a/inst/extdata/OSD/W/WENDOVER.json +++ b/inst/extdata/OSD/W/WENDOVER.json @@ -89,7 +89,7 @@ "cf_class": "very gravelly", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 4 inches; dark grayish brown (10YR 4/2) very gravelly fine sandy loam, very dark grayish brown (10YR 3/2) moist; weak medium and fine granular structure; slightly hard, very friable, slightly sticky, slightly plastic; 40 percent gravel, 10 percent cobbles, and 5 percent stones; slight effervescence; slightly alkaline (pH 7.5); gradual wavy boundary. (2 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "very cobbly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt--4 to 10 inches; dark grayish brown (10YR 4/2) very cobbly loam, very dark grayish brown (10YR 3/2) moist; moderate fine and very fine subangular blocky structure; slightly hard, friable, slightly sticky, slightly plastic; few distinct clay films on faces of peds; 30 percent gravel; 25 percent cobbles, and 10 percent stones; slight effervescence; moderately alkaline (pH 8.0); clear smooth boundary (5 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--10 to 18 inches; very pale brown (10YR 7/3) extremely cobbly sandy loam, brown (10YR 5/3) moist; massive; slightly hard, friable, slightly sticky, slightly plastic; 30 percent gravel, 40 percent cobbles, and 10 percent stones; violent effervescence; calcium carbonate disseminated, as soft segregated masses, and as coatings under rock fragments; moderately alkaline (pH 8.2). (6 to 10 inches thick)" diff --git a/inst/extdata/OSD/W/WENDTE.json b/inst/extdata/OSD/W/WENDTE.json index d98c158522..bc64dea15f 100644 --- a/inst/extdata/OSD/W/WENDTE.json +++ b/inst/extdata/OSD/W/WENDTE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; gray (2.5Y 5/1) clay, dark olive gray (5Y 3/2) moist; weak medium platy structure parting to weak fine granular; hard, firm, sticky and plastic; slight effervescence; slightly alkaline; abrupt smooth boundary. (5 to 9 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--6 to 12 inches; gray (5Y 5/1) silty clay, dark olive gray (5Y 3/2) moist; weak coarse subangular blocky and weak fine granular structure; hard, firm, sticky and plastic; few thin layers (less than 1/8 inch thick) of light brownish gray (2.5Y 6/2); slight effervescence; slightly alkaline; clear smooth boundary. (0 to 15 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C2--12 to 21 inches; grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; few fine distinct mottles of yellowish brown (10YR 5/6) moist in the upper 3 inches; massive; hard, firm, sticky and plastic; common fine fragments of shale; slight effervescence; slightly alkaline; clear smooth boundary. (0 to 50 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--21 to 60 inches; olive (5Y 5/3), olive gray (5Y 5/2) and grayish brown (2.5Y 5/2) stratified clay and silty clay loam, olive (5Y 4/3), olive gray (5Y 4/2) and dark grayish brown (2.5Y 4/2) moist; hard, firm, sticky and plastic; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/W/WENTWORTH.json b/inst/extdata/OSD/W/WENTWORTH.json index 1104e1bd30..cce170d067 100644 --- a/inst/extdata/OSD/W/WENTWORTH.json +++ b/inst/extdata/OSD/W/WENTWORTH.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--26 to 34 inches; light brownish gray (2.5Y 6/2) silty clay loam, dark grayish brown (2.5Y 4/2) moist; many fine and medium distinct olive gray (5Y 5/2) and dark yellowish brown (10YR 4/4) mottles; few fine and medium olive brown (2.5Y 4/4) mottles; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable, slightly sticky; common fine and medium accumulations (iron and manganese oxides); many fine and medium soft accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--34 to 48 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; common fine and medium distinct dark yellowish brown (10YR 4/4) and yellowish brown (10YR 5/6) mottles and few fine and medium distinct dark brown (7.5YR 4/4) mottles; weak coarse and medium subangular blocky structure; hard, friable, slightly sticky; common fine and medium dark accumulations (iron and manganese oxides); common fine and medium accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined Bk horizons is 10 to 30 inches thick.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--48 to 60 inches; light brownish gray (2.5Y 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; common fine and medium distinct dark yellowish brown (10YR 4/4) and yellowish brown (10YR 5/6) mottles, and few fine and medium distinct dark brown (7.5YR 4/4) mottles; weak coarse and medium subangular blocky structure; hard, friable, slightly sticky; common fine and medium dark accumulations (iron and manganese oxides); few fine and medium soft accumulations of carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WERNER.json b/inst/extdata/OSD/W/WERNER.json index eaa55327b6..7f7e3a3a27 100644 --- a/inst/extdata/OSD/W/WERNER.json +++ b/inst/extdata/OSD/W/WERNER.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "ABk--6 to 13 inches; grayish brown (2.5Y 5/2) loam, very dark grayish brown (2.5Y 3/2) moist; weak medium prismatic structure parting to weak medium and fine subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; many roots; common fine pores; few small pebbles; few fine soft masses of carbonates; slight effervescence; mildly alkaline; clear wavy boundary. (3 to 7 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--13 to 17 inches; light yellowish brown (2.5Y 6/4) loam, light olive brown (2.5Y 5/4) moist; weak medium prismatic structure parting to weak fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common roots; few fine pores; few pebbles; common fine soft masses of carbonates; strong effervescence; moderately alkaline; clear wavy boundary. (0 to 5 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr1--17 to 30 inches; pale yellow (2.5Y 7/4) soft argillaceous sandstone; massive but fractures to plates; few roots in cracks; carbonate accumulations in cracks; slight effervescence; gradual boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr2--30 to 60 inches; light gray (5Y 7/2) soft shale and sandstone strata; light yellowish brown and yellow (10Y 6/4 and 2.5Y 7/6) on faces of plates and blocks; slight effervescence." diff --git a/inst/extdata/OSD/W/WESO.json b/inst/extdata/OSD/W/WESO.json index ab9f867c4a..eb93c20775 100644 --- a/inst/extdata/OSD/W/WESO.json +++ b/inst/extdata/OSD/W/WESO.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bqk2--41 to 66 cm; very pale brown (10YR 7/3) very fine sandy loam, brown (10YR 5/3) moist; weak thick platy structure; hard, friable, slightly sticky and slightly plastic; common very fine and fine roots; few very fine tubular and many very fine interstitial pores; common fine faint very pale brown (10YR 8/2) lcarbonate streaks between plates; slightly effervescent in matrix, strongly effervescent; many silica cemented lenses that are very hard and firm, brittle when wet; strongly alkaline (pH 9.0); clear wavy boundary. (20 to 43 cm thick)" diff --git a/inst/extdata/OSD/W/WESTGATE.json b/inst/extdata/OSD/W/WESTGATE.json index 3a065a8217..8a44ad0fef 100644 --- a/inst/extdata/OSD/W/WESTGATE.json +++ b/inst/extdata/OSD/W/WESTGATE.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2BC--57.5 to 66.5 inches; yellowish red (5YR 4/6) silty clay loam; common medium prominent olive yellow (2.5Y 6/8) and common coarse prominent dusky red (10R 3/3) mottles; moderate coarse prismatic structure parting to moderate fine angular blocky; firm; many distinct reddish brown (5YR 5/4) clay films on vertical faces of peds; few dark coatings (iron and manganese oxides) on faces of peds; common very pale brown (10YR 7/3) soft accumulations (calcium carbonate) in the matrix; large widely spaced slickensides; many soft shale fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 15 inches thick.)" @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C--66.5 to 75.5 inches; variegated yellowish red (5YR 4/6), olive yellow (2.5Y 6/8), dusky red (10R 3/3), and light olive gray (5Y 6/2) silty clay loam; massive; firm; many very pale brown soft accumulations (calcium carbonate) in the matrix; many soft shale fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 15 inches thick.)" diff --git a/inst/extdata/OSD/W/WESTMORE.json b/inst/extdata/OSD/W/WESTMORE.json index 48576b6464..28717823d2 100644 --- a/inst/extdata/OSD/W/WESTMORE.json +++ b/inst/extdata/OSD/W/WESTMORE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C2--54 to 68 inches; three layers 3 to 7 inches thick; upper layer is variegated dusky red (10R 3/2), dark yellowish brown (10YR 4/4), yellowish brown (10YR 5/6), and dark gray (N 4/0) clay; middle layer is mixed light olive brown (2.5Y 5/4) and dark yellowish brown (10YR 4/4) clay; lower layer is dusky red (10R 3/2) clay; massive; very firm; 10 percent coarse fragments; slightly acid at top, slight effervescence and mildly alkaline at the base." diff --git a/inst/extdata/OSD/W/WESTOVER.json b/inst/extdata/OSD/W/WESTOVER.json index 0cc234706d..063c0c4d16 100644 --- a/inst/extdata/OSD/W/WESTOVER.json +++ b/inst/extdata/OSD/W/WESTOVER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 4 inches; brown (10YR 5/3) loam, very dark grayish brown (10YR 3/2) moist; weak medium subangular blocky structure parting to moderate medium granular; slightly hard, very friable; slight effervescence; slightly alkaline; clear smooth boundary. (3 to 5 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "AC--4 to 12 inches; pale brown (10YR 6/3) loam, dark grayish brown (10YR 4/2) moist; weak coarse subangular blocky structure; slightly hard, very friable; strong effervescence; slightly alkaline; clear wavy boundary. (5 to 12 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--12 to 24 inches; pale brown (10YR 6/3) loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, very friable; strong effervescence; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--24 to 32 inches; pale brown (10YR 6/3) fine sandy loam, brown (10YR 5/3) moist; massive; soft, very friable; strong effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--32 to 60 inches; brown (10YR 5/3), yellowish brown (10YR 5/4), pale brown (10YR 6/3) and light yellowish brown (10YR 6/4) sand and gravel; dark brown (10YR 4/3), dark yellowish brown (10YR 4/4), brown (10YR 5/3) and yellowish brown (10YR 5/4) moist; single grained; loose; few fine shale chips; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WESWIND.json b/inst/extdata/OSD/W/WESWIND.json index 91b328c581..23dfd20a2f 100644 --- a/inst/extdata/OSD/W/WESWIND.json +++ b/inst/extdata/OSD/W/WESWIND.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--48 to 65 inches; prominently mottled weak red (10R 4/2) and yellowish brown (10YR 5/6) clay; moderate medium prismatic parting to moderate fine subangular blocky: about 20 percent light gray (5Y 7/2) claystone fragments; massive; extremely hard, extremely firm; few fine roots; about 20 percent by volume soft masses, films and threads of calcium carbonate; few iron-manganese concretions and soft masses 1/8 to 1/4 inch across; violent effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cd--65 to 80 inches; prominently mottled weak red (10R 4/2) and yellowish brown (10YR 5/6) clyastone bedrock; common light gray (5Y 7/2) claystone; massive with angular rock-like structure; extremely hard, extremely firm; few fine roots; few soft masses of calcium carbonate on surface of fragments; few iron-manganese concretions up to 1/4 inch across; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WETA.json b/inst/extdata/OSD/W/WETA.json index 949e0e108f..61bfb736d4 100644 --- a/inst/extdata/OSD/W/WETA.json +++ b/inst/extdata/OSD/W/WETA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btn2--5 to 11 inches; dark gray (10YR 5/1) silty clay, very dark gray (10YR 3/1) moist; weak medium prismatic structure parting to moderate fine and medium subangular blocky; very hard, very firm, sticky and plastic; many fine flat roots; strong effervescence; slightly alkaline; clear wavy boundary. (Combined thickness of Btn horizon is 7 to 16 inches.)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz1--11 to 20 inches; light gray (10YR 6/1) and light brownish gray (10YR 6/2) silty clay loam, dark brown (10YR 3/3) moist; dark grayish brown (10YR 4/2) crushed; weak fine and medium subangular blocky structure; hard, friable, sticky and plastic; few fine flat roots; common fine accumulations of salts; common fine accumulations of carbonate; strong effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bkz2--20 to 30 inches; light gray (10YR 7/2) silty clay loam; light brownish gray (10YR 5/3) moist; weak fine and medium subangular blocky stucture; hard, friable; common fine accumulations of salts; common fine accumulations of carbonate; strong effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of the Bk horizons is 8 to 25 inches.)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--30 to 55 inches; light gray (10YR 7/2) silty clay loam, light brownish gray (10YR 5/3) moist; massive; weak bedding planes evident; hard, friable, strong effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--55 to 60 inches; light gray (10YR 7/2) silt loam, brown (10YR 5/3) moist; massive; weak bedding planes evident; slightly hard, friable; fine stratification evident; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WETROCK.json b/inst/extdata/OSD/W/WETROCK.json index c8c72c3ede..c322f8001f 100644 --- a/inst/extdata/OSD/W/WETROCK.json +++ b/inst/extdata/OSD/W/WETROCK.json @@ -89,7 +89,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--0 to 10 inches; brown (7.5YR 5/3) extremely gravelly coarse sand, dark brown (7.5YR 3/3) moist; single grain; loose, nonsticky and nonplastic; many very fine and fine roots; many fine interstitial pores; 11 percent fine, 40 percent medium, and 24 percent coarse gravel, and 10 percent cobble; strong effervescence; moderately alkaline (pH 8.0); abrupt smooth boundary. (8 to 15 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--10 to 20 inches; brown (7.5YR 5/2) gravelly coarse sand, dark brown (7.5YR 3/4) moist; single grain; loose, nonsticky and nonplastic; many very fine and fine and common medium roots; many fine interstitial pores; 10 percent fine, 7 percent medium, and 3 percent coarse gravel, and 5 percent cobble; few thin strata of silt loam; common distinct brown (7.5YR 5/2) and dark greenish gray (5BG 3/1) redox depletions, many distinct strong brown (7.5YR 5/8) redox concentrations as fine soft iron masses and linings along root channels; strong effervescence; slightly alkaline (pH 7.6); abrupt smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C3--20 to 37 inches; brown (7.5YR 5/2) extremely gravelly coarse sand, brown (7.5YR 4/4) moist; single grain; loose, nonsticky and nonplastic; common very fine and fine roots; many fine interstitial pores; 15 percent fine, 40 percent medium, and 10 percent coarse gravel, and 15 percent cobble; few prominent strong brown (7.5YR 5/8) redox concentrations as linings along root channels; strong effervescence; slightly alkaline (pH 7.8); clear smooth boundary." diff --git a/inst/extdata/OSD/W/WEWELA.json b/inst/extdata/OSD/W/WEWELA.json index 06a971becf..65d831b79e 100644 --- a/inst/extdata/OSD/W/WEWELA.json +++ b/inst/extdata/OSD/W/WEWELA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--26 to 60 inches; light brownish gray (2.5Y 6/2) and olive yellow (2.5Y 6/6) shale, grayish brown (2.5Y 5/2) and yellowish brown (10YR 5/8) moist; platy; brittle; few fine accumulations of carbonate; strong effervescence on surface of shale fragments, interior does not effervesce; slightly alkaline." diff --git a/inst/extdata/OSD/W/WHETSOON.json b/inst/extdata/OSD/W/WHETSOON.json index 2fb9c75dfc..f7429db631 100644 --- a/inst/extdata/OSD/W/WHETSOON.json +++ b/inst/extdata/OSD/W/WHETSOON.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--0 to 18 centimeters (0 to 7) inches; brown (10YR 5/3) fine sandy loam, dark brown (10YR 3/3) moist; weak fine and medium subangular blocky structure parting to weak fine granular and very fine subangular blocky; hard, friable, slightly sticky and slightly plastic; many very fine, common fine and few medium roots; few very fine and fine discontinuous random irregularly shaped pores; slight effervescence, calcium carbonate disseminated; moderately alkaline (pH 8.3); abrupt wavy boundary. (13 to 38 centimeters (5 to 15 inches) thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--53 to 84 centimeters (21 to 33 inches); pale brown (10YR 6/3) loam, brown (10YR 5/3) moist; few fine prominent reddish yellow (7.5YR 6/6) redox concentrations; weak medium subangular blocky structure parting to weak fine subangular blocky; hard, friable, sticky and plastic; common very fine roots; common fine and few very fine continuous tubular pores; strong effervescence, calcium carbonate disseminated and as common distinct irregular soft concretions; strongly alkaline (pH 8.5); clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--84 to 152 centimeters (33 to 60 inches); very pale brown (10YR 7/3) loam, pale brown (10YR 6/3) moist; common fine prominent reddish yellow (7.5YR 6/6) redox concentrations and few fine distinct light gray (10YR 7/2) redox depletions; massive; hard, very friable, slightly sticky and slightly plastic; strong effervescence, calcium carbonate disseminated and as few distinct irregular soft concretions; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/W/WHIRLO.json b/inst/extdata/OSD/W/WHIRLO.json index d3887f887a..48ef16140e 100644 --- a/inst/extdata/OSD/W/WHIRLO.json +++ b/inst/extdata/OSD/W/WHIRLO.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bk3--94 to 152 cm; pale brown (10YR 6/3) extremely gravelly sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; common very fine and fine interstitial pores; 70 percent carbonate coated gravel; slightly effervescent matrix but strongly effervescent on gravel; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/W/WHITECLIFF.json b/inst/extdata/OSD/W/WHITECLIFF.json index d592213308..623844f3ce 100644 --- a/inst/extdata/OSD/W/WHITECLIFF.json +++ b/inst/extdata/OSD/W/WHITECLIFF.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 3 inches; brown (7.5YR 5/3) loam, brown (7.5YR 4/3) moist; weak thin platy structure parting to moderate fine and medium subangular blocky; soft, very friable, nonsticky and nonplastic; few very fine roots; few fine vesicular and tubular pores; violent effervescence, 7 percent calcium carbonate equivalent, 10 percent gypsum; slightly alkaline (pH 7.8); abrupt smooth boundary. (2 to 6 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bky1--3 to 35 inches; light brown (7.5YR 6/3) silt loam, brown (7.5YR 4/3) moist; moderate fine and medium subangular blocky structure; slightly hard, friable, very sticky and very plastic; common very fine and fine roots; common very fine tubular pores; many very fine and fine soft gypsum and calcium carbonate masses; few distinct patchy organic stains on the faces of peds; violent effervescence, 9 percent calcium carbonate equivalent, 31 percent gypsum; slightly alkaline (pH 7.8); clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bky2--35 to 60 inches; light brown (7.5YR 6/3) silt loam, brown (7.5YR 4/3) moist; moderate medium and coarse subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; few very fine and fine roots; common very fine tubular pores; many very fine and fine soft gypsum and calcium carbonate masses; violent effervescence, 8 percent calcium carbonate equivalent, 30 percent gypsum; slightly alkaline (pH 7.8). (Combined thickness of the Bky horizons is 54 to 58 inches thick)" diff --git a/inst/extdata/OSD/W/WHITELAKE.json b/inst/extdata/OSD/W/WHITELAKE.json index d4f0d29205..7522359527 100644 --- a/inst/extdata/OSD/W/WHITELAKE.json +++ b/inst/extdata/OSD/W/WHITELAKE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btnk--14 to 19 inches; pale brown (10YR 6/3) sandy clay loam; dark brown (10YR 4/3) moist; grayish brown (10YR 5/2) coatings on tops of columns, very dark grayish brown (10YR 3/2) moist; dark gray (10YR 4/1) organic coats on sides of columns and in root channels, very dark brown (10YR 2/2) moist; strong very coarse columnar structure; extremely hard, firm, sticky and plastic; few fine roots; few fine and medium accumulations of carbonate; strong effervescence; very strongly alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Btn--19 to 24 inches; pale brown (10YR 6/3) fine sandy loam, brown (10YR 5/3) moist; weak coarse prismatic structure parting to weak medium subangular blocky; very hard, friable, slightly sticky; few fine roots; few fine accumulations of carbonate; faint gray (10YR 6/1) and (10YR 5/1) redox depletions; strong effervescence; very strongly alkaline; gradual smooth boundary. (Combined Btn horizons 6 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BC--24 to 33 inches; very pale brown (10YR 7/3) fine sandy loam with thin lens of clay and silt, pale brown (10YR 6/3) moist; weak very coarse subangular blocky structure; very hard, very friable; few fine roots; few fine accumulations of carbonate; common medium faint gray (10YR 6/1) and (10YR 5/1) redox depletions; strong effervescence; very strongly alkaline; abrupt wavy boundary. (0 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "C1--33 to 41 inches; very pale brown (10YR 7/3) loamy sand stratified with thin lens of silt and clay, pale brown (10YR 6/3) moist; common medium faint gray (10YR 6/1) and (10YR 5/1) redox depletions; massive; very hard, very friable; few fine and medium accumulations of carbonate; strong effervescence; very strongly alkaline; abrupt wavy boundary. (0 to 15 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--41 to 60 inches; light gray (2.5Y 7/2) loamy sand stratified with thin lens of silt and clay, grayish brown (2.5Y 5/2) moist; massive; very hard, very friable; few fine accumulations of carbonate; strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/W/WHITEWATER.json b/inst/extdata/OSD/W/WHITEWATER.json index 3ae842e524..bdd87815dd 100644 --- a/inst/extdata/OSD/W/WHITEWATER.json +++ b/inst/extdata/OSD/W/WHITEWATER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "BCkss--41 to 66 cm; gray (10YR 6/1) clay; gray (10YR 5/1) moist; massive; extremely hard, very firm, very sticky and very plastic; trans-horizon cracks 0.5 to 2 cm wide; few intersecting slickensides; few fine soft masses of carbonate; violent effervescence; moderately alkaline; clear wavy boundary. (0 to 30 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "wavy", "narrative": "Ck--66 to 84 cm; light gray (10YR 7/2) silty clay; light brownish gray (10YR 6/2) moist; massive; extremely hard, very firm, very sticky and very plastic; trans-horizon cracks 0.5 to 2 cm wide; few intersecting slickensides; few fine soft masses of carbonate; strong effervescence; slightly alkaline; diffuse wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--84 to 200 cm; pinkish gray (7.5YR 7/2) soft claystone; pinkish gray (5YR 6/2) moist; soft when moist but hard and brittle when dry; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/W/WHITE_SWAN.json b/inst/extdata/OSD/W/WHITE_SWAN.json index 4c860ac59a..c5fa453356 100644 --- a/inst/extdata/OSD/W/WHITE_SWAN.json +++ b/inst/extdata/OSD/W/WHITE_SWAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.1, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkn--11 to 20 inches; pale brown (10YR 6/3) silty clay loam, brown (120YR 5/3) moist; massive; very hard, firm, sticky, plastic; few fine roots; few fine pores; violent effervescence with dilute hydrochloric acid; few flecks of disseminated lime; very strongly alkaline (pH 9.1); gradual wavy boundary. (3 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk--20 to 60 inches; light brownish gray (2.5Y 6/2) silt loam, grayish brown (2.5Y 5/2) moist; massive (weakly stratified, some layers are laminated); slightly hard, (some layers are very firm in place but become friable once disturbed); slightly sticky, slightly plastic; few fine roots; common fine tubular pores; violent effervescence with dilute hydrochloric acid; some disseminated and segregated mycelial lime; strongly alkaline (pH 8.8)." diff --git a/inst/extdata/OSD/W/WILDHORSE.json b/inst/extdata/OSD/W/WILDHORSE.json index e10ff9d793..c89b0a23de 100644 --- a/inst/extdata/OSD/W/WILDHORSE.json +++ b/inst/extdata/OSD/W/WILDHORSE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 10 centimeters (0 to 4 inches); very dark grayish brown (10YR 3/2) sand, grayish brown (10YR 5/2) dry; weak very fine granular structure; very friable, slightly hard; common fine roots; exchangeable sodium percentage = 20; sodium adsorption ratio = 12; slight effervescence; very strongly alkaline; abrupt smooth boundary. (8 to 25 centimeters (3 to 10 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC1--10 to 18 centimeters (4 to 7 inches); dark grayish brown (10YR 4/2) sand, light brownish gray (10YR 6/2) dry; weak fine granular structure; very friable, slightly hard; few fine roots; exchangeable sodium percentage = 49; sodium adsorption ratio = 27; electrical conductivity = 3; slight effervescence; very strongly alkaline; clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "AC2--18 to 25 centimeters (7 to 10 inches); dark grayish brown (10YR 4/2) sand, light brownish gray (10YR 6/2) dry; weak fine granular structure; very friable, soft; few fine roots; exchangeable sodium percentage = 56; sodium adsorption ratio = 28; electrical conductivity = 3; strong effervescence; very strongly alkaline; clear smooth boundary. (0 to 28 centimeters [Combined thickness of the AC horizon is 0 to 28 centimeters (0 to 11 inches thick) 0 to 11 inches) thick]" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C--25 to 43 centimeters (10 to 17 inches); grayish brown (10YR 5/2) sand, light brownish gray (10YR 6/2) dry; single grain, loose; few fine roots; exchangeable sodium percentage = 48; sodium adsorption ratio = 22; electrical conductivity = 2; strong effervescence; very strongly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Cg1--43 to 64 centimeters (17 to 25 inches); grayish brown (10YR 5/2) sand, light brownish gray (10YR 6/2) dry; few fine faint yellowish brown (10YR 5/4) moist iron masses in the matrix; single grain; loose; few fine roots; exchangeable sodium percentage= 8; sodium adsorption ratio= 6; strong effervescence; very strongly alkaline; clear smooth boundary" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Cg2--64 to 89 centimeters (25 to 35 inches); grayish brown (2.5Y 5/2) sand, light gray (10YR 7/2) dry; few fine faint yellowish brown (10YR 5/4) moist iron masses in the matrix; single grain; loose; few fine roots; violent effervescence; strongly alkaline; gradual smooth boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--89 to 200 centimeters (35 to 79 inches); grayish brown (2.5Y 5/2) fine sand, light gray (10YR 7/2) dry; few fine distinct yellowish brown (10YR 5/4) moist iron masses in the matrix; single grain; loose; slight effervescence; strongly alkaline. & 3/2009 RRH: Introduction: Revised sentences pertaining to landforms, landscapes, and parent materials. Typical Pedon: Changed to moist colors. Revised horizon nomenclatures. Range of Characteristics: Revised. Geographically Associated Soils: Deleted Elsmere, Lisco, and Selia soils as not near type location and added Marlake soils which are. Revised all definitions. Use and Vegetation: Revised. Diagnostic horizons: revised." diff --git a/inst/extdata/OSD/W/WILDORS.json b/inst/extdata/OSD/W/WILDORS.json index 95f3f8b4dd..bd5bffa04d 100644 --- a/inst/extdata/OSD/W/WILDORS.json +++ b/inst/extdata/OSD/W/WILDORS.json @@ -158,7 +158,7 @@ "cf_class": "very stony", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "BK--15 to 18 inches; pale brown (10YR 6/3) very stony loam, dark brown (10YR 4/3) moist; weak, medium subangular blocky structure; soft, very friable, slightly sticky and slightly plastic; few very fine and fine roots; few very fine tubular pores; 30 percent stones, 20 percent cobbles, and 10 percent gravel; strong effervescence (20 percent calcium carbonate equivalent); moderately alkaline (pH 8.0); abrupt wavy boundary. (1 to 5 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very stony", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bkq--18 to 22 inches; very pale brown (10YR 7/3) very stony sandy loam, yellowish brown (10YR 5/4) moist; massive; very hard, very firm, nonsticky and nonplastic; few very fine and fine roots; few very fine tubular pores; about 30 percent weakly cemented fractured and displaced duripan fragments, 2-7 cm in length, between rock fragments; 30 percent stones, 20 percent cobbles, and 10 percent gravel; violent effervescence (30 percent calcium carbonate equivalent); moderately alkaline (pH 8.4), abrupt wavy boundary. (4 to 13 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bkqm--22 to 24 inches; light gray (10YR 7/2) indurated duripan, light brownish gray (10YR 6/2) moist; massive; few very fine and fine roots matted along horizontal upper surface of duripan; about 15 percent stones, 10 percent cobbles, and 5 percent gravel; strongly cemented plates with laminar capping (1-6 mm thick), continuous silica and calcium carbonate cementation between rock fragments; violent effervescence (30 percent calcium carbonate equivalent); moderately alkaline (pH 8.4); abrupt wavy boundary. (1 to 4 inches thick)" diff --git a/inst/extdata/OSD/W/WILDROSE.json b/inst/extdata/OSD/W/WILDROSE.json index 3152658561..718efc5010 100644 --- a/inst/extdata/OSD/W/WILDROSE.json +++ b/inst/extdata/OSD/W/WILDROSE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; moderate medium subangular blocky structure; very hard, very firm, very sticky and very plastic; many very fine and few fine roots; 2 to 15 mm wide vertical cracks about 25 cm apart; slight effervescence; neutral; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--6 to 14 inches; grayish brown (2.5Y 5/2) clay, very dark grayish brown (2.5Y 3/2) moist; moderate medium subangular blocky structure parting to moderate fine platy; extremely hard, extremely firm, very sticky and very plastic; common very fine roots; 2 to 15 mm wide vertical cracks about 25 cm apart; slight effervescence; slightly alkaline; clear smooth boundary. (Combined A horizons 6 to 21 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bss1--14 to 21 inches; grayish brown (2.5Y 5/2) clay, very dark grayish brown (2.5Y 3/2) moist; strong medium prismatic structure parting to moderate medium angular blocky; extremely hard, extremely firm, very sticky and very plastic; common very fine and few fine roots in pores and along faces of peds and slickensides; few non-intersecting slickensides; 2 to 15 mm wide vertical cracks about 25 cm apart; slight effervescence; slightly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bss2--21 to 31 inches; grayish brown (2.5Y 5/2) clay; very dark grayish brown (2.5Y 3/2) moist; strong medium prismatic structure parting to moderate medium angular blocky; extremely hard, extremely firm, very sticky and very plastic; common very fine roots along faces of peds and slickensides; few very fine roots in pores; common intersecting slickensides ; common wedge shape natural aggregates tilted 30 degrees to 60 degrees from horizontal; 2 to 15 mm wide vertical cracks about 25 cm apart; slight effervescence; moderately alkaline; clear smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bss3--31 to 38 inches; olive gray (5Y 4/2) clay, dark olive gray (5Y 3/2) moist; strong medium prismatic structure parting to moderate medium subangular blocky; extremely hard, extremely firm, very sticky and very plastic; common very fine roots along faces of peds and slickensides; few very fine roots in pores; few non-intersecting slickensides; slight effervescence; slightly alkaline; clear wavy boundary. (Combined Bss horizons 13 to 24 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "By--38 to 44 inches; olive gray (5Y 5/2) clay, dark olive gray (5Y 3/2) moist; moderate medium prismatic structure parting to moderate medium and fine subangular blocky; extremely hard, extremely firm, very sticky and very plastic; few very fine roots; many fine threads and masses of gypsum; slight effervescence; slightly alkaline; clear wavy boundary. (0 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--44 to 58 inches; olive gray (5Y 5/2) clay, olive gray (5Y 4/2) moist; strong coarse prismatic structure parting to moderate medium subangular blocky; extremely hard, extremely firm, very sticky and very plastic; few very fine roots; few fine threads and masses of gypsum; slight effervescence; slightly alkaline; gradual wavy boundary. (0 to 15 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--58 to 60 inches; pale olive (5Y 6/3) silty clay, olive (5Y 4/3) moist; common fine prominent strong brown (7.5YR 5/8) moist mottles and few fine distinct very dark brown (10YR 2/2) moist manganese stains; massive; extremely hard, extremely firm, very sticky and very plastic; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/W/WILID.json b/inst/extdata/OSD/W/WILID.json index 4d576a913b..60f024b754 100644 --- a/inst/extdata/OSD/W/WILID.json +++ b/inst/extdata/OSD/W/WILID.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 15 cm (0 to 6 inches); pale brown (10YR 6/3) silt loam, brown (10YR 4/3) moist; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; many very fine and fine roots; slight effervescence; slightly alkaline (pH 7.8); clear smooth boundary. (5 to 15 cm thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bt--15 to 25 cm (6 to 10 inches); pale brown (10YR 6/3) silty clay loam, brown (10YR 4/3) moist; moderate medium subangular blocky structure; moderately hard, firm, moderately sticky and moderately plastic; common very fine and fine roots; few very fine pores; 30 percent distinct clay films on all faces of peds; violent effervescence; 7 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); clear smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--25 to 76 cm (10 to 30 inches); pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; moderate medium subangular blocky structure; very hard, firm, moderately sticky and moderately plastic; few very fine roots; few very fine pores; 30 percent distinct clay films on all faces of peds; 1 percent medium distinct carbonate masses throughout; violent effervescence; 8 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); clear smooth boundary. (Combined thickness of Bt and Btk horizons is 28 to 84 cm)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--76 to 112 cm (30 to 44 inches); pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; weak medium subangular blocky structure; very hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine pores; 5 percent medium carbonate masses throughout; violent effervescence; 17 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); clear wavy boundary. (25 to 50 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--112 to 200 cm (44 to 79 inches); very pale brown (10YR 7/4) silt loam, yellowish brown (10YR 5/4) moist; weak course subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine pores; 25 percent fine faint carbonate masses throughout; violent effervescence; 25 percent calcium carbonate equivalent; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/W/WILLARD.json b/inst/extdata/OSD/W/WILLARD.json index 2bcdbe4512..ea45c200d8 100644 --- a/inst/extdata/OSD/W/WILLARD.json +++ b/inst/extdata/OSD/W/WILLARD.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 7 inches; pale brown (10YR6/3) loam, dark brown (10YR 4/3) moist; weak fine granular structure; soft, very friable, slightly sticky and slightly plastic; many very fine roots; many very fine interstitial and tubular pores; moderately effervescent, calcium carbonate is disseminated; slightly alkaline; clear smooth boundary (4 to 9 inches thick)." diff --git a/inst/extdata/OSD/W/WILLIAMS.json b/inst/extdata/OSD/W/WILLIAMS.json index 9a11909bf9..c3d1d47329 100644 --- a/inst/extdata/OSD/W/WILLIAMS.json +++ b/inst/extdata/OSD/W/WILLIAMS.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--15 to 24 inches; light olive brown (2.5Y 5/4) clay loam, olive brown (2.5Y 4/4) moist; moderate coarse prismatic structure parting to moderate medium subangular blocky; hard, friable, sticky and plastic; common very fine roots; few faint clay films on faces of peds; few pebbles; common medium irregular masses of carbonates; violent effervescence; slightly alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--24 to 36 inches; light brownish gray (2.5Y 6/2) and light gray (2.5Y 7/2) clay loam, grayish brown (2.5Y 5/2) moist; weak medium prismatic structure parting to weak medium subangular blocky; soft, friable, sticky and plastic; few very fine roots; few cobbles; carbonates disseminated throughout and in common masses; violent effervescence; moderately alkaline; gradual wavy boundary. (3 to 30 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--36 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, grayish brown (2.5Y 5/2) moist; few fine prominent yellowish brown (10YR 5/6) redox concentrations and light gray (10YR 7/2) redox depletions; massive; soft, friable, sticky and plastic; few pebbles and cobbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WILLIAMSBURG.json b/inst/extdata/OSD/W/WILLIAMSBURG.json index ad7bd5c7a7..6bd5a48a5e 100644 --- a/inst/extdata/OSD/W/WILLIAMSBURG.json +++ b/inst/extdata/OSD/W/WILLIAMSBURG.json @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--178 to 203 cm (70 to 80 inches); stratified yellowish brown (10YR 5/4), dark yellowish brown (10YR 4/4), and pale brown (10YR 6/3) gravelly loam and gravelly sandy loam with lenses of silt loam and silty clay loam; massive; very friable; 25 percent gravel; moderately acid in the upper part and weakly effervescent, slightly alkaline in the lower part." diff --git a/inst/extdata/OSD/W/WILLOWDALE.json b/inst/extdata/OSD/W/WILLOWDALE.json index 4e3f45b3a3..81276e4879 100644 --- a/inst/extdata/OSD/W/WILLOWDALE.json +++ b/inst/extdata/OSD/W/WILLOWDALE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Ap1--0 to 5 inches; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine roots; many very fine irregular pores; weakly effervescent in spots; moderately alkaline (pH 8.2); clear smooth boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/W/WILTON.json b/inst/extdata/OSD/W/WILTON.json index 9071819656..58a9d0f924 100644 --- a/inst/extdata/OSD/W/WILTON.json +++ b/inst/extdata/OSD/W/WILTON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw3--18 to 27 inches; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; moderate medium prismatic structure parting to weak medium subangular blocky; slightly hard, very friable, slightly sticky and slightly plastic; common fine roots; common fine pores; slight effervescence in spots; slightly alkaline; clear wavy boundary. (Combined Bw horizons 10 to 30 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk1--27 to 36 inches; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; weak coarse prismatic structure parting to weak coarse and medium subangular blocky; hard, friable, sticky and plastic; few fine roots; common fine pores; about 5 percent coarse fragments; strong effervescence, carbonates in many medium and few large masses; slightly alkaline; gradual wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk2--36 to 60 inches; light brownish gray (2.5Y 6/2) clay loam, olive brown (2.5Y 4/3) moist; few fine prominent strong brown (7.5YR 5/6) redox concentrations; massive; hard, friable, sticky and plastic; few roots; about 5 percent coarse fragments; strong effervescence, carbonates in common masses; moderately alkaline." diff --git a/inst/extdata/OSD/W/WITTEN.json b/inst/extdata/OSD/W/WITTEN.json index d4c0c3e54e..de64d1c030 100644 --- a/inst/extdata/OSD/W/WITTEN.json +++ b/inst/extdata/OSD/W/WITTEN.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 centimeters (0 to 5 inches); grayish brown (10YR 5/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate medium granular structure; hard, friable, sticky and plastic; slight effervescence; neutral; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "A--13 to 23 centimeters (5 to 9 inches); dark grayish brown (10YR 4/2) silty clay, very dark grayish brown (10YR 3/2) moist; moderate fine blocky structure and moderate medium subangular blocky; very hard, friable, sticky and plastic; slight effervescence; neutral; abrupt wavy boundary. [Combined A horizon depth is 20 to 38 centimeters (8 to 15 inches) thick.]" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt1--23 to 36 centimeters (9 to 14 inches); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; weak coarse subangular blocky structure parting to strong medium blocky structure; very hard, very firm, sticky and plastic; slight effervescence; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "Bt--36 to 66 centimeters (14 to 26 inches); dark grayish brown (10YR 4/2) clay, very dark grayish brown (10YR 3/2) moist; strong fine and medium blocky structure; very hard, very firm, sticky and plastic; strong effervescence; slightly alkaline; clear irregular boundary. [Combined Bt horizon depth is 30 to 51 centimeters (12 to 20 inches) thick.]" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCss--66 104 centimeters (26 to 41 inches); grayish brown (2.5Y 5/2) clay, dark grayish brown (10YR 4/2) moist; moderate medium blocky structure; extremely hard, extremely firm, very sticky and very plastic; few tongues, about .5 to 3 centimeters (1/4 to 1 inch) wide, of dark grayish brown (10YR 4/2); many pressure faces and common slickensides; strong effervescence; moderately alkaline; gradual wavy boundary. [0 to 46 centimeters (0 to 18 inches thick).]" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cy--104 to 152 centimeters (41 to 60 inches); grayish brown (2.5Y 5/2) clay, dark grayish brown (2.5Y 4/2) moist; massive; very hard, firm, sticky and plastic; common fine nests of gypsum crystals; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WOLCOTT.json b/inst/extdata/OSD/W/WOLCOTT.json index 1707674c9e..ed7a0ff33b 100644 --- a/inst/extdata/OSD/W/WOLCOTT.json +++ b/inst/extdata/OSD/W/WOLCOTT.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1g--47 to 65 inches; light gray (N 6/0) loam, many coarse distinct olive brown (2.5Y 4/4) and grayish brown (2.5Y 5/2) mottles; massive; firm; about 12 percent fine gravel; slight effervescence; mildly alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--65 to 71 inches; olive brown (2.5Y 4/4) loam, many medium distinct light gray (N 6/0) mottles; moderate medium subangular blocky structure; firm; about 12 percent gravel; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WOLF_POINT.json b/inst/extdata/OSD/W/WOLF_POINT.json index b44b5a03a1..5424414a05 100644 --- a/inst/extdata/OSD/W/WOLF_POINT.json +++ b/inst/extdata/OSD/W/WOLF_POINT.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--29 to 60 inches; olive gray (5Y 5/2) silty clay, olive (5Y 5/3) moist; massive; very hard, very sticky and very plastic; common segregations of gypsum and lime; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WOLVERINE.json b/inst/extdata/OSD/W/WOLVERINE.json index 7f6620984c..6000de753b 100644 --- a/inst/extdata/OSD/W/WOLVERINE.json +++ b/inst/extdata/OSD/W/WOLVERINE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "A--0 to 6 inches; light brownish gray (2.5Y 6/2) sand, very dark grayish brown (10YR 3/2) moist; about 15 percent very dark gray basalt sand; single grain; loose; many very fine and fine roots; many very fine interstitial pores; slight effervescence; mildly alkaline (pH 7.8); gradual smooth boundary. (1 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--6 to 17 inches; light brownish gray (10YR 6/2) sand containing about 20 percent basalt sand, dark grayish brown (10YR 4/2) moist; single grain; loose; common very fine and fine roots; many very fine interstitial pores; slight effervescence; mildly alkaline (pH 7.8); gradual smooth boundary. (8 to 31 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--17 to 60 inches; light brownish gray (10YR 6/2) sand containing about 20 percent basalt sand, dark grayish brown (10YR 4/2) moist; single grain; loose; few fine, medium and coarse roots; many very fine interstitial pores; slight effervescence; mildly alkaline (pH 7.8). (14 to 120 inches thick)" diff --git a/inst/extdata/OSD/W/WOODSLAKE.json b/inst/extdata/OSD/W/WOODSLAKE.json index b38029f2a9..63d44d29f1 100644 --- a/inst/extdata/OSD/W/WOODSLAKE.json +++ b/inst/extdata/OSD/W/WOODSLAKE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Cg1--19 to 45 inches; grayish brown (2.5Y 5/2) clay; many fine prominent yellowish brown (10YR 5/6) and common fine distinct light gray (10YR 7/2) mottles; massive; firm; slight effervescence; slightly alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg2--45 to 60 inches; gray (5Y 5/1) clay; common fine prominent yellowish brown (10YR 5/6), few fine prominent pink (7.5YR 7/4), common medium prominent light brownish gray (10YR 6/2), and few fine prominent light gray (10YR 7/1) mottles; massive; firm; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/W/WOOD_RIVER.json b/inst/extdata/OSD/W/WOOD_RIVER.json index dfdb5edc63..bbe9b75f0b 100644 --- a/inst/extdata/OSD/W/WOOD_RIVER.json +++ b/inst/extdata/OSD/W/WOOD_RIVER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Btz--28 to 30 inches; light brownish gray (2.5Y 6/2) silty clay;, light olive brown (2.5Y 5/4) moist; weak medium subangular blocky structure, slightly hard, friable; thin patchy clay films on faces of peds; many visible white salt crystals and masses of soft lime; exchangeable sodium percentage =8; soluble salts 0.37 percent; strong effervescence; moderately alkaline; clear smooth boundary. (4 to 14 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--30 to 38 inches; light yellowish brown (10YR 6/4) silty clay loam, yellowish brown (10YR 5/4) moist; weak coarse subangular blocky structure; soft, friable; streaks and masses of segregated lime; exchangeable sodium percentage =15; strong effervescence; very strongly alkaline; clear smooth boundary. (0 to 20 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "C1--38 to 53 inches; very pale brown (10YR 7/4) silty clay loam, light yellowish brown (10YR 6/4) moist; massive; soft, friable; many soft masses of lime; exchangeable sodium percentage =9; strong effervescence; strongly alkaline; clear smooth boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--53 to 80 inches; very pale brown (10YR 7/4) silt loam, light yellowish brown (10YR 6/4) moist; massive; soft, friable; few fine masses of segregated lime; exchangeable sodium percentage =6; few fine distinct yellowish brown (10YR 5/6) moist iron masses in the soil matrix;strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/W/WORMSER.json b/inst/extdata/OSD/W/WORMSER.json index 1ab9d76c0b..a6ca2152e3 100644 --- a/inst/extdata/OSD/W/WORMSER.json +++ b/inst/extdata/OSD/W/WORMSER.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "B22t--10 to 15 inches; brown (10YR 5/3) clay loam, dark brown (10YR 4/3) moist; weak medium subangular blocky structure parting to weak fine subangular blocky; very hard, very firm; thin clay films on faces of peds; slight effervescence; mildly alkaline; clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "B3ca--15 to 19 inches, pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; weak medium subangular blocky structure parting to weak fine subangular blocky; hard, firm; disseminated lime throughout horizon; strong effervescence; moderately alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Clca--19 to 24 inches; very pale brown (10YR 7/3) sandy clay loam, pale brown (10YR 6/3) moist; massive; slightly hard, friable; lime disseminated throughout horizon; violent effervescence; strongly alkaline; clear smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2ca--24 to 38 inches, very pale brown (10YR 7/4) sandy loam, light yellowish brown (10YR 6/4) moist; massive; soft, very friable; lime disseminated throughout horizon; violent effervescence; strongly alkaline; abrupt smooth boundary." diff --git a/inst/extdata/OSD/W/WORTHING.json b/inst/extdata/OSD/W/WORTHING.json index 3900a53772..3dbc5e8573 100644 --- a/inst/extdata/OSD/W/WORTHING.json +++ b/inst/extdata/OSD/W/WORTHING.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Bkg--48 to 60 inches; gray (5Y 5/1) silty clay loam, gray (5Y 6/1) dry; many medium distinct pale olive (5Y 6/4) and prominent dark brown (7.5YR 4/4) redox accumulations; massive; hard, firm, sticky and plastic; common fine masses of calcium carbonate; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WORTMAN.json b/inst/extdata/OSD/W/WORTMAN.json index ff23cd9c64..3eacb2fde6 100644 --- a/inst/extdata/OSD/W/WORTMAN.json +++ b/inst/extdata/OSD/W/WORTMAN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--13 to 18 inches; pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; weak coarse subangular blocky structure; hard, friable, slightly sticky; few fine fragments of siltstone; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (4 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk2--18 to 26 inches; very pale brown (10YR 7/3) loam, brown (10YR 5/3) moist; weak coarse subangular blocky structure; hard, friable, slightly sticky; common fine fragments of siltstone; common fine accumulations of carbonate; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C--26 to 35 inches; very pale brown (10YR 7/3) loam, brown (10YR 5/3) moist; massive; hard, friable, slightly sticky; many fine fragments of siltstone; many fine and medium accumulations of carbonate; strong effervescence; strongly alkaline; clear wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--35 to 60 inches; very pale brown (10YR 8/3) and white (10YR 8/2) weathered soft siltstone, light yellowish brown (10YR 6/4) moist; easily dug with hand tools; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WYANDOTTE.json b/inst/extdata/OSD/W/WYANDOTTE.json index adaff261ad..4b8e14ed18 100644 --- a/inst/extdata/OSD/W/WYANDOTTE.json +++ b/inst/extdata/OSD/W/WYANDOTTE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) clay loam; very dark gray (10YR 3/1) dry; weak fine and medium subangular blocky structure; friable; many very fine and fine roots; strong effervescence; moderately alkaline; abrupt smooth boundary. (7 to 14 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--8 to 15 inches; dark gray (10YR 4/1) sandy clay loam; weak fine and medium subangular blocky structure; friable; few very fine and fine roots; about 5 percent coarse fragments; violent effervescence; moderately alkaline; clear wavy boundary. (4 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C1--15 to 21 inches; dark grayish brown (2.5Y 4/2) very gravelly loamy coarse sand; common fine distinct light olive brown (2.5Y 5/4) and light olive brown (2.5Y 5/6) redoximorphic concentrations; single grain; loose; common very fine and fine roots; about 60 percent coarse fragments; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C2--21 to 28 inches; grayish brown (2.5Y 5/2) very gravelly loamy coarse sand; few fine distinct gray (10YR 6/1) redoximorphic depletions; single grain; loose; about 50 percent coarse fragments; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "2C3--28 to 34 inches; light brownish gray (2.5Y 6/2) very gravelly loamy coarse sand; few fine distinct yellowish brown (10YR 5/6) redoximorphic concentrations; single grain; loose; about 60 percent coarse fragments; strong effervescence; moderately alkaline; gradual wavy boundary. (Combined 2C horizons 10 to 28 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "3Cg--34 to 60 inches; olive gray (5Y 4/2) clay; common fine distinct gray (5Y 6/1) redoximorphic depletions and light olive brown (2.5Y 5/6) and brown (7.5YR 4/4) redoximorphic concentrations; weak fine and medium angular blocky structure; firm; about 5 percent coarse fragments; few fine irregular soft lime filaments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WYARD.json b/inst/extdata/OSD/W/WYARD.json index 85e39d8781..61bf37f2cf 100644 --- a/inst/extdata/OSD/W/WYARD.json +++ b/inst/extdata/OSD/W/WYARD.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--32 to 42 inches; pale yellow (2.5Y 7/4) loam, light olive brown (2.5Y 5/4) moist; few medium distinct light olive brown (2.5Y 5/6) moist mottles; weak coarse prismatic structure parting to weak medium subangular blocky; hard, friable; slightly sticky and slightly plastic; few pebbles; common masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 15 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--42 to 60 inches; light yellowish brown (2.5Y 6/4) loam, olive brown (2.5Y 4/4) moist; few medium distinct light olive brown (2.5Y 5/6) moist mottles; weak medium subangular blocky structure; hard, friable; slightly sticky and slightly plastic; few pebbles; few small masses of carbonates; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WYATT.json b/inst/extdata/OSD/W/WYATT.json index ad7201826a..8d48069cee 100644 --- a/inst/extdata/OSD/W/WYATT.json +++ b/inst/extdata/OSD/W/WYATT.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--55 to 69 inches (140 to 175 cm); brown (7.5YR 5/3) clay; massive with varving apparent; firm; many very coarse prominent light gray (2.5Y 7/1) iron depletions; many coarse distinct brownish yellow (10YR 6/8) masses with accumulated iron oxide; slight effervescence; slightly alkaline; gradual smooth boundary." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--69 to 80 inches (175 to 200 cm); yellowish brown (10YR 5/4) silty clay; massive with apparent varving; firm; common extremely coarse brownish yellow (10YR 6/8) masses with accumulated iron oxide; many coarse prominent light gray (2.5Y 7/1) iron depletions; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WYKEHAM.json b/inst/extdata/OSD/W/WYKEHAM.json index ea43a9f830..b7c71885e8 100644 --- a/inst/extdata/OSD/W/WYKEHAM.json +++ b/inst/extdata/OSD/W/WYKEHAM.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BC--28 to 38 inches; yellowish brown (10YR 5/4 & 10YR 5/6) fine sandy loam; common fine distinct dark grayish brown (10YR 4/2) mottles; weak medium platy structure; friable; very few fine roots; common light gray (10YR 7/2) calcium carbonate filaments; about 5 percent coarse fragments; strong effervescence; mildly alkaline; gradual wavy boundary. (0 to 10 inches)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--38 to 52 inches; yellowish brown (10YR 5/6) fine sandy loam; common fine distinct dark grayish brown (10YR 4/2) mottles; weak medium platy soil fragments; friable; common light gray (10YR 7/2) calcium carbonate filaments; about 5 percent coarse fragments; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--52 to 71 inches; yellowish brown (10YR 5/6) fine sandy loam; moderate medium platy soil fragments; friable; common light gray (10YR 7/2) calcium carbonate filaments; about 13 percent coarse fragments; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WYNDMERE.json b/inst/extdata/OSD/W/WYNDMERE.json index 5adff63cf9..51cb7c399b 100644 --- a/inst/extdata/OSD/W/WYNDMERE.json +++ b/inst/extdata/OSD/W/WYNDMERE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Ap--0 to 8 inches; black (10YR 2/1) fine sandy loam, very dark gray (10YR 3/1) dry; weak coarse subangular blocky structure parting to moderate medium granular; slightly hard, very friable; many roots; strong effervescence; moderately alkaline; abrupt boundary. (Combined A horizons 6 to 11 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "ABk--8 to 15 inches; very dark gray (10YR 3/1) fine sandy loam, gray (10YR 5/1) dry; weak coarse prismatic structure parting to weak coarse angular blocky; slightly hard, very friable; common roots; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--15 to 26 inches; gray (10YR 5/1) fine sandy loam, light gray (10YR 6/1) dry; weak coarse prismatic structure parting to weak coarse angular blocky; slightly hard, very friable; few roots; violent effervescence; moderately alkaline; gradual wavy boundary. (6 to 36 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C1--26 to 44 inches; light olive brown (2.5Y 5/4) fine sandy loam, pale yellow (2.5Y 7/4) dry; few fine prominent dark reddish brown (5YR 3/2) redoximorphic concentrations; weak coarse subangular blocky structure parting to weak coarse granular; slightly hard, very friable; strong effervescence; moderately alkaline; gradual boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--44 to 60 inches; light olive brown (2.5Y 5/4) fine sandy loam, pale yellow (2.5Y 7/4) dry; many prominent very dark brown (10YR 2/2) and yellowish brown (10YR 5/6) redoximorphic concentrations; massive; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/W/WYRENE.json b/inst/extdata/OSD/W/WYRENE.json index dfd5028e53..c76b9a1f6c 100644 --- a/inst/extdata/OSD/W/WYRENE.json +++ b/inst/extdata/OSD/W/WYRENE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 8 inches; black (10YR 2/1) sandy loam, dark gray (10YR 4/1) dry; weak fine granular structure; slightly hard, very friable, slightly sticky and slightly plastic; many roots; strong effervescence; moderately alkaline; gradual wavy boundary. (7 to 16 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--8 to 13 inches; dark gray (10YR 4/1) sandy loam, gray (10YR 6/1) dry; moderate coarse prismatic structure parting to moderate coarse and medium subangular blocky; hard, friable, slightly sticky and slightly plastic; common roots; carbonates disseminated throughout; violent effervescence; moderately alkaline; gradual wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--13 to 21 inches; dark gray (10YR 4/1) sandy loam, gray (10YR 6/1) dry; moderate coarse and medium prismatic structure parting to moderate coarse and medium subangular blocky; hard, friable, slightly sticky and slightly plastic; few fine roots; carbonates disseminated throughout; violent effervescence; moderately alkaline; clear wavy boundary. (Combined Bk horizons 8 to 34 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--21 to 29 inches; light olive brown (2.5Y 5/4) coarse sand, light yellowish brown (2.5Y 6/4) dry; single grain; slight effervescence; moderately alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C2--29 to 42 inches; light olive brown (2.5Y 5/4) coarse sand, light yellowish brown (2.5Y 6/4) dry; common fine distinct dark yellowish brown (10YR 4/4) redox concentrations; single grain; loose; about 3 percent pebbles; slight effervescence; moderately alkaline; clear wavy boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2C3--42 to 60 inches; very dark grayish brown (2.5Y 3/2) coarse sand, light brownish gray (2.5Y 6/2) and grayish brown (2.5Y 5/2) dry; single grain; loose; about 5 percent pebbles; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/Y/YAWDIM.json b/inst/extdata/OSD/Y/YAWDIM.json index f42fbf02d6..0fc36831e2 100644 --- a/inst/extdata/OSD/Y/YAWDIM.json +++ b/inst/extdata/OSD/Y/YAWDIM.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C1--3 to 9 inches; light brownish gray (2.5Y 6/2) silty clay, dark grayish brown (2.5Y 4/2) moist; few fine distinct light olive brown (2.5Y 5/4) moist mottles; weak coarse prismatic structure parting to moderate medium and fine subangular blocky; very hard, firm, sticky and plastic; common fine roots; common pores; slight effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "C2--9 to 15 inches; light gray (5Y 7/1) silty clay, gray (5Y 5/1) moist; weak medium angular blocky structure parting to weak fine platy; very hard, firm, sticky and plastic; few roots; few pores; few masses of carbonates; slight effervescence; moderately alkaline; clear wavy boundary. (Combined C horizons 9 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr1--15 to 22 inches; light gray (5Y 7/2) partly weathered soft platy shale which crushes to silty clay; few roots between plates; slight effervescence; many gypsum crystals; few masses of carbonates; gradual boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr2--22 to 60 inches; pale yellow (5Y 7/3) and light gray (5Y 7/1) platy shale; yellowish brown (10YR 5/4) and black (10YR 2/1) stains on faces of plates; slight effervescence." diff --git a/inst/extdata/OSD/Y/YEATON.json b/inst/extdata/OSD/Y/YEATON.json index 04aba112fe..dc495c9241 100644 --- a/inst/extdata/OSD/Y/YEATON.json +++ b/inst/extdata/OSD/Y/YEATON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt1--33 to 56 cm, (13 to 22 in); olive yellow (2.5Y 6/6) clay loam; moderate fine angular blocky structure; extremely hard, very firm; few fine roots; few fine pores; common pressure faces; common light brownish gray (2.5Y 6/2) and grayish brown (2.5Y 5/2) clay films on faces of peds; 2 percent fine faint light olive brown (2.5Y 5/6) masses of oxidized iron with sharp boundaries lining pores; 2 percent fine and medium distinct light brownish gray (2.5Y 6/2) iron depletions with clear boundaries adjacent to redox concentrations; 2 percent fine and coarse calcium carbonate concretions; slight effervescence; neutral; gradual wavy boundary. (combined thickness of the Bt horizons is 24 to 74 cm [9 to 29 in])" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--56 to 84 cm, (22 to 33 in); light olive brown (2.5Y 5/6) clay loam; moderate medium angular blocky structure; extremely hard, very firm; few fine roots; few fine pores; common light brownish gray clay films on faces of some peds; few faint slickensides; 5 percent fine and medium distinct light brownish gray (2.5Y 6/2) iron depletions with clear boundaries adjacent to redox concentrations; 5 percent fine distinct yellowish brown (10YR 5/6) masses of oxidized iron with clear boundaries lining pores; 2 percent fine and coarse calcium carbonate concretions; slight effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--84 to 114 cm, (33 to 45 in); light brownish gray (10YR 6/2) loam; moderate coarse prismatic structure parting to weak medium subangular blocky; very hard, firm; few fine roots; few fine pores; common gray (2.5Y 5/1) clay films on faces of peds; 2 percent fine black (10YR 2/1) iron manganese nodules; 5 percent medium distinct brown (10YR 5/3) and yellowish brown (10YR 5/4) masses of oxidized iron with clear boundaries in matrix, 5 percent fine and medium prominent olive yellow (2.5Y 6/6) masses of oxidized iron with clear boundaries in matrix; 3 percent fine prominent light olive brown (2.5Y 5/6) masses of oxidized iron with diffuse boundaries in matrix; about 5 percent calcium carbonate concretions; about 15 percent fine and medium carbonate concretions and 5 percent fine and medium masses of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary. (combined thickness of the Btk horizons is 26 to 91 cm [10 to 36 in])" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk2--114 to 155 cm, (45 to 61 in); light brownish gray (10YR 6/2) loam; moderate coarse prismatic structure parting to weak medium subangular blocky; very hard, very firm; few fine roots; few fine pores; common gray (10YR 6/1) clay films on faces of peds; 2 percent fine black (10YR 2/1) iron manganese nodules; 10 percent coarse distinct brown (10YR 5/3) and 15 percent distinct yellowish brown (10YR 5/6) masses of oxidized iron with clear boundaries in matrix; 15 percent medium and coarse prominent olive yellow (2.5Y 6/6) masses of oxidized iron with clear boundaries in matrix; about 15 percent fine and medium calcium carbonate concretions and 5 percent fine and medium masses of calcium carbonate; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Btkg--155 to 203 cm, (61 to 80 in); light brownish gray (2.5Y 6/2) silt loam; moderate coarse prismatic structure parting to weak medium angular blocky; very hard, very firm; few fine roots; few fine pores; 2 percent fine black (10YR 2/1) iron manganese nodules and soft masses; 8 percent medium and coarse prominent brownish yellow (10YR 6/6) masses of oxidized iron with clear boundaries in matrix, 5 percent medium prominent yellowish brown (10YR 5/8) masses of oxidized iron with sharp boundaries in matrix; 10 percent fine and medium distinct light gray (10YR 7/1) iron depletions with clear boundaries adjacent to redox concentrations; 1 percent fine and medium distinct very pale brown (10YR 7/4) sand coats on vertical faces of peds ;about 8 percent fine and medium calcium carbonate concretions and 8 percent fine masses of calcium carbonate; strong effervescence; moderately alkaline.(27 to 67 cm [11 to 26 in] thick)" diff --git a/inst/extdata/OSD/Y/YECROSS.json b/inst/extdata/OSD/Y/YECROSS.json index 584d296721..6ef4528cce 100644 --- a/inst/extdata/OSD/Y/YECROSS.json +++ b/inst/extdata/OSD/Y/YECROSS.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C1--8 to 40 inches; brown (10YR 5/3) sand, brown (10YR 4/3) moist; single grained; loose; few fine roots in upper part; slight effervescence; slightly alkaline; gradual wavy boundary. (25 inches to several feet thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--40 to 60 inches; grayish brown (10YR 5/2) gravelly sand, dark grayish brown (10YR 4/2) moist; single grained; loose; about 15 percent by volume of rock fragments up to 1 inch in diameter; few rock fragments of shale; slight effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/Y/YELLOW_MEDICINE.json b/inst/extdata/OSD/Y/YELLOW_MEDICINE.json index ce7e7621eb..36f03ba279 100644 --- a/inst/extdata/OSD/Y/YELLOW_MEDICINE.json +++ b/inst/extdata/OSD/Y/YELLOW_MEDICINE.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 23 cm; black (10YR 2/1) loam; very dark gray (10YR 3/1) dry; weak fine and medium subangular blocky structure; friable; about 3 percent gravel; strong effervescent; slightly alkaline; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--23 to 43 cm; very dark grayish brown (10YR 3/2) loam; grayish brown (10YR 5/2) dry; weak fine subangular blocky structure; very friable; about 3 percent gravel; strong effervescent; slightly alkaline; clear smooth boundary. (Combined thickness of the A horizon is 25 to 61 cm)" diff --git a/inst/extdata/OSD/Y/YOCKEY.json b/inst/extdata/OSD/Y/YOCKEY.json index a8aec81a32..300c78abd0 100644 --- a/inst/extdata/OSD/Y/YOCKEY.json +++ b/inst/extdata/OSD/Y/YOCKEY.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 20 centimeters (0 to 8 inches0; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium granular structure; slightly hard, very friable; strong effervescence; moderately alkaline; abrupt smooth boundary. (10 TO 25 centimeters (4 to 10 inches) thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "AC--20 to 38 centimeters (8 to 15 inches); light brownish gray (10YR 6/2) loam, dark grayish brown (10YR 4/2) moist; weak medium and fine subangular blocky structure; slightly hard, very friable; strong effervescence; moderately alkaline; gradual smooth boundary. (0 TO 30 centimeters (0 to 12 inches) thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "C--38 to 81 centimeters (15 to 32 inches); light brownish gray (10YR 6/2) very fine sandy loam, grayish brown (10YR 5/2) moist; massive; slightly hard, very friable; strong effervescence; moderately alkaline; gradual wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--81 to 203 centimeters (32 to 80 inches); stratified, light brownish gray (10YR 6/2) and light gray (10YR 7/2) silt loam and very fine sandy loam, dark grayish brown (10YR 4/2) and grayish brown (10YR 5/2) moist; common medium distinct yellowish brown (10YR 5/8) moist iron masses in the soils matrix; massive; slightly hard, very friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/Y/YTURRIA.json b/inst/extdata/OSD/Y/YTURRIA.json index c6edbcd562..c81adf97dd 100644 --- a/inst/extdata/OSD/Y/YTURRIA.json +++ b/inst/extdata/OSD/Y/YTURRIA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "very strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--165 to 203 cm (65 to 80 in); very pale brown (10YR 7/3) fine sandy loam, pale brown (10YR 6/3) moist; weak subangular blocky structure; slightly hard, friable; few fine calcium carbonate nodules and masses; very strongly effervescent; moderately alkaline" diff --git a/inst/extdata/OSD/Z/ZABOROSKY.json b/inst/extdata/OSD/Z/ZABOROSKY.json index 4b2bc9ff35..983819641d 100644 --- a/inst/extdata/OSD/Z/ZABOROSKY.json +++ b/inst/extdata/OSD/Z/ZABOROSKY.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cb2--54 to 60 inches; yellowish brown (10YR 5/6) fine sand; single grain; loose; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/Z/ZAHL.json b/inst/extdata/OSD/Z/ZAHL.json index 5be4c0ad28..4f3eba01bd 100644 --- a/inst/extdata/OSD/Z/ZAHL.json +++ b/inst/extdata/OSD/Z/ZAHL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "A--0 to 5 inches; dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; weak medium subangular blocky structure parting to weak medium granular; slightly hard, friable, slightly sticky and slightly plastic; many very fine roots; many fine pores; strong effervescence; slightly alkaline; clear wavy boundary. (4 to 8 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk--5 to 20 inches; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; weak medium and fine subangular blocky structure; soft, friable, slightly sticky and slightly plastic; common very fine roots; many fine pores; few pebbles; many masses of carbonates; violent effervescence; moderately alkaline; gradual wavy boundary. (8 to 23 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--20 to 60 inches; light yellowish brown and light olive brown (2.5Y 6/4 and 2.5Y 5/4) clay loam, olive brown and light olive brown (2.5Y 4/4 and 2.5Y 5/4) moist; common fine faint olive gray (5Y 5/2) and common fine distinct gray (5Y 5/1) redox depletions; massive; soft, friable, sticky and plastic; few very fine roots to 40 inches; few pebbles; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/Z/ZAPA.json b/inst/extdata/OSD/Z/ZAPA.json index f77254373c..c6d1c1a28e 100644 --- a/inst/extdata/OSD/Z/ZAPA.json +++ b/inst/extdata/OSD/Z/ZAPA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Bkqm--64 to 107 cm; duripan; strong medium and thick platy structure; very hard and very firm; strongly cemented by secondary silica; common very fine and fine roots in fractures between plates; thin, discontinuous silica and carbonate lamina throughout various parts of horizon; 20 percent of horizon is violently effervescent in a noneffervescent matrix; clear wavy boundary. (13 to 46 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Bqk--107 to 152 cm; very pale brown (10YR 8/3) extremely gravelly coarse sandy loam, pale brown (10YR 6/3) moist; massive; very hard, very firm and brittle, nonsticky and nonplastic; many silica and carbonate pendants on bottoms of rock fragments; 25 percent of horizon is discontinuously, strongly silica-cemented; 75 percent gravel; violently effervescent on carbonate pendants, noneffervescent matrix; strongly alkaline (pH 8.6)" diff --git a/inst/extdata/OSD/Z/ZARK.json b/inst/extdata/OSD/Z/ZARK.json index 532d3f5133..6070a2f3e9 100644 --- a/inst/extdata/OSD/Z/ZARK.json +++ b/inst/extdata/OSD/Z/ZARK.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bqk--74 to 89 cm; light brownish gray (2.5Y 6/2) gravelly ashy loamy fine sand, olive brown (2.5Y 4/4) moist; massive; hard, firm and brittle, nonsticky and nonplastic; few very fine roots; few very fine tubular pores; 20 percent gravel; secondary carbonates segregated as few fine strongly effervescent irregularly shaped filaments and masses; noneffervescent matrix; moderately alkaline (pH 8.2); abrupt wavy boundary. (8 to 18 cm thick)" diff --git a/inst/extdata/OSD/Z/ZEELAND.json b/inst/extdata/OSD/Z/ZEELAND.json index 45ed5b27ca..03ffb3b63a 100644 --- a/inst/extdata/OSD/Z/ZEELAND.json +++ b/inst/extdata/OSD/Z/ZEELAND.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bk--24 to 35 inches; light olive brown (2.5Y 5/3) clay loam, olive brown (2.5Y 4/3) moist; common fine prominent yellowish brown (10YR 5/6) moist mottles; moderate medium and coarse prismatic structure parting to moderate medium subangular blocky; hard, firm, sticky and plastic; few very fine roots; about 3 percent gravel; many medium and coarse irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; gradual smooth boundary. (0 to 11 thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--35 to 44 inches; light olive brown (2.5Y 5/3) clay loam, dark grayish brown (2.5Y 4/2) moist; common fine prominent yellowish brown (10YR 5/6) moist mottles; weak medium prismatic structure parting to weak medium subangular blocky; slightly hard, firm, sticky and slightly plastic; about 5 percent gravel; many medium and coarse irregularly shaped masses of carbonates; strong effervescence; moderately alkaline; gradual wavy boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/Z/ZELL.json b/inst/extdata/OSD/Z/ZELL.json index 24e44f1b8a..82fe0d18dd 100644 --- a/inst/extdata/OSD/Z/ZELL.json +++ b/inst/extdata/OSD/Z/ZELL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 6 inches; dark gray (10YR 4/1) silt loam, black (10YR 2/1) moist; moderate fine and medium granular structure; soft, very friable; slight effervescence; slightly alkaline; clear smooth boundary. (4 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--6 to 11 inches; grayish brown (2.5Y 5/2) silt loam, dark grayish brown (2.5Y 4/2) moist; weak medium and coarse subangular blocky structure parting to weak fine granular; soft, very friable; strong effervescence; moderately alkaline; clear wavy boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--11 to 18 inches; light brownish gray (2.5Y 6/2) silt loam, light olive brown (2.5Y 5/4) moist; many fine distinct yellowish brown (10YR 5/6) moist relict redoximorphic concentrations and many fine prominent gray (5Y 5/1) moist relict redoximorphic depletions; weak coarse subangular blocky; slightly hard, friable; few fine threads and masses of calcium carbonate; violent effervescence; moderately alkaline; clear wavy boundary. (Combined thickness of Bk horizons is 0 to 25 inches)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "Bky--18 to 26 inches; light gray (2.5Y 7/2) silt loam, light olive brown (2.5Y 5/4) moist; many medium prominent yellowish brown (10YR 5/6) moist relict redoximorphic concentrations and gray (5Y 5/1) moist relict redoximorphic depletions; weak medium and fine subangular blocky structure parting to weak thin platy; slightly hard, friable; few fine threads and masses of calcium carbonate; few fine nests of gypsum; strong effervescence; slightly alkaline; gradual smooth boundary. (0 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--26 to 60 inches; pale yellow (2.5Y 7/3) silt loam, light yellowish brown (2.5Y 6/3) moist; many coarse prominent brownish yellow (10YR 6/6) moist relict redoximorphic concentrations and gray (5Y 5/1) moist relict redoximorphic depletions; laminated; slightly hard, friable; strong effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/Z/ZELLA.json b/inst/extdata/OSD/Z/ZELLA.json index 6a536a0a0b..3e47f25c87 100644 --- a/inst/extdata/OSD/Z/ZELLA.json +++ b/inst/extdata/OSD/Z/ZELLA.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "2Btk1--53 to 63 inches; light brown (7.5YR 6/4) silt loam, brown (7.5YR 5/4) moist; weak medium prismatic structure parting to weak fine subangular blocky; slightly hard, firm; few fine and very fine tubular pores; many distinct clay films on ped surfaces; about 2 percent visible calcium carbonate in the form of threads and concretions; moderately effervescent; slightly alkaline; gradual wavy boundary. (8 to 15 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "moderately effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Btk2--63 to 80 inches; brown (7.5YR 5/4) loam, brown (7.5YR 4/4) moist; weak medium prismatic structure parting to weak fine subangular blocky; slightly hard, firm; few fine and very fine tubular pores; many distinct clay films on ped surfaces; about 2 percent visible calcium carbonate in the form of threads and concretions; moderately effervescent; slightly alkaline." diff --git a/inst/extdata/OSD/Z/ZENDA.json b/inst/extdata/OSD/Z/ZENDA.json index 5e2fd779f3..1e50b8e65d 100644 --- a/inst/extdata/OSD/Z/ZENDA.json +++ b/inst/extdata/OSD/Z/ZENDA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "gradual", "topography": "smooth", "narrative": "C1--14 to 22 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; few fine faint yellowish brown (10YR 5/6) mottles in lower part; moderate coarse granular structure; hard, friable; many fine soft lime accumulations; strong effervescence; mildly alkaline; gradual smooth boundary." @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "diffuse", "topography": "smooth", "narrative": "C2--22 to 38 inches; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; few fine distinct strong brown (7.5YR 5/6) and gray (N 5/0) mottles; weak coarse granular structure; very hard, firm; many fine masses of segregated lime; strong effervescence; mildly alkaline; diffuse smooth boundary. (0 to 30 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--38 to 60 inches; light brownish gray (10YR 6/2) clay loam, grayish brown (10YR 5/2) moist; common medium distinct strong brown (7.5YR 5/6) and few faint gray (5YR 5/1) mottles; massive; very hard, very firm; few lime concretions; violent effervescence; moderately alkaline." diff --git a/inst/extdata/OSD/Z/ZEONA.json b/inst/extdata/OSD/Z/ZEONA.json index 864d532557..2ff28091ca 100644 --- a/inst/extdata/OSD/Z/ZEONA.json +++ b/inst/extdata/OSD/Z/ZEONA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C3--44 to 60 inches; light brownish gray (2.5Y 6/2) loamy fine sand, dark grayish brown (2.5Y 4/2) moist; single grain; loose, very friable; slight effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/Z/ZIPPEL.json b/inst/extdata/OSD/Z/ZIPPEL.json index 099e566666..255a224d93 100644 --- a/inst/extdata/OSD/Z/ZIPPEL.json +++ b/inst/extdata/OSD/Z/ZIPPEL.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 7 inches; black (10YR 2/1) very fine sandy loam, very dark gray (10YR 3/1) dry; weak very fine granular structure; very friable; slight effervescence; slightly alkaline; abrupt smooth boundary. (7 to 10 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bg--7 to 12 inches; dark brownish gray (2.5Y 4/2) very fine sandy loam; few fine distinct dark gray (10YR 4/1) and common fine prominent yellowish brown (10YR 5/4) mottles; moderate fine subangular blocky structure; friable; slight effervescence; slightly alkaline; clear smooth boundary. (3 to 8 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg1--12 to 25 inches; light brownish gray (2.5Y 6/2) very fine sandy loam; common medium prominent yellowish brown (10YR 5/4) mottles; weak fine subangular blocky structure; very friable; strong effervescence; slightly alkaline; clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Cg2--25 to 27 inches; light brownish gray (2.5Y 6/2) silt loam; common medium prominent yellowish brown (10YR 5/4) mottles; weak fine subangular blocky structure; very friable; strong effervescence; slightly alkaline; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg3--27 to 60 inches; light brownish gray (2.5Y 6/2) loam; common medium prominent yellowish brown (10YR 5/4) mottles; weak fine subangular blocky structure; very friable; strong effervescence; slightly alkaline." diff --git a/inst/extdata/OSD/Z/ZOE.json b/inst/extdata/OSD/Z/ZOE.json index 5df5e2775e..e514c31240 100644 --- a/inst/extdata/OSD/Z/ZOE.json +++ b/inst/extdata/OSD/Z/ZOE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Az--41 to 61 centimeters (16 to 24 inches); very dark gray (10YR 3/1) silty clay loam, dark gray (10YR 4/1) dry; weak coarse platy structure parting to moderate fine angular blocky; hard, firm; common medium distinct light colored threads of salt accumulations on ped faces; sodium adsorption ratio = 14 dS/m, electrical conductivity = 7 mmhos/cm; slight effervescence; slightly alkaline; abrupt smooth boundary." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--91 to 152 centimeters (36 to 60 inches); dark grayish brown (2.5Y 4/2) silty clay, light brownish gray (2.5Y 6/2) dry; massive; very hard, very firm; many medium prominent yellowish brown (10YR 5/6) iron masses; sodium adsorption ratio= 31 dS/m, electrical conductivity= 4 mmhos/cm; common fine iron manganese concretions and common medium and coarse calcium carbonate concretions; strong effervescence on calcium carbonate concretions; moderately alkaline." diff --git a/inst/extdata/OSD/Z/ZOLA.json b/inst/extdata/OSD/Z/ZOLA.json index f3aecf571e..c71e864caf 100644 --- a/inst/extdata/OSD/Z/ZOLA.json +++ b/inst/extdata/OSD/Z/ZOLA.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw2--33 to 53 cm; brown (10YR 5/3) loam, very dark grayish brown (10YR 3/2) moist; moderate medium subangular or blocky structure; slightly hard, friable, slightly sticky and slightly plastic; common very fine and fine roots; common very fine and fine tubular pores; slight effervescence (12 percent calcium carbonate); moderately alkaline (pH 8.0); abrupt smooth boundary. (18 to 36 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--53 to 71 cm; grayish brown (10YR 5/2) clay loam, very dark grayish brown (10YR 3/2) moist; moderate medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few very fine and fine roots; few very fine and fine tubular pores; strong effervescence (12 percent calcium carbonate); carbonates occur in common medium irregularly shaped filaments or threads; moderately alkaline (pH 8.0); clear smooth boundary. (15 to 33 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk2--71 to 99 cm; gray (10YR 5/1) clay loam, very dark gray (10YR 3/1) moist; moderate medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; few very fine and fine roots; few very fine and fine tubular pores; slight effervescence (9 percent calcium carbonate); carbonates occur in few fine irregularly shaped soft masses; moderately alkaline (pH 8.1); abrupt smooth boundary. (0 to 38 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bk1--99 to 137 cm; very dark grayish brown (10YR 3/2) clay, very dark gray (10YR 3/1) moist; massive; very hard, very firm, very sticky and very plastic; few very fine roots; few fine tubular pores; slight effervescence (7 percent calcium carbonate); carbonates occur in few fine irregularly shaped soft masses; moderately alkaline (pH 7.9); abrupt smooth boundary. (0 to 46 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": 7.2, "pH_class": "neutral", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "2Bk2--137 to 178 cm; light yellowish brown (2.5Y 6/4) gravelly sandy clay, grayish brown (2.5Y 5/2) moist; common fine faint mottles (7.5YR 4/6) moist; 30 percent gravel; massive; very hard, very firm, very sticky and very plastic; few fine tubular pores; slight effervescence (6 percent calcium carbonate); carbonates occur in few fine irregularly shaped soft masses; neutral (pH 7.2)." diff --git a/inst/extdata/OSD/Z/ZUMAN.json b/inst/extdata/OSD/Z/ZUMAN.json index 93ffee0888..d8b43303c8 100644 --- a/inst/extdata/OSD/Z/ZUMAN.json +++ b/inst/extdata/OSD/Z/ZUMAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C1--17 to 24 inches; very dark gray (N 3/) and dark grayish brown (2.5Y 4/2) fine sand, grayish brown (2.5Y 5/2) dry; many medium faint dark gray (N 4/) mottles; massive; soft, very friable; few very fine roots; many very fine pores; weakly effervescent; very strongly alkaline (pH 9.6); abrupt smooth boundary. (6 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2C2--24 to 30 inches; very dark gray (N 3/) fine sand, dark grayish brown (2.5Y 4/2) dry; many medium distinct olive brown (2.5Y 4/4) mottles; massive; soft, very friable; many very fine pores; weakly effervescent; very strongly alkaline (pH 9.6); clear wavy boundary. (0 to 10 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2C3--30 to 37 inches; black (10YR 2/1) fine sand, dark gray (10YR 4/1) dry; common medium distinct olvie brown (2.5Y 4/4) mottles; massive; hard, firm; many very fine pores; weakly effervescent; compact layer that slakes readily in water; very strongly alkaline (pH 9.6); clear wavy boundary. (5 to 8 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "NA", + "eff_class": "weakly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C4--37 to 60 inches; black (N 2/) fine sand, dark gray (N 4/) dry; massive; hard, firm, nonsticky and nonplastic; many very fine pores; weakly effervescent; compact layer that slakes readily in water; very strongly alkaline (pH 9.6)." diff --git a/inst/extdata/OSD/Z/ZUMBRO.json b/inst/extdata/OSD/Z/ZUMBRO.json index d09fee3dea..0da8e49a6f 100644 --- a/inst/extdata/OSD/Z/ZUMBRO.json +++ b/inst/extdata/OSD/Z/ZUMBRO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "AB--27 to 40 inches; very dark grayish brown (10YR 3/2) loamy sand; massive; loose; slight effervescence; mildly alkaline; gradual wavy boundary. (0 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--40 to 50 inches; dark brown (10YR 4/3) loamy sand; massive; loose; about 10 percent very fine gravel; slight effervescence; mildly alkaline; clear wavy boundary. (0 to 25 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "mildly alkaline", - "eff_class": "NA", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--50 to 65 inches; grayish brown (10YR 5/2) sand; single grain; loose; about 15 percent gravel; slight effervescence; mildly alkaline." From 45a3c2aa23e8d7abd157f756b1c1c4766fd18d9f Mon Sep 17 00:00:00 2001 From: "Andrew G. Brown" Date: Wed, 25 Oct 2023 11:20:23 -0700 Subject: [PATCH 03/11] update test --- tests/testthat/test-OSD-parsing.R | 28 +++++++++++++--------------- 1 file changed, 13 insertions(+), 15 deletions(-) diff --git a/tests/testthat/test-OSD-parsing.R b/tests/testthat/test-OSD-parsing.R index ccc4517902..c3a9a63375 100644 --- a/tests/testthat/test-OSD-parsing.R +++ b/tests/testthat/test-OSD-parsing.R @@ -15,9 +15,9 @@ context("OSD Parsing") # https://github.com/ncss-tech/SoilKnowledgeBase/issues/64 # anticipate expected / possible changes to OSDs starting May 2023 test_that("May 2023 changes to OSD style", { - + lines <- strsplit("Typical Pedon: -Gamma silt loam with a north-facing, linear, 1 percent slope in an alfalfa field at an elevation of 210 meters. (Colors are for dry soil unless otherwise noted.) +Gamma silt loam with a north-facing, linear, 1 percent slope in an alfalfa field at an elevation of 210 meters. (Colors are for dry soil unless otherwise noted.) Ap—0 to 15 centimeters; grayish brown (10YR 5/2) silt loam, very dark grayish brown (10YR 3/2) moist; weak fine granular structure; slightly hard, friable; neutral (pH 6.7 in 1:1 water); abrupt smooth boundary. (10 to 23 centimeters thick) @@ -31,12 +31,12 @@ Agb1—81 to 112 centimeters; dark gray (10YR 4/1) silt loam, very dark gray (10 Agb2—112 to 153 centimeters; dark gray (N 4/) silt loam, black (N 2.5/) moist; massive; hard, friable; neutral (pH 6.8 in 1:1 water). ", split = '\n')[[1]] - + z <- SoilKnowledgeBase:::.extractHzData(lines) expect_equal(nrow(z), 6) expect_equal(z$top, c(0, 15, 33, 48, 81, 112)) - + }) @@ -273,7 +273,7 @@ Bt2--36 to 43 cm; brown (7.5YR 5/4) extremely cobbly loam, reddish brown (5YR 4/ }) test_that("parsing of effervescence class", { - + lines <- strsplit("TYPICAL PEDON: Abac loam - grassland. (Colors are for dry soil unless otherwise noted.) A1--0 to 3 inches; reddish brown (2.5YR 5/4) silt loam, dark reddish brown (2.5YR 3/4) moist; moderate thin platy structure; slightly hard, friable, slightly sticky, slightly plastic; many very fine roots; slightly effervescent; few soft red shale fragments; clear smooth boundary. (2 to 6 inches thick) @@ -285,16 +285,14 @@ Bk--8 to 15 inches; red (2.5YR 5/6) loam, dark red (2.5YR 3/6) moist; fine block BCk--15 to 19 inches; light reddish brown (2.5YR 6/4) loam, red (2.5YR 4/6) moist; massive; hard, friable, slightly sticky, slightly plastic; a few mats of very fine roots follow the bedding planes of the shale; 60 percent shale parafragments; strongly effervescent with few fine threads of lime; abrupt irregular boundary. Cr--19 to 26 inches; red, platy shale and fine grained sandstone, calcareous.", split = '\n')[[1]] - - + + z <- SoilKnowledgeBase:::.extractHzData(lines) expect_true(nrow(z) == 5) - - expect_true(inherits(z$eff_class, 'factor')) - + expect_true(length(z$eff_class) == 5) - - + + ## no eff mentioned lines <- strsplit("TYPICAL PEDON: Naconiche mucky sandy loam, 0 to 2 percent slopes in a forested flood plain. (colors are for moist soil conditions) @@ -322,12 +320,12 @@ A'b--57 to 67 inches; black (N 2/0), very dark gray (10YR 3/1), and white (10YR C''g--67 to 73 inches; white (10YR 8/2) fine sand; single grained; few fine and medium roots; moderately acid; abrupt smooth boundary.(0 to 10 inches thick) A''b--73 to 80 inches; dark grayish brown (10YR 4/2) fine sand; single grained; few fine and medium roots; very strongly acid.", split = '\n')[[1]] - - + + z <- SoilKnowledgeBase:::.extractHzData(lines) expect_true(nrow(z) == 12) expect_true(all(is.na(z$eff_class))) - + }) From 66a2a1867c65cae03b45414cccfcf2f317aab7c4 Mon Sep 17 00:00:00 2001 From: "Andrew G. Brown" Date: Wed, 25 Oct 2023 12:27:50 -0700 Subject: [PATCH 04/11] more updates to effervescence - greediness: preferentially take first class (after comma or semicolon most likely to be matrix eff) - allow ranges of classes separated by "to" (like drainage class) - note there are a wide range of narrative comments still not yet handled e.g. "slightly effervescent but strongly effervescent in spots" --- R/parseOSD_functions.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/parseOSD_functions.R b/R/parseOSD_functions.R index 11562bece5..17e9f6026d 100644 --- a/R/parseOSD_functions.R +++ b/R/parseOSD_functions.R @@ -207,8 +207,8 @@ # vectorized parsing of effervescence class .parse_eff_class <- function(x) { - SoilKnowledgeBase:::.zerochar_to_na(gsub("^.*(very [a-z]+ effervescen[tce]+).*$|^.*\\b([a-z]+ ?effervescen[tce]+).*$|.*", - "\\1\\2", x, ignore.case = TRUE)) + SoilKnowledgeBase:::.zerochar_to_na(gsub("^.*[;,]? \\b([a-z]+ ?effervescen[tce]+ to [a-z]+ ?effervescen[tce]+).*$|^.*[;,] \\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,] \\b([a-z]+ ?effervescen[tce]+).*$|^.*[;,]? \\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,]? \\b([a-z]+ ?effervescen[tce]+).*$|.*", + "\\1\\2\\3\\4\\5", x, ignore.case = TRUE)) # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes } From 1a174dcb10dfac2b913fccdc2c601a6d51e13ec6 Mon Sep 17 00:00:00 2001 From: SoilKnowledgeBot Date: Wed, 25 Oct 2023 20:03:02 +0000 Subject: [PATCH 05/11] Update inst/extdata/ JSON files --- inst/extdata/OSD/A/AGUACHIQUITA.json | 6 +++--- inst/extdata/OSD/A/ALCOVA.json | 2 +- inst/extdata/OSD/A/ALDAPE.json | 2 +- inst/extdata/OSD/A/ALINE.json | 2 +- inst/extdata/OSD/A/ALIRE.json | 2 +- inst/extdata/OSD/A/ALTASLOUGH.json | 2 +- inst/extdata/OSD/A/ALTURAS.json | 2 +- inst/extdata/OSD/A/APPIAN.json | 2 +- inst/extdata/OSD/A/ATESH.json | 10 +++++----- inst/extdata/OSD/A/AZURERIDGE.json | 2 +- inst/extdata/OSD/B/BAGVAL.json | 4 ++-- inst/extdata/OSD/B/BAILCREEK.json | 2 +- inst/extdata/OSD/B/BANKSTON.json | 2 +- inst/extdata/OSD/B/BANSHEE.json | 6 +++--- inst/extdata/OSD/B/BEEDE_LAKE.json | 2 +- inst/extdata/OSD/B/BENIN.json | 2 +- inst/extdata/OSD/B/BESSLEN.json | 2 +- inst/extdata/OSD/B/BIDDLEMAN.json | 2 +- inst/extdata/OSD/B/BLEUMONT.json | 4 ++-- inst/extdata/OSD/B/BOBNBOB.json | 2 +- inst/extdata/OSD/B/BOXCUT.json | 4 ++-- inst/extdata/OSD/B/BRIDGEWELL.json | 2 +- inst/extdata/OSD/B/BRISLAWN.json | 2 +- inst/extdata/OSD/B/BROCK.json | 2 +- inst/extdata/OSD/B/BROPHY.json | 2 +- inst/extdata/OSD/B/BROYLES.json | 4 ++-- inst/extdata/OSD/B/BULLFOR.json | 2 +- inst/extdata/OSD/C/CALGRO.json | 4 ++-- inst/extdata/OSD/C/CALNAT.json | 2 +- inst/extdata/OSD/C/CARRI.json | 4 ++-- inst/extdata/OSD/C/CENTERVILLE.json | 8 ++++---- inst/extdata/OSD/C/CHANCELAKES.json | 2 +- inst/extdata/OSD/C/CHAPPUIS.json | 4 ++-- inst/extdata/OSD/C/CHUCKAWALLA.json | 2 +- inst/extdata/OSD/C/CITIVAR.json | 2 +- inst/extdata/OSD/C/CLURO.json | 8 ++++---- inst/extdata/OSD/C/COE.json | 2 +- inst/extdata/OSD/C/COLDENT.json | 4 ++-- inst/extdata/OSD/C/COLVIN.json | 2 +- inst/extdata/OSD/C/CONTINENTAL.json | 2 +- inst/extdata/OSD/C/COVINGTON.json | 2 +- inst/extdata/OSD/C/CREDO.json | 2 +- inst/extdata/OSD/C/CRYSTALGYP.json | 10 +++++----- inst/extdata/OSD/C/CUPVAR.json | 2 +- inst/extdata/OSD/D/DAISY.json | 2 +- inst/extdata/OSD/D/DANGBERG.json | 6 +++--- inst/extdata/OSD/D/DEFLER.json | 2 +- inst/extdata/OSD/D/DEVOIGNES.json | 2 +- inst/extdata/OSD/D/DOBEL.json | 2 +- inst/extdata/OSD/D/DONDIEGO.json | 2 +- inst/extdata/OSD/D/DONNA.json | 4 ++-- inst/extdata/OSD/D/DRYGYP.json | 2 +- inst/extdata/OSD/E/EAST_FORK.json | 4 ++-- inst/extdata/OSD/E/EDALPH.json | 4 ++-- inst/extdata/OSD/E/ELEVATOR.json | 2 +- inst/extdata/OSD/E/ELFKIN.json | 2 +- inst/extdata/OSD/F/FAIRYDELL.json | 2 +- inst/extdata/OSD/F/FALLON.json | 6 +++--- inst/extdata/OSD/F/FIESTA.json | 2 +- inst/extdata/OSD/F/FLAMEN.json | 2 +- inst/extdata/OSD/F/FORTSAGE.json | 2 +- inst/extdata/OSD/F/FOSTERBURG.json | 4 ++-- inst/extdata/OSD/G/GARDNERVILLE.json | 4 ++-- inst/extdata/OSD/G/GAZELLE.json | 4 ++-- inst/extdata/OSD/G/GODECKE.json | 2 +- inst/extdata/OSD/G/GOLDEAGLE.json | 2 +- inst/extdata/OSD/G/GOLSUM.json | 2 +- inst/extdata/OSD/G/GOTHARD.json | 4 ++-- inst/extdata/OSD/G/GRANSHAW.json | 2 +- inst/extdata/OSD/G/GROWLER.json | 2 +- inst/extdata/OSD/H/HAOZOUS.json | 4 ++-- inst/extdata/OSD/H/HAPUNA.json | 4 ++-- inst/extdata/OSD/H/HAUG.json | 2 +- inst/extdata/OSD/H/HERMSHALE.json | 4 ++-- inst/extdata/OSD/H/HIDEWOOD.json | 2 +- inst/extdata/OSD/H/HILLER.json | 2 +- inst/extdata/OSD/H/HOLTLE.json | 4 ++-- inst/extdata/OSD/H/HOMESTAKE.json | 2 +- inst/extdata/OSD/H/HOOPLITE.json | 2 +- inst/extdata/OSD/H/HORCADO.json | 2 +- inst/extdata/OSD/H/HOVEY.json | 2 +- inst/extdata/OSD/H/HUSSMAN.json | 2 +- inst/extdata/OSD/I/INDUS.json | 2 +- inst/extdata/OSD/J/JOB.json | 2 +- inst/extdata/OSD/K/KAI.json | 4 ++-- inst/extdata/OSD/K/KENTONMILL.json | 2 +- inst/extdata/OSD/K/KHYBER.json | 6 +++--- inst/extdata/OSD/K/KINZIE.json | 2 +- inst/extdata/OSD/K/KITCHELL.json | 4 ++-- inst/extdata/OSD/K/KNOKE.json | 2 +- inst/extdata/OSD/L/LABKEY.json | 8 ++++---- inst/extdata/OSD/L/LALAMILO.json | 4 ++-- inst/extdata/OSD/L/LAMESILLA.json | 2 +- inst/extdata/OSD/L/LANIP.json | 2 +- inst/extdata/OSD/L/LEADORE.json | 2 +- inst/extdata/OSD/L/LEAVITT.json | 2 +- inst/extdata/OSD/L/LEFOR.json | 2 +- inst/extdata/OSD/L/LEITER.json | 2 +- inst/extdata/OSD/L/LEWELLEN.json | 2 +- inst/extdata/OSD/L/LIZZANT.json | 2 +- inst/extdata/OSD/L/LONTI.json | 2 +- inst/extdata/OSD/L/LOX.json | 2 +- inst/extdata/OSD/M/MANNING.json | 2 +- inst/extdata/OSD/M/MAZUMA.json | 4 ++-- inst/extdata/OSD/M/MEADVIEW.json | 2 +- inst/extdata/OSD/M/MET.json | 2 +- inst/extdata/OSD/M/MIDDLEHILL.json | 2 +- inst/extdata/OSD/M/MINNEISKA.json | 2 +- inst/extdata/OSD/M/MIRASOL.json | 2 +- inst/extdata/OSD/M/MOPANA.json | 2 +- inst/extdata/OSD/M/MORBENCH.json | 2 +- inst/extdata/OSD/N/NAHRUB.json | 2 +- inst/extdata/OSD/N/NEVADOR.json | 4 ++-- inst/extdata/OSD/N/NINCH.json | 2 +- inst/extdata/OSD/N/NOFET.json | 4 ++-- inst/extdata/OSD/N/NUTIVOLI.json | 2 +- inst/extdata/OSD/O/OLDWOLF.json | 2 +- inst/extdata/OSD/O/OLSON.json | 2 +- inst/extdata/OSD/O/ORELLA.json | 2 +- inst/extdata/OSD/O/ORPHANT.json | 4 ++-- inst/extdata/OSD/O/OWLSHEAD.json | 2 +- inst/extdata/OSD/P/PAKINI.json | 2 +- inst/extdata/OSD/P/PANKY.json | 4 ++-- inst/extdata/OSD/P/PAPOOSE.json | 2 +- inst/extdata/OSD/P/PARAJE.json | 2 +- inst/extdata/OSD/P/PARCHIN.json | 2 +- inst/extdata/OSD/P/PATTANI.json | 2 +- inst/extdata/OSD/P/PEDREGAL.json | 4 ++-- inst/extdata/OSD/P/PENINSULA.json | 2 +- inst/extdata/OSD/P/PINEVAL.json | 2 +- inst/extdata/OSD/P/POBLANO.json | 2 +- inst/extdata/OSD/P/PORTILLO.json | 8 ++++---- inst/extdata/OSD/P/POWLEY.json | 2 +- inst/extdata/OSD/Q/QUAPAW.json | 10 +++++----- inst/extdata/OSD/R/RAMIRES.json | 4 ++-- inst/extdata/OSD/R/RANION.json | 2 +- inst/extdata/OSD/R/REDBULL.json | 4 ++-- inst/extdata/OSD/R/REDDALE.json | 2 +- inst/extdata/OSD/R/REDMORE.json | 2 +- inst/extdata/OSD/R/RETSOVER.json | 2 +- inst/extdata/OSD/R/REVERE.json | 2 +- inst/extdata/OSD/R/RILLITO.json | 2 +- inst/extdata/OSD/R/ROTURA.json | 2 +- inst/extdata/OSD/S/SAEMO.json | 2 +- inst/extdata/OSD/S/SALINAS.json | 2 +- inst/extdata/OSD/S/SAWABE.json | 2 +- inst/extdata/OSD/S/SCALFAR.json | 2 +- inst/extdata/OSD/S/SEAFORTH.json | 2 +- inst/extdata/OSD/S/SEVILLE.json | 2 +- inst/extdata/OSD/S/SILVERBOW.json | 2 +- inst/extdata/OSD/S/SLAN.json | 2 +- inst/extdata/OSD/S/SOBSON.json | 2 +- inst/extdata/OSD/S/SPOOKY.json | 2 +- inst/extdata/OSD/S/SPOTTEDHORSE.json | 2 +- inst/extdata/OSD/S/STAMPEDE.json | 2 +- inst/extdata/OSD/S/SURGE.json | 2 +- inst/extdata/OSD/S/SUSIE_CREEK.json | 2 +- inst/extdata/OSD/T/TAGUS.json | 6 +++--- inst/extdata/OSD/T/TALCOT.json | 2 +- inst/extdata/OSD/T/TANAZZA.json | 4 ++-- inst/extdata/OSD/T/TAYLOR_CREEK.json | 2 +- inst/extdata/OSD/T/TENDERFOOT.json | 2 +- inst/extdata/OSD/T/TETILLA.json | 4 ++-- inst/extdata/OSD/T/THEECAN.json | 6 +++--- inst/extdata/OSD/T/TICKAPOO.json | 2 +- inst/extdata/OSD/T/TIMPER.json | 4 ++-- inst/extdata/OSD/T/TIPPIPAH.json | 6 +++--- inst/extdata/OSD/T/TOMEL.json | 2 +- inst/extdata/OSD/T/TONKIN.json | 2 +- inst/extdata/OSD/T/TOULON.json | 2 +- inst/extdata/OSD/T/TRIPLEN.json | 2 +- inst/extdata/OSD/T/TRUJILLO.json | 2 +- inst/extdata/OSD/T/TSIRKU.json | 2 +- inst/extdata/OSD/T/TUGAS.json | 2 +- inst/extdata/OSD/T/TULERT.json | 2 +- inst/extdata/OSD/T/TURKEYTRACK.json | 2 +- inst/extdata/OSD/U/UNSEL.json | 4 ++-- inst/extdata/OSD/V/VALMY.json | 2 +- inst/extdata/OSD/V/VEBAR.json | 2 +- inst/extdata/OSD/V/VINSAD.json | 6 +++--- inst/extdata/OSD/V/VIRGIN_RIVER.json | 2 +- inst/extdata/OSD/V/VYLACH.json | 2 +- inst/extdata/OSD/W/WABEK.json | 2 +- inst/extdata/OSD/W/WASIOJA.json | 4 ++-- inst/extdata/OSD/W/WATERCANYON.json | 2 +- inst/extdata/OSD/W/WHIRLO.json | 2 +- inst/extdata/OSD/W/WHITEBASIN.json | 2 +- inst/extdata/OSD/W/WOOD_RIVER.json | 2 +- inst/extdata/OSD/W/WOOZLE.json | 2 +- inst/extdata/OSD/Z/ZABA.json | 4 ++-- 190 files changed, 268 insertions(+), 268 deletions(-) diff --git a/inst/extdata/OSD/A/AGUACHIQUITA.json b/inst/extdata/OSD/A/AGUACHIQUITA.json index 6b1d223cc9..91a4c9230c 100644 --- a/inst/extdata/OSD/A/AGUACHIQUITA.json +++ b/inst/extdata/OSD/A/AGUACHIQUITA.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkq--10 to 20 inches; pale brown (10YR 6/3) very gravelly coarse sandy loam, dark yellowish brown (10YR 4/4) moist; weak medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; common very fine, few fine and medium roots; few very fine and fine interstitial and tubular pores; 50 percent pebbles, 1 percent cobbles and 0.1 percent stones; common fine (1 to 2 millimeter) calcium carbonate and silica coats on bottoms of rock fragments; noneffervescent to strongly effervescent; moderately alkaline (pH 8.2); clear wavy boundary. (8 to 20 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkqm1--20 to 31 inches; light brown (7.5YR 6/3) extremely weakly cemented duripan, brown (7.5YR 4/4) moist; massive; moderately hard, friable, brittle; few very fine and fine roots; few very fine and fine interstitial pores; 50 percent pebbles, 3 percent cobbles, and 1 percent stones; common fine (1 to 2 millimeter) calcium carbonate and silica coats on bottoms of rock fragments; noneffervescent to strongly effervescent; clear wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkqm2--31 to 43 inches; light brown (7.5YR 6/3) very weakly cemented duripan, brown (7.5YR 4/4) moist; massive; hard, firm, brittle; few very fine and fine roots; few very fine and fine interstitial pores; 50 percent pebbles, 3 percent cobbles, and 1 percent stones; common fine (1 to 2 millimeter) calcium carbonate and silica coats on bottoms of rock fragments; noneffervescent to strongly effervescent; abrupt wavy boundary. (Combined thickness of the Bkqm horizons is 15 to 35 inches thick)" diff --git a/inst/extdata/OSD/A/ALCOVA.json b/inst/extdata/OSD/A/ALCOVA.json index 73bf198e6e..884e4e9afd 100644 --- a/inst/extdata/OSD/A/ALCOVA.json +++ b/inst/extdata/OSD/A/ALCOVA.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bk--25 to 60 inches; light brownish gray (10YR 6/2) very gravelly loam, grayish brown (10YR 5/2) moist; massive; hard, very friable, slightly sticky and nonplastic; strongly effervescent in part and slightly effervescent; lime occurs as common soft masses and as thin crusts on some rock fragments. Carbonates are erratic and discontinuous; 55 percent rounded pebbles and 3 percent small cobbles; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/A/ALDAPE.json b/inst/extdata/OSD/A/ALDAPE.json index c2b461d521..e182bb2fd9 100644 --- a/inst/extdata/OSD/A/ALDAPE.json +++ b/inst/extdata/OSD/A/ALDAPE.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "violently effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkq--47 to 53 inches; very pale brown (10YR 7/4) sandy loam, yellowish brown (10YR 5/4) moist; moderate fine subangular blocky structure; hard, friable, nonsticky and nonplastic; few very fine and fine roots; few very fine and fine tubular pores; 20 percent weakly cemented durinodes; violently effervescent, common fine and medium strongly effervescent masses and seams of segregated calcium carbonates; strongly alkaline (pH 8.6); abrupt wavy boundary. (6 to 24 inches thick)" diff --git a/inst/extdata/OSD/A/ALINE.json b/inst/extdata/OSD/A/ALINE.json index 5a68dbb5f0..bbf4640b05 100644 --- a/inst/extdata/OSD/A/ALINE.json +++ b/inst/extdata/OSD/A/ALINE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly acid", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent to strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "E--20 to 86 cm (8 to 34 in); light brown (7.5YR 6/4) fine sand; brown (7.5YR 5/4) moist; single grained; loose; many fine roots; slightly acid; slightly effervescent to strongly effervescent; clear wavy boundary. [Thickness of the E horizon is 0 to 91 cm ([8 to 36 in])" diff --git a/inst/extdata/OSD/A/ALIRE.json b/inst/extdata/OSD/A/ALIRE.json index a7a5b3391a..66caa9f5da 100644 --- a/inst/extdata/OSD/A/ALIRE.json +++ b/inst/extdata/OSD/A/ALIRE.json @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "BCqk--71 to 105 inches; light brown (7.5YR 6/4) gravelly sandy loam, strong brown (7.5YR 5/6) moist; weak very coarse subangular blocky structure; hard, friable, nonsticky and nonplastic; few very fine roots; common fine and many very fine irregularly shaped pores; matrix is partially cemented in spots by secondary silica; 30 percent gravel; noneffervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as few large and medium irregularly shaped coats on faces of peds; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/A/ALTASLOUGH.json b/inst/extdata/OSD/A/ALTASLOUGH.json index ee1b5530ed..30ccbe35bf 100644 --- a/inst/extdata/OSD/A/ALTASLOUGH.json +++ b/inst/extdata/OSD/A/ALTASLOUGH.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap2--13 to 24 inches; 70 percent dark gray (5Y 4/1) and 30 percent light olive gray (5Y 6/2) clay loam, 70 percent black (5Y 2/1) moist and 30 percent olive gray (5Y 5/2) moist; weak medium subangular blocky structure; very hard, extremely firm, moderately sticky and moderately plastic; common very fine and few fine and medium roots throughout; many very fine and fine and moderately few medium tubular and interstitial pores; slightly effervescent with disseminated carbonates in dark gray (5Y 4/1) matrix, and strongly effervescent with disseminated carbonates in dark gray (5Y 4/1) matrix, and segregated in light olive gray (5Y 6/2) matrix as few (1 percent), fine, irregular carbonate threads and as few (1 percent), medium, irregular hard carbonate concretions, that dissolve in acid, with accessory recent redoximorphic iron and manganese accumulations; electrical conductivity is 8.1 decisiemens per meter; sodium adsorption ratio is 9; moderately alkaline (pH 7.9); abrupt smooth boundary. (The combined thickness of the Ap1 and Ap2 horizons is 15 to 26 inches)" diff --git a/inst/extdata/OSD/A/ALTURAS.json b/inst/extdata/OSD/A/ALTURAS.json index ac13fd765b..ef367fb93d 100644 --- a/inst/extdata/OSD/A/ALTURAS.json +++ b/inst/extdata/OSD/A/ALTURAS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "soft effervescent", + "eff_class": "violently effervescent", "distinctness": "clear", "topography": "irregular", "narrative": "B3tca--30 to 42 inches; dark brown (10YR 4/3) heavy clay loam, dark brown (10YR 3/3) moist; massive; hard, very friable, sticky, plastic; few very fine roots; few very fine tubular and interstitial pores; many moderately thick clay films line pores and as bridges; violently effervescent, lime segregated in fine rounded soft effervescent, lime segregated in fine rounded soft bodies; moderately alkaline (pH 8.0); clear irregular boundary. (6 to 24 inches thick)" diff --git a/inst/extdata/OSD/A/APPIAN.json b/inst/extdata/OSD/A/APPIAN.json index 6545cc578c..cc06691c19 100644 --- a/inst/extdata/OSD/A/APPIAN.json +++ b/inst/extdata/OSD/A/APPIAN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btnk--8 to 28 cm; brown (7.5YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; moderate medium columnar structure; very hard, friable, moderately sticky and moderately plastic; common fine and few medium roots; few very fine tubular pores and common very fine and fine interstitial pores; many distinct clay films on faces of peds and lining pores; 5 percent gravel; common fine and medium filaments of secondary carbonate; noneffervescent in matrix and violently effervescent on filaments; very strongly alkaline (pH 9.4); abrupt smooth boundary. (13 to 30 cm thick)" diff --git a/inst/extdata/OSD/A/ATESH.json b/inst/extdata/OSD/A/ATESH.json index 868eac59c4..60b37ea75e 100644 --- a/inst/extdata/OSD/A/ATESH.json +++ b/inst/extdata/OSD/A/ATESH.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap7--36 to 43 inches; light yellowish brown (10YR 6/4) loamy coarse sand, dark yellowish brown (10YR 4/4) moist; massive; hard and firm; common very fine tubular pores; common moderately thick clay films in root channels and lining pores of displaced fragments of a natric horizon; 90 percent highly fractured (fractures 2 to 3.5 inches apart) remnant weakly silica cemented duripan material that has been mechanically fractured (ripper shank gouges occur at 2 foot intervals) and partially dissolved by farm chemicals and irrigation water; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates segregated as common fine filaments and soft masses; electrical conductivity 0.53 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.8); abrupt smooth boundary. (The combined thickness of the Ap horizons is 40 to 60 inches)." @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Btkqyb--49 to 58 inches; very pale brown (10YR 7/3) coarse sandy loam, dark yellowish brown (10YR 4/4) moist; massive; very hard, friable, slightly sticky and slightly plastic; many very fine tubular pores; 15 percent fine rounded durinodes that are hard and firm; common moderately thick clay films lining pores and few thin clay films bridging sand grains; few 1/4 to 1 1/2 inch pockets of gypsum; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates are segregated as common fine soft masses, seams and filaments; electrical conductivity 0.53 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.7); abrupt smooth boundary." @@ -296,7 +296,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Btkqb1--58 to 71 inches; pale brown (10YR 6/3) 80 percent weakly silica cemented sandy loam, dark yellowish brown (10YR 4/4) moist; massive; very hard, firm, slightly sticky and slightly plastic; many very fine and few fine tubular pores; few thin clay films lining pores and bridging sand grains; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates are segregated as common fine filaments; electrical conductivity 0.65 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.7); clear smooth boundary." @@ -319,7 +319,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Btkqb2--71 to 83 inches; very pale brown (10YR 7/3) sandy loam, dark yellowish brown (10YR 4/4) moist; massive; very hard, friable, slightly sticky and slightly plastic; many very fine and few fine tubular pores; 20 percent fine rounded durinodes that are hard and firm; few thin clay films bridging sand grains; slightly effervescent, carbonates are disseminated and strongly effervescent, carbonates are segregated as few fine filaments; electrical conductivity 0.79 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.7); clear smooth boundary. (The combined thickness of the 2Btkqyb and 2Btkqb horizons is 0 to 40 inches)." @@ -342,7 +342,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Btkb--83 to 92 inches; very pale brown (10YR 7/3) sandy loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; many very fine and few fine tubular pores; common thin clay films bridging sand grains; slightly effervescent, carbonates disseminated and strongly effervescent, segregated as few fine filaments; electrical conductivity 0.87 decisiemens per meter; sodium adsorption ratio is 5; strongly alkaline (pH 8.6); abrupt smooth boundary. (0 to 20 inches thick)." diff --git a/inst/extdata/OSD/A/AZURERIDGE.json b/inst/extdata/OSD/A/AZURERIDGE.json index 0b08ae2fbb..097e629c90 100644 --- a/inst/extdata/OSD/A/AZURERIDGE.json +++ b/inst/extdata/OSD/A/AZURERIDGE.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent to strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Crkq--14 inches; pale brown (10YR 6/3) weakly cemented to moderately cemented fanglomerate, brown (10YR 4/3) moist; does not slake in water; slightly effervescent to strongly effervescent; ." diff --git a/inst/extdata/OSD/B/BAGVAL.json b/inst/extdata/OSD/B/BAGVAL.json index 20b7eba6d4..f06275ce3d 100644 --- a/inst/extdata/OSD/B/BAGVAL.json +++ b/inst/extdata/OSD/B/BAGVAL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7, "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkss1--76 to 114 cm; brown (7.5YR 5/2) clay, dark brown (7.5YR 3/2) moist; strong coarse prismatic structure parting to strong medium and coarse angular blocky; very hard, very firm, very sticky and very plastic; common very fine through medium roots; few very fine tubular and interstitial pores; many (40 percent) intersecting slickensides bounding wedge-shaped peds; 1 to 2 cm wide vertical cracks; 10 percent gravel; secondary carbonates segregated as common fine and medium masses; noneffervescent matrix and strongly effervescent carbonate masses; neutral(pH 7.0); clear wavy boundary. (30 to 50 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btkss2--114 to 152 cm; brown (7.5YR 5/3) clay, dark brown (7.5YR 3/3) moist; strong medium prismatic structure parting to strong medium and coarse angular blocky; very hard, firm, very sticky and very plastic; few very fine and fine roots; few very fine tubular and interstitial pores; common intersecting slickensides bounding wedge-shaped peds; 10 percent gravel; secondary carbonates segregated as many fine and medium masses; noneffervescent matrix and strongly effervescent carbonate masses; slightly alkaline(pH 7.8)." diff --git a/inst/extdata/OSD/B/BAILCREEK.json b/inst/extdata/OSD/B/BAILCREEK.json index 0a4d845ac3..22ef50aada 100644 --- a/inst/extdata/OSD/B/BAILCREEK.json +++ b/inst/extdata/OSD/B/BAILCREEK.json @@ -227,7 +227,7 @@ "cf_class": "very cobbly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btk--43 to 60 inches; yellowish brown (10YR 5/4) very cobbly clay, brown (10YR 4/3) moist; moderate medium prismatic structure parting to moderate fine and medium angular blocky; very hard, very firm, moderately sticky and moderately plastic; common very fine and fine roots; many very fine and fine tubular pores; common distinct clay films lining pores and on faces of peds; 10 percent gravel and 35 percent cobbles; few lime coats on undersides of rock fragments and few fine masses and threads of lime; strongly effervescent in areas of lime and noneffervescent in matrix; slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/B/BANKSTON.json b/inst/extdata/OSD/B/BANKSTON.json index aff0f1e590..e8dcc3f898 100644 --- a/inst/extdata/OSD/B/BANKSTON.json +++ b/inst/extdata/OSD/B/BANKSTON.json @@ -112,7 +112,7 @@ "cf_class": "extremely cobbly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "Violently effervescent", + "eff_class": "violently effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bk1--3 to 14 inches; pink (7.5YR 7/4) extremely cobbly loam, brown (7.5YR 5/4) moist; moderate fine subangular blocky structure; soft, very friable; nonsticky and nonplastic; few very fine roots throughout; 15 percent clay; many prominent continuous carbonate coats on rock fragments; common medium rounded carbonate nodules throughout; violently effervescent throughout ( HCL, 1 normal); 45 percent angular limestone cobbles and 20 percent angular limestone gravel and 5 percent channers; clear smooth boundary. Violently effervescent; moderately alkaline; gradual smooth boundary (5 to 15 inches thick)." diff --git a/inst/extdata/OSD/B/BANSHEE.json b/inst/extdata/OSD/B/BANSHEE.json index 7281e5024d..50c2cdcf14 100644 --- a/inst/extdata/OSD/B/BANSHEE.json +++ b/inst/extdata/OSD/B/BANSHEE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bt--3 to 19 inches; very dark grayish brown (10YR 3/2) clay, very dark grayish brown (10YR 3/2) moist; strong medium prismatic parting to strong fine and medium angular blocky structure; hard, firm, very sticky and very plastic; common very fine and fine roots; few fine tubular pores; common distinct clay films on ped faces; common pressure faces; noneffervescent to slightly effervescent; slightly alkaline (pH 7.8); abrupt wavy boundary. (12 to 20 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent to strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--19 to 26 inches; grayish brown (10YR 5/2) clay, grayish brown (10YR 5/2) moist; moderate fine subangular blocky structure; soft, very friable, very sticky and very plastic; common fine and medium roots; common fine tubular pores; common distinct clay films on ped faces and rock fragments; many calcium carbonate coatings on ped faces and rock fragments; common calcium carbonate filaments; 5 percent gravel; slightly effervescent to strongly effervescent; slightly alkaline (pH 7.8); clear wavy boundary. (4 to 12 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bkyg--26 to 42 inches; light brownish gray (10YR 6/2) clay, light brownish gray (10YR 6/2) moist; strong medium subangular blocky structure; slightly hard, friable, very sticky and very plastic; few very fine roots; common medium tubular pores; common distinct organic coatings on ped faces; many fine soft calcium carbonate and gypsum masses; noneffervescent to slightly effervescent; slightly alkaline (pH 7.7); abrupt wavy boundary. (10 to 20 inches thick)" diff --git a/inst/extdata/OSD/B/BEEDE_LAKE.json b/inst/extdata/OSD/B/BEEDE_LAKE.json index c208a012ef..4779a6d101 100644 --- a/inst/extdata/OSD/B/BEEDE_LAKE.json +++ b/inst/extdata/OSD/B/BEEDE_LAKE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "violently effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3C--76 to 203 centimeters; stratified 45 percent reddish brown (2.5YR 4/4) silty clay, 30 percent reddish brown (5YR 4/3) silt loam, 20 percent brown (7.5YR 5/3) silt loam, and 5 percent red (10R 4/6) clay; massive parting to strong medium depositional plates; firm; few medium roots; violently effervescent (HCl, 1 normal)in the silt loam layers and none to slightly effervescent (HCl, 1 normal) in the silty clay and clay layers; moderately alkaline (pH 8.0, Hellige-Truog)." diff --git a/inst/extdata/OSD/B/BENIN.json b/inst/extdata/OSD/B/BENIN.json index c1be3c30be..7bdf0e8fdc 100644 --- a/inst/extdata/OSD/B/BENIN.json +++ b/inst/extdata/OSD/B/BENIN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Ck--20 to 58 cm; very pale brown (10YR 8/3) silty clay, pale brown (10YR 6/3) moist; strong medium angular blocky structure; extremely hard, extremely firm, moderately sticky and moderately plastic; common very fine and fine roots between peds; loose soil material between peds; common ostracod shells; 15 percent of the faces of peds are coated with very dark brown (10YR 2/2) manganese oxide masses which are relict redoximorphic features; 70 percent of the faces of peds are coated with pale yellow (2.5Y 8/2) masses of secondary carbonates; slightly effervescent matrix and violently effervescent masses; very strongly alkaline (pH 9.2); clear wavy boundary. (25 to 74 cm thick)" diff --git a/inst/extdata/OSD/B/BESSLEN.json b/inst/extdata/OSD/B/BESSLEN.json index 3b09ab0e73..0dad7a07d0 100644 --- a/inst/extdata/OSD/B/BESSLEN.json +++ b/inst/extdata/OSD/B/BESSLEN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "mildly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkq1--2 to 6 inches; pale brown (10YR 6/3) loam, brown (10YR 4/3) moist; weak very fine, fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; many very fine and common fine roots; common very fine tubular and common very fine and few fine irregular pores; 25 percent gravel-size pan fragments (half of which are indurated); strongly effervescent (20 percent calcium carbonate equivalent) with areas which are slightly effervescent; mildly alkaline (pH 7.8); clear smooth boundary. (0 to 5 inches thick)" diff --git a/inst/extdata/OSD/B/BIDDLEMAN.json b/inst/extdata/OSD/B/BIDDLEMAN.json index a461fe8ddb..c80dc29513 100644 --- a/inst/extdata/OSD/B/BIDDLEMAN.json +++ b/inst/extdata/OSD/B/BIDDLEMAN.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "2Bk--38 to 61cm; light gray (10YR 7/2) stratified very gravelly loamy coarse sand, sand, and gravel, grayish brown (10YR 5/2) moist; single grain; loose, loose, nonsticky and nonplastic; common very fine and fine, and few medium and coarse roots; many fine, medium, and coarse interstitial pores; 70 percent rounded gravel and 2 percent cobble; slightly effervescent matrix with violently effervescent carbonate coats on bottoms of gravel; strongly alkaline (pH 8.6); gradual wavy boundary. (15 to 30 cm thick)" diff --git a/inst/extdata/OSD/B/BLEUMONT.json b/inst/extdata/OSD/B/BLEUMONT.json index c383f11057..59c2e8143d 100644 --- a/inst/extdata/OSD/B/BLEUMONT.json +++ b/inst/extdata/OSD/B/BLEUMONT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk1--12 to 21 inches; variegated yellowish red (5YR 4/6) and yellowish red (5YR 5/6) and dark brown (10YR 3/3) sandy clay, yellowish red (5YR 4/6), strong brown (7.5YR 4/6) and dark brown (10YR 3/3), , and moist; strong coarse prismatic structure; hard, firm, sticky and plastic; few fine, medium and coarse roots; few very fine tubular pores; many distinct clay films in pores and on ped faces; few thin soft filaments of calcium carbonate; noneffervescent matrix and slightly effervescent concentrations; slightly alkaline (pH 7.8); abrupt wavy boundary. (8 to 12 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "very cobbly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btk2--21 to 34 inches; variegated yellowish red (5YR 4/6) and yellowish red (5YR 5/6), and very pale brown (10YR 8/3) very cobbly sandy clay, yellowish red (5YR 4/6) and reddish yellow (7.5YR 7/6) moist; moderate coarse subangular blocky structure; very hard, firm, sticky and plastic; few very fine roots; few very fine tubular pores; 25 percent gravel and 30 percent cobble, of which one-tenth are saprolite; common faint clay films on ped faces; common medium and coarse soft masses of calcium carbonate and many coatings under rock fragments; noneffervescent matrix with violently effervescent concentrations; slightly alkaline (pH 7.8); abrupt wavy boundary. (12 to 20 inches thick)" diff --git a/inst/extdata/OSD/B/BOBNBOB.json b/inst/extdata/OSD/B/BOBNBOB.json index feda795d73..f05515cb25 100644 --- a/inst/extdata/OSD/B/BOBNBOB.json +++ b/inst/extdata/OSD/B/BOBNBOB.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "matrix effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Ckqb--52 to 60 inches; very pale brown (10YR 7/3) sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; few fine interstitial pores; yellowish brown (10YR 5/6) mottles; common medium and fine very pale brown (10YR 8/2) lime masses; weakly lime cemented; 5 percent durinodes; matrix effervescent, lime masses violently effervescent; strongly alkaline; (pH 8.8)." diff --git a/inst/extdata/OSD/B/BOXCUT.json b/inst/extdata/OSD/B/BOXCUT.json index d1869314b8..bf3de7f8fc 100644 --- a/inst/extdata/OSD/B/BOXCUT.json +++ b/inst/extdata/OSD/B/BOXCUT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 centimeters; dark gray (10YR 4/1) loam, very dark brown (10YR 2/2) moist; moderate coarse and medium subangular blocky structure parting to moderate medium and fine subangular blocky structure; friable, moderately hard; slightly sticky and moderately plastic; common very fine and fine roots throughout; few very fine low-continuity tubular pores; the Ap horizon material is noneffervescent; neutral; 1 percent of the original Bk horizon (strongly effervescent) material mixed in Ap horizon; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--13 to 33 centimeters; dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; moderate coarse and medium subangular blocky structure parting to moderate medium and fine subangular blocky structure; friable, moderately hard; slightly sticky and moderately plastic; common very fine roots throughout; few very fine low-continuity tubular pores; the A horizon material is noneffervescent; neutral; 1 percent of the original Bk horizon (strongly effervescent) material mixed in A horizon; abrupt smooth boundary. (Ap and A horizon 23 to 38 centimeters thick)" diff --git a/inst/extdata/OSD/B/BRIDGEWELL.json b/inst/extdata/OSD/B/BRIDGEWELL.json index dd14753837..c48325dfe2 100644 --- a/inst/extdata/OSD/B/BRIDGEWELL.json +++ b/inst/extdata/OSD/B/BRIDGEWELL.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Ck2--127 to 152 cm; brown (10YR 5/3) ashy loam, very pale brown (10YR 8/2) dry; massive; slightly hard, friable, slightly sticky and slightly plastic; common very fine, common fine, and common medium roots; common very fine and few fine tubular pores; light gray (5Y 7/1) and light gray (N 7/0) zones of iron depletion near pores; slightly effervescent in matrix and strongly effervescent in secondary masses; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/B/BRISLAWN.json b/inst/extdata/OSD/B/BRISLAWN.json index 8ce4b082de..b747545667 100644 --- a/inst/extdata/OSD/B/BRISLAWN.json +++ b/inst/extdata/OSD/B/BRISLAWN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "variable effervescence", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3C--37 to 60 inches; fractured porcelanite with 8 percent interstices or voids filled with light brown (7.5YR 6/4) sandy loam, brown (7.5YR 5/4) moist; common distinct discontinuous light gray (10YR 7/2) carbonate coats on bottom surfaces of rock fragments; slightly effervescent, fine earth material has variable effervescence; 70 percent subangular porcelanite channers, 17 percent subangular flagstones and 5 percent subrounded stones; slightly alkaline." diff --git a/inst/extdata/OSD/B/BROCK.json b/inst/extdata/OSD/B/BROCK.json index b505c0e523..bd23f4df00 100644 --- a/inst/extdata/OSD/B/BROCK.json +++ b/inst/extdata/OSD/B/BROCK.json @@ -158,7 +158,7 @@ "cf_class": "extremely cobbly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk-- 23 to 36 cm; light gray (10YR 7/2) extremely cobbly sandy loam, brown (10YR 5/3) moist; weak fine and medium subangular blocky structure; slightly hard, very friable, slightly sticky, plastic; few very fine, fine and medium horizontal roots; common very fine and fine tubular pores; few thin clay films in pores; 35 percent gravel and 25 percent cobbles; slightly effervescent but strongly effervescent in soft filaments; strongly alkaline (pH 8.8); very abrupt boundary. (8 to 15 cm thick)" diff --git a/inst/extdata/OSD/B/BROPHY.json b/inst/extdata/OSD/B/BROPHY.json index 711a195153..856dd3d5ef 100644 --- a/inst/extdata/OSD/B/BROPHY.json +++ b/inst/extdata/OSD/B/BROPHY.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "strong effervescence", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "smooth", "narrative": "Oi--6 to 38 inches; dark brown (7.5YR 3/2 and 10YR 3/3) broken face; dark yellowish brown (10YR 3/4) rubbed and pressed; fibric material; about 80 percent fibers; 50 percent rubbed; massive; nonsticky; about 70 percent Hypnum moss fiber with some minor strata containing as little as 30 percent to as much as 90 percent Hypnum moss fiber, remainder are herbaceous; few minor more decomposed and less decomposed strata; few snail shells in parts; about 40 percent mineral material with some minor strata containing as little as 15 percent to as much as 50 percent; slight effervescence in parts to strong effervescence in other parts; neutral (pH 7.0 to 7.2 in 0.01 M CaCl2); clear smooth boundary." diff --git a/inst/extdata/OSD/B/BROYLES.json b/inst/extdata/OSD/B/BROYLES.json index f7e8609446..cb0b139bcb 100644 --- a/inst/extdata/OSD/B/BROYLES.json +++ b/inst/extdata/OSD/B/BROYLES.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--33 to 56 cm; very pale brown (10YR 7/3) ashy fine sandy loam, brown (10YR 4/3) moist; massive; hard, friable, nonsticky and nonplastic; many very fine and few fine roots; many very fine tubular and interstitial pores; slightly effervescent but strongly effervescent in spots; strongly alkaline (pH 9.0); clear wavy boundary. (0 to 30 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bqk1--56 to 112 cm; very pale brown (10YR 7/3) finely stratified paragravelly sandy loam and loamy sand, brown (10YR 4/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine and few fine roots; many very fine interstitial pores; 30 percent very hard, very firm and brittle durinodes; slightly effervescent but strongly effervescent in many coarse distinct very pale brown (10YR 7/3) threads of secondary calcium carbonate; strongly alkaline (pH 8.6); abrupt smooth boundary. (18 to 66 cm thick)" diff --git a/inst/extdata/OSD/B/BULLFOR.json b/inst/extdata/OSD/B/BULLFOR.json index 64f882cad1..ea1c12de6c 100644 --- a/inst/extdata/OSD/B/BULLFOR.json +++ b/inst/extdata/OSD/B/BULLFOR.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--1 to 24 inches; very pale brown (10YR 7/3) loamy sand, yellowish brown (10YR 5/4) moist; massive; soft, very friable, nonsticky and nonplastic; common fine, medium and coarse roots; common fine interstitial pores; 3 percent pebbles; slightly effervescent with strongly effervescent spots; moderately alkaline (pH 8.2); abrupt wavy boundary. (19 to 28 inches thick)" diff --git a/inst/extdata/OSD/C/CALGRO.json b/inst/extdata/OSD/C/CALGRO.json index 11ffd86618..98d93d6369 100644 --- a/inst/extdata/OSD/C/CALGRO.json +++ b/inst/extdata/OSD/C/CALGRO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Bqkm--25 to 33 inches; yellowish brown (10YR 5/4) slightly fractured indurated duripan with 1/16 to 1/8 inch thick silica laminae, dark brown (10YR 4/3) moist; massive; extremely hard and extremely firm; few very fine roots in fractures; few fine to very coarse tubular pores; fractures are 1/16 to 1/8 inch thick and are more than 4 inches apart; slightly effervescent matrix with 25 percent violently effervescent spots; 25 percent manganese coatings on pan surface 1/8 to 1/4 inches thick, dark grayish brown (10YR 4/2), and very dark brown (10YR 2/2) moist; clear wavy boundary. (4 to 35 inches thick)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Bqkm--53 to 60 inches; yellowish brown (10YR 5/4) slightly fractured indurated duripan, dark yellowish brown (10YR 3/4) moist; massive; extremely hard and extremely firm; 25 percent manganese coatings on ped faces 1/8 to 1/4 inches thick, dark grayish brown (10YR 4/2) and very dark brown (10YR 2/2) moist; slightly effervescent matrix with 35 percent violently effervescent pockets that are very pale brown (10YR 8/2)." diff --git a/inst/extdata/OSD/C/CALNAT.json b/inst/extdata/OSD/C/CALNAT.json index 6ee3609b77..6773c3792a 100644 --- a/inst/extdata/OSD/C/CALNAT.json +++ b/inst/extdata/OSD/C/CALNAT.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Cr--28 to 60 inches; pale yellow (2.5Y 8/2) soft tuffaceous siltstone, olive (5Y 5/4) moist; moderate and strong thin through thick platy rock structure; common very fine roots along faces of plates in upper 10 inches and few very fine roots along faces of plates below; noneffervescent in matrix but violently effervescent on faces of plates; few vertical cracks." diff --git a/inst/extdata/OSD/C/CARRI.json b/inst/extdata/OSD/C/CARRI.json index 8ce29a9996..7456483fa9 100644 --- a/inst/extdata/OSD/C/CARRI.json +++ b/inst/extdata/OSD/C/CARRI.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bt2--9 to 21 inches; strong brown (7.5YR 5/6) and yellowish red (5YR 5/6) sandy clay loam, strong brown (7.5YR 4/6) and yellowish red (5YR 4/6) moist; strong fine subangular blocky structure with discontinuous pockets of strong fine prismatic; very hard, friable, moderately sticky and moderately plastic; few very fine roots; many very fine tubular pores; common faint clay films on ped faces and lining pores; 5 percent gravel; noneffervescent with few areas of slightly effervescent; moderately alkaline (pH 8.0); clear wavy boundary. (8 to 15 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bt3--21 to 27 inches; yellowish brown (10YR 5/6) sandy clay loam, yellowish brown (10YR 5/6) moist; moderate medium subangular blocky structure; very hard, friable, moderately sticky and moderately plastic; few very fine roots along ped faces; many very fine tubular pores; few faint clay films on ped faces and lining pores that decrease with depth; 10 percent decomposing granite gravel; noneffervescent with few small areas that are slightly effervescent; moderately alkaline (pH 8.0); abrupt smooth boundary. (0 to 7 inches thick)" diff --git a/inst/extdata/OSD/C/CENTERVILLE.json b/inst/extdata/OSD/C/CENTERVILLE.json index f72d923e69..d7d5f31a75 100644 --- a/inst/extdata/OSD/C/CENTERVILLE.json +++ b/inst/extdata/OSD/C/CENTERVILLE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkss1--18 to 23 inches; brown (7.5YR 4/2) clay, dark brown (7.5YR 3/2) moist; few spots of reddish brown (5YR 5/4) moist; massive; very hard, firm, very sticky and very plastic; many very fine roots; many very fine pores; few dark grayish brown streaks from Ap horizon extends through this horizon; many intersecting slickensides; slightly effervescent in matrix and strongly effervescent in common soft carbonate masses; moderately alkaline (pH 8.0); clear smooth boundary. (3 to 5 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkss2--23 to 30 inches; brown (7.5YR 4/2) and reddish brown (5YR 5/4) clay dark brown (7.5YR 3/2) and reddish brown (5YR 4/4) moist; massive; very hard, firm, very sticky and very plastic; common very fine roots; many very fine pores; few dark grayish brown streaks from Ap horizon extends through this horizon; many intersecting slickensides; slightly effervescent in the matrix and strongly effervescent in the common soft carbonate masses; moderately alkaline (pH 8.2); clear smooth boundary. (5 to 8 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--30 to 37 inches; reddish brown (5YR 5/4) sandy clay, brown (7.5YR 4/4) moist; massive; very hard, firm, sticky and very plastic; common very fine roots; many very fine pores; few dark grayish brown streaks (1/4 to 2.5 cm wide) from Ap horizon extends 4 inches into this horizon; strongly effervescent in matrix and violently effervescent in common soft carbonate masses (1 to 5 cm); moderately alkaline (pH 8.2); clear wavy boundary. (5 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Btkd--37 to 54 inches; brown (7.5YR 5/4) sandy clay loam, dark brown (7.5YR 4/4) moist; massive; hard, firm, sticky and plastic; many fine tubular pores; common thin clay films bridging sand grains and lining pores; strongly effervescent, carbonates disseminated and violently effervescent, carbonates segregated as common fine irregular masses; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/C/CHANCELAKES.json b/inst/extdata/OSD/C/CHANCELAKES.json index 4907d75d8f..1e1696ba93 100644 --- a/inst/extdata/OSD/C/CHANCELAKES.json +++ b/inst/extdata/OSD/C/CHANCELAKES.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "B'tk--147 to 160 cm; dark grayish brown (10YR 4/2) with very dark brown (10YR 2/2) ashy sandy clay loam, light brownish gray (10YR 6/2) with dark grayish brown (10YR 4/2) dry; strong medium platy structure parting to moderate medium subangular blocky; slightly hard, very friable, moderately sticky and moderately plastic; few very fine roots; common very fine and few fine tubular pores; common prominent clay films on faces of peds; few medium prominent light yellowish brown (2.5Y 6/4) masses of iron accumulation throughout; secondary carbonates segregated as few fine coats on faces of peds; noneffervescent matrix and strongly effervescent coats; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/C/CHAPPUIS.json b/inst/extdata/OSD/C/CHAPPUIS.json index 9e9e0f6dcd..64a6c0d9eb 100644 --- a/inst/extdata/OSD/C/CHAPPUIS.json +++ b/inst/extdata/OSD/C/CHAPPUIS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btnk1--10 to 13 inches; brown (10YR 5/3) silty clay, dark brown (10YR 3/3) moist; strong medium columnar structure parting to strong fine angular blocky; very hard, friable, moderately sticky and moderately plastic; common very fine roots; many very fine tubular pores; common faint clay films on faces of peds; noneffervescent within peds and strongly effervescent on masses; secondary carbonates segregated in masses on faces of peds; SAR is 28; EC is 1 mmhos/cm; moderately alkaline (pH 8.2); clear smooth boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btnk2--13 to 19 inches; brown (10YR 5/3) silty clay, dark yellowish brown (10YR 3/4) moist; strong fine angular blocky structure; very hard, friable, moderately sticky and moderately plastic; common very fine roots; many very fine tubular pores; common faint clay films on faces of peds; noneffervescent within peds and strongly effervescent on masses; secondary carbonates segregated in masses on faces of peds; SAR is 46; EC is 3 mmhos/cm; moderately alkaline (pH 8.2); clear smooth boundary. (Combined thickness of the Btnk horizons is 8 to 18 inches)" diff --git a/inst/extdata/OSD/C/CHUCKAWALLA.json b/inst/extdata/OSD/C/CHUCKAWALLA.json index 6a8a5b6f1f..f0d5a5b577 100644 --- a/inst/extdata/OSD/C/CHUCKAWALLA.json +++ b/inst/extdata/OSD/C/CHUCKAWALLA.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "E--0 to 1.375 inches; pale brown (10YR 6/3) silt loam, brown (10YR 5/3) moist; weak thick platy structure; soft, very friable, slightly sticky and slightly plastic; many very fine and medium vesicular pores; slightly effervescent on tops of plates strongly effervescent on sides and bottoms; moderately alkaline (pH 8.2); abrupt wavy boundary (1/4 to 1 1/2 inches thick)" diff --git a/inst/extdata/OSD/C/CITIVAR.json b/inst/extdata/OSD/C/CITIVAR.json index e9618f5904..c0b8c1de2a 100644 --- a/inst/extdata/OSD/C/CITIVAR.json +++ b/inst/extdata/OSD/C/CITIVAR.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "irregular", "narrative": "2C--74 to 142 cm; reddish brown (2.5YR 5/4), red (2.5YR 5/6) and light red (2.5YR 6/6) moderately to very strongly cemented silty shale; common to many fine and very fine roots are matted on top of the horizon and few fine and very fine roots occur between fractures; less than 5 percent silt loam and silty clay loam material between fragments; distance between fractures is about 2 to 10 centimeters in the upper part of the horizon and greater than 10 centimeters in the lower part; strongly effervescent in the upper part and slightly effervescent in the lower part; moderately alkaline; gradual irregular boundary. (46 to 78 cm thick)" diff --git a/inst/extdata/OSD/C/CLURO.json b/inst/extdata/OSD/C/CLURO.json index 63bf86a74b..61b5cead8b 100644 --- a/inst/extdata/OSD/C/CLURO.json +++ b/inst/extdata/OSD/C/CLURO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.3, "pH_class": "neutral", - "eff_class": "but effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "BC--30 to 43 cm; light brownish gray (10YR 6/2) loam, very dark grayish brown (10YR 3/2) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; many very fine, and few fine and medium roots; few very fine and fine tubular pores; common fine and medium distinct dark brown (7.5YR 3/2) masses of iron accumulation; noneffervescent matrix but effervescent in spots; neutral (pH 7.3); clear smooth boundary. (8 to 38 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Aqkb--43 to 61 cm; dark grayish brown (10YR 4/2), silty clay loam, very dark grayish brown (10YR 3/2) moist; weak medium prismatic structure; hard, friable, moderately sticky and moderately plastic; many very fine, and few fine roots; common very fine, and few fine tubular pores; few medium faint dark brown (7.5YR 3/2) and very dark brown (7.5YR 2.5/2) masses of iron and manganese accumulation; 30 percent durinodes; secondary carbonates segregated as few fine white (10YR 8/1) masses; slightly effervescent matrix with strongly effervescent carbonates masses; slightly alkaline. (pH 7.5); abrupt wavy boundary. (0 to 25 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "3C1qk--61 to 97 cm; pale brown (10YR 6/3) very fine sandy loam, brown (10YR 4/3) moist; massive; slightly hard, friable, nonsticky and slightly plastic; few very fine roots; many very fine and few fine tubular pores; few fine prominent yellowish brown (10YR 5/6) and common fine and medium faint dark brown (7.5YR 3/2) masses of iron accumulation; 70 percent durinodes; secondary carbonates segregated as few fine white (10YR 8/1) masses; noneffervescent matrix with strongly effervescent carbonates masses; slightly alkaline (pH 7.7); gradual smooth boundary. (25 to 50 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "3C2qk--97 to 152 cm; pale brown (10YR 6/3) very fine sandy loam, brown (10YR 4/3) moist; massive; slightly hard, friable, nonsticky and slightly plastic; few fine and very fine roots; many very fine tubular pores; few fine prominent strong brown (7.5YR 5/8) and common medium and coarse faint very dark grayish brown (10YR 3/2) and very dark brown (10YR 2/2) masses of iron accumulation; 40 percent durinodes; secondary carbonates segregated as few fine distinct pinkish white (7.5YR 8/2) masses; noneffervescent matrix with strongly effervescent carbonate masses; slightly alkaline (pH 7.7)." diff --git a/inst/extdata/OSD/C/COE.json b/inst/extdata/OSD/C/COE.json index 9788fb85b8..3ec0f08c41 100644 --- a/inst/extdata/OSD/C/COE.json +++ b/inst/extdata/OSD/C/COE.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slight effervescence", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--16 to 60 inches; light gray (2.5Y 7/2) very gravelly coarse sand, dark gray and dark grayish brown (N 4/0 and 2.5Y 4/2) moist; single grained; nonsticky and nonplastic; some evidence of stratification; about 45 percent gravel; about 85 percent shale in the 0.1 to 76 mm fraction; strong effervescence in the upper part and slight effervescence below 30 inches; moderately alkaline." diff --git a/inst/extdata/OSD/C/COLDENT.json b/inst/extdata/OSD/C/COLDENT.json index 2c2a0e7209..4afa8c2e77 100644 --- a/inst/extdata/OSD/C/COLDENT.json +++ b/inst/extdata/OSD/C/COLDENT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Bqk2--33 to 38 cm; very pale brown (10YR 7/3) fine sandy loam, brown (10YR 5/3) moist; strong medium platy structure; hard, firm and brittle, slightly sticky and nonplastic; common very fine and few fine horizontally oriented roots between plates; many very fine tubular pores; 5 percent gravel; many silica coats and laminae on faces of peds; secondary carbonates segregated as common fine coats on faces of peds; slightly effervescent matrix and strongly effervescent coats; strongly alkaline (pH 9.0); clear smooth boundary. (5 to 20 cm thick)" @@ -250,7 +250,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "4BCk--102 to 152 cm; very pale brown (10YR 7/3) very gravelly coarse sand, dark grayish brown (10YR 4/2) moist; single grain; loose, nonsticky and nonplastic; few very fine roots; many fine interstitial pores; 55 percent gravel; secondary carbonates segregated as few coats and filaments on rock fragments; noneffervescent matrix and strongly effervescent coats and filaments; moderately alkaline. (pH 8.4)" diff --git a/inst/extdata/OSD/C/COLVIN.json b/inst/extdata/OSD/C/COLVIN.json index c6856ed2d0..36c010fedb 100644 --- a/inst/extdata/OSD/C/COLVIN.json +++ b/inst/extdata/OSD/C/COLVIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slight effervescence", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg--30 to 60 inches; olive gray (5Y 5/2) silty clay loam, light gray (5Y 7/2) dry; many coarse prominent yellowish brown (10YR 5/8) and few medium prominent yellowish red (5YR 5/6) redoximorphic concentrations; massive; hard, friable, sticky and plastic; strong effervescence in upper part, gradually decreases to slight effervescence at 50 inches; moderately alkaline." diff --git a/inst/extdata/OSD/C/CONTINENTAL.json b/inst/extdata/OSD/C/CONTINENTAL.json index 5f17c4fb6c..ade9b5a143 100644 --- a/inst/extdata/OSD/C/CONTINENTAL.json +++ b/inst/extdata/OSD/C/CONTINENTAL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bt3--15 to 21 inches, brown (7.5YR 5/4) clay, brown (7.5YR 4/4) moist; weak fine prismatic structure parting to moderate medium subangular blocky; very hard, firm, moderately sticky and moderately plastic; common faint clay films on faces of peds and lining pores; noneffervescent to slightly effervescent; moderately alkaline (pH 8.0); gradual wavy boundary. (6 to 12 inches thick)" diff --git a/inst/extdata/OSD/C/COVINGTON.json b/inst/extdata/OSD/C/COVINGTON.json index 11bb58c6e2..d406df8ba8 100644 --- a/inst/extdata/OSD/C/COVINGTON.json +++ b/inst/extdata/OSD/C/COVINGTON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "strong effervescence", + "eff_class": "violent effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cg -- 33 to 65 inches; dark gray (N4/0) clay; moderate medium prismatic structure parting to strong fine, medium, and coarse angular blocky; very firm, very plastic, very sticky; few roots; few fine black patches on peds; few pale brown (10YR 6/3) nodules all of which do not effervesce with cold dilute hydrochloric acid; violent effervescence on faces of peds, and strong effervescence in ped interiors; many coarse prominent olive brown (2.5Y 4/4) masses of iron accumulation; slightly alkaline." diff --git a/inst/extdata/OSD/C/CREDO.json b/inst/extdata/OSD/C/CREDO.json index 23fb1517b2..3c418eea54 100644 --- a/inst/extdata/OSD/C/CREDO.json +++ b/inst/extdata/OSD/C/CREDO.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Btqk--61 to 86 cm; pale brown (10YR 6/3) gravelly sandy clay loam; brown (10YR 4/3) moist; massive; hard, friable, moderately sticky and moderately plastic; few very fine roots; common very fine tubular pores; many faint clay films in pores and bridging mineral grains; 30 percent gravel and cobbles; very thin silica and carbonate coats on underside of gravel; noneffervescent matrix but strongly effervescent under coarse fragments; moderately alkaline (pH 8.2); clear wavy boundary. (20 to 30 cm thick)" diff --git a/inst/extdata/OSD/C/CRYSTALGYP.json b/inst/extdata/OSD/C/CRYSTALGYP.json index 7dc19aceba..233c6c4ae3 100644 --- a/inst/extdata/OSD/C/CRYSTALGYP.json +++ b/inst/extdata/OSD/C/CRYSTALGYP.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--0 to 1 inch; gray (10YR 5/1) cryptogams, brown (10YR 5/3) moist; very pale brown (10YR 7/3) sandy loam, light yellowish brown (10YR 6/4) moist; weak thin platy structure under the lichens; soft, very friable, nonsticky and nonplastic; many very fine roots; many fine vesicular pores; many fine gypsum crystals throughout; noneffervescent to slightly effervescent in spots, 7 percent calcium carbonate equivalent; moderately alkaline (pH 8.0); clear smooth boundary. (1 to 2 inches thick)" @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "By--1 to 10 inches; very pale brown (10YR 7/4) sandy loam, light yellowish brown (10YR 6/4) moist; weak fine granular structure; soft, very friable, nonsticky and nonplastic; many very fine and fine and few medium roots; few fine tubular pores; many very fine and fine gypsum crystals throughout; noneffervescent to slightly effervescent in spots; moderately alkaline (pH 8.0); abrupt smooth boundary. (5 to 10 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cy1--10 to 17 inches; brown (7.5YR 5/4) loam, brown (7.5YR 5/4) moist; massive; hard, friable, slightly sticky and plastic; common fine roots; few fine tubular pores; common fine gypsum filaments; common fine and medium soft and hard gypsum masses; many very fine and fine crystalline gypsum clusters, weakly cemented together between seams; noneffervescent to slightly effervescent in spots; moderately alkaline (pH 8.0); abrupt wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Cy2-- 17 to 30 inches; brown (7.5YR 5/3) loam, brown (7.5YR 4/4) moist; massive; hard, friable, sticky and plastic; common fine roots matted between seams; few fine tubular pores; common fine gypsum filaments; common fine and medium soft and hard gypsum masses; many very fine and fine crystalline gypsum clusters, weakly cemented between seams; noneffervescent to slightly effervescent in spots; moderately alkaline (pH 8.0); abrupt smooth boundary. (Combined thickness of the Cy horizons is 15 to 25 inches)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--30 to 60 inches; brown (7.5YR 5/4) weathered gypsiferous sandstone, brown (7.5YR 5/4) moist; noneffervescent to slightly effervescent in spots." diff --git a/inst/extdata/OSD/C/CUPVAR.json b/inst/extdata/OSD/C/CUPVAR.json index ad78fa3bca..ad2095aec6 100644 --- a/inst/extdata/OSD/C/CUPVAR.json +++ b/inst/extdata/OSD/C/CUPVAR.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "violently effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bkqm--21 to 25 inches; light yellowish brown (10YR 6/4) strongly cemented duripan, dark brown (10YR 3/3) moist; strong medium platy structure with thin continuous laminar capping 1/4 inch thick; extremely hard, very firm and brittle; many very fine tubular pores; violently effervescent with lime and silica segregated in filaments and slightly effervescent matrix; moderately alkaline (pH 8.4); abrupt smooth boundary. (3 to 10 inches thick)" diff --git a/inst/extdata/OSD/D/DAISY.json b/inst/extdata/OSD/D/DAISY.json index 2db9024acc..72da2edc5f 100644 --- a/inst/extdata/OSD/D/DAISY.json +++ b/inst/extdata/OSD/D/DAISY.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "C -- 4 to 41 centimeters; light yellowish brown (10YR 6/4) stratified very gravelly and gravelly coarse sand, yellowish brown (10YR 5/4) moist; massive parting to weak moderate subangular blocky structure; soft, very friable, nonsticky and nonplastic; common very fine, fine and medium roots; common very fine tubular pores; noneffervescent to strongly effervescent; less than 1 percent calcium carbonate equivalent; 25 to 40 percent gravel; moderately alkaline (pH 8.0); clear smooth boundary (19 to 63 centimeters thick)." diff --git a/inst/extdata/OSD/D/DANGBERG.json b/inst/extdata/OSD/D/DANGBERG.json index 383022376c..833e0e7de9 100644 --- a/inst/extdata/OSD/D/DANGBERG.json +++ b/inst/extdata/OSD/D/DANGBERG.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btkn1--8 to 38 cm; light brownish gray (10YR 6/2) clay, dark grayish brown (2.5Y 4/2) moist; weak very coarse prismatic structure; very hard, friable, very sticky and very plastic; many very fine and few fine roots; few very fine tubular and many very fine interstitial pores; many faint clay films on faces of peds, lining pores, and bridging mineral grains; slightly effervescent; secondary carbonates segregated as common fine strongly effervescent masses; strongly alkaline (pH 8.8); abrupt wavy boundary. (20 to 38 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Btkn2--38 to 63 cm; light brownish gray (10YR 6/2) sandy clay, dark brown (10YR 3/3) moist; massive; very hard, friable, very sticky and very plastic; few very fine roots; few very fine tubular and many very fine interstitial pores; few fine and medium prominent dark brown (7.5YR 3/2) masses of iron and manganese accumulation, dark brown (7.5YR 3/2) moist; few faint clay films lining pores and common distinct clay films on faces of peds; slightly effervescent; secondary carbonates segregated as common fine and medium violently effervescent masses; strongly alkaline (pH 8.7); gradual wavy boundary. (18 to 33 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bqkm--63 to 109 cm; light brownish gray (10YR 6/2) cemented material, dark brown (10YR 3/3) moist; weak medium and thick platy structure; very hard, very firm, brittle; strongly cemented by opaline silica; few fine horizontal roots between plates; many fine interstitial pores; common medium prominent dark brown (7.5YR 3/3) masses of iron and manganese accumulation, dark brown (7.5YR 3/2) moist; slightly effervescent; secondary carbonates segregated as common fine, medium, and coarse violently effervescent masses and a few fine nodules; moderately alkaline (pH 8.4); abrupt smooth boundary. (38 to 70 cm thick)" diff --git a/inst/extdata/OSD/D/DEFLER.json b/inst/extdata/OSD/D/DEFLER.json index a033974232..0467071ae7 100644 --- a/inst/extdata/OSD/D/DEFLER.json +++ b/inst/extdata/OSD/D/DEFLER.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "slight effervescence", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "B'k2--86 to 97 cm; pale brown (10YR 6/3) very gravelly sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; common very fine and fine roots; few fine tubular pores; 45 percent gravel; noneffervescent matrix with slight effervescence in common fine carbonate filaments; slightly alkaline (pH 7.8); clear wavy boundary. (0 to 43 cm thick)" diff --git a/inst/extdata/OSD/D/DEVOIGNES.json b/inst/extdata/OSD/D/DEVOIGNES.json index 5e3feae3d3..440abbd93f 100644 --- a/inst/extdata/OSD/D/DEVOIGNES.json +++ b/inst/extdata/OSD/D/DEVOIGNES.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cg3--41 to 65 inches; light gray (5Y 7/1) stratified silty clay loam and silty clay, gray (5Y 5/1) moist; massive; very hard, firm, moderately sticky and moderately plastic; many fine tubular pores; common faint and prominent fine and coarse light olive brown (2.5Y 5/4) and reddish brown (5YR 4/4) moist masses of iron accumulation; noneffervescent (calcium carbonate) in upper part and strongly effervescent (calcium carbonate) in lower part; slightly alkaline (pH 7.5)." diff --git a/inst/extdata/OSD/D/DOBEL.json b/inst/extdata/OSD/D/DOBEL.json index a6e95ccd21..602a5c6063 100644 --- a/inst/extdata/OSD/D/DOBEL.json +++ b/inst/extdata/OSD/D/DOBEL.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--11 to 20 cm; brown (7.5YR 5/4) gravelly sandy clay loam, dark yellowish brown (10YR 4/4) moist moderate medium prismatic structure; hard, very friable, moderately sticky and moderately plastic; many very fine and fine roots; many very fine and few fine pores; few faint clay films on faces of peds and common faint clay films lining pores and coating sand grains; 25 percent gravel; noneffervescent matrix but strongly effervescent carbonate coats on bottoms of rock fragments and faces of peds; strongly alkaline (pH 8.8); clear smooth boundary. (8 to 13 cm thick)" diff --git a/inst/extdata/OSD/D/DONDIEGO.json b/inst/extdata/OSD/D/DONDIEGO.json index 663f15dcb0..e04cc7f0f1 100644 --- a/inst/extdata/OSD/D/DONDIEGO.json +++ b/inst/extdata/OSD/D/DONDIEGO.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "very slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk2--37 to 51 inches; brown (7.5YR 4/2) loam, dark brown (7.5YR 3/2) moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; slightly hard, friable, slightly sticky and slightly plastic; few medium, few fine, and common very fine roots; common fine and common very fine tubular pores; few faint clay films on faces of peds and lining pores; 10 percent gravel; noneffervescent in spots to very slightly effervescent elsewhere, secondary calcium carbonate segregated as few fine irregularly shaped coats on faces of peds and on rock fragments; moderately alkaline (pH 8.4); clear wavy boundary. (9 to 16 inches thick)" diff --git a/inst/extdata/OSD/D/DONNA.json b/inst/extdata/OSD/D/DONNA.json index 0abfcef130..e28a9fe566 100644 --- a/inst/extdata/OSD/D/DONNA.json +++ b/inst/extdata/OSD/D/DONNA.json @@ -296,7 +296,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Btb--129 to 147 cm; light yellowish brown (10YR 6/4) extremely gravelly sandy clay loam, yellowish brown (10YR 5/4) moist; massive; hard, firm, very sticky and moderately plastic; few very fine tubular and many very fine interstitial pores; few medium soft carbonate segregations; 40 percent gravel, 20 percent cobbles; common distinct clay films in tubular pores and common distinct clay bridges between sand grains; few very fine tubular and interstitial pores; noneffervescent matrix but violently effervescent in spots; moderately alkaline (pH 8.2); clear wavy boundary. (0 to 25 cm thick)" @@ -319,7 +319,7 @@ "cf_class": "extremely gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bk--147 to 173 cm; pale brown (10YR 6/3) extremely gravelly sandy clay loam, brown (10YR 5/3) moist; massive; slightly hard, friable, moderately sticky and moderately plastic; many very fine, common fine and few medium interstitial pores; 45 percent gravel, 30 percent cobbles; common medium soft seams of carbonates; very few distinct clay bridges between sand grains; noneffervescent matrix but violently effervescent in seams; slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/D/DRYGYP.json b/inst/extdata/OSD/D/DRYGYP.json index 90bcd5b23e..2d5c3e32da 100644 --- a/inst/extdata/OSD/D/DRYGYP.json +++ b/inst/extdata/OSD/D/DRYGYP.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bym2--13 to 65 inches; pink (7.5YR 7/3) very weakly and weakly cemented petrogypsic horizon, brown (7.5YR 5/4) moist; massive; moderately hard and hard, firm and very firm, brittle; secondary gypsum segregated throughout matrix as many clusters of crystals; slightly effervescent and strongly effervescent; slightly alkaline (pH 7.6). (Combined thickness of the 2Bym horizons is 50 to 56 inches.)" diff --git a/inst/extdata/OSD/E/EAST_FORK.json b/inst/extdata/OSD/E/EAST_FORK.json index daaa200444..67bd217190 100644 --- a/inst/extdata/OSD/E/EAST_FORK.json +++ b/inst/extdata/OSD/E/EAST_FORK.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "ABk--15 to 36 cm; grayish brown (10YR 5/2) loam, very dark grayish brown (10YR 3/2) moist; moderate medium and fine granular structure; slightly hard, friable, moderately sticky and moderately plastic; many very fine, many fine, and common medium roots; common fine, common medium, and few coarse tubular pores; common earthworm casts; secondary carbonates segregated in few fine light gray (10YR 7/2) masses; noneffervescent in matrix and slightly effervescent on masses; moderately alkaline (pH 8.3); clear wavy boundary. (15 to 25 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--36 to 69 cm; grayish brown (10YR 5/2) clay loam, dark grayish brown (10YR 4/2) moist; weak medium and fine subangular blocky structure; slightly hard, friable, moderately sticky and moderately plastic; common fine and medium roots; common fine and medium tubular pores; secondary carbonates segregated in common fine light gray (10YR 7/2) masses; noneffervescent in matrix and slightly effervescent on masses; few fine faint dark brown (7.5YR 3/2) moist masses of iron accumulation; strongly alkaline (pH 9.0); clear wavy boundary. (25 to 38 cm thick)" diff --git a/inst/extdata/OSD/E/EDALPH.json b/inst/extdata/OSD/E/EDALPH.json index 937d5b602f..12a41bfab4 100644 --- a/inst/extdata/OSD/E/EDALPH.json +++ b/inst/extdata/OSD/E/EDALPH.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "very slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--4 to 32 inches; light yellowish brown (10YR 6/4) gravelly loamy coarse sand, yellowish brown (10YR 5/4) moist; massive; moderately hard, very friable, nonsticky and nonplastic; common very fine, fine and few medium roots; few very fine to medium interstitial pores; 20 percent discontinuous distinct clay films on sand grains; 10 percent secondary bands of lime; 20 percent gravel; noneffervescent to very slightly effervescent; strongly alkaline (pH 8.6); clear wavy boundary. (15 to 30 inches thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "very slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btk2--32 to 60 inches; light yellowish brown (10YR 6/4) coarse sand, yellowish brown (10YR 5/4) moist; massive; moderately hard, very friable, nonsticky and nonplastic; few very fine roots; few very fine and fine interstitial pores; 5 percent patchy faint clay films on sand grains; 5 percent secondary bands of lime; 5 percent gravel; noneffervescent to very slightly effervescent; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/E/ELEVATOR.json b/inst/extdata/OSD/E/ELEVATOR.json index eb7d5f2c9f..48e9a4d317 100644 --- a/inst/extdata/OSD/E/ELEVATOR.json +++ b/inst/extdata/OSD/E/ELEVATOR.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btk--27 to 32 inches; pale brown (10YR 6/3) silty clay loam, brown (10YR 5/3) moist; moderate fine subangular blocky structure; very hard, very firm, moderately sticky and very plastic; few very fine roots; common very fine irregular pores; few fine prominent red (2.5YR 5/6) irregularly shaped relict masses of iron accumulation; many distinct clay films on faces of peds and lining pores; secondary carbonates segregated as common fine and medium masses; noneffervescent to slightly effervescent; moderately alkaline (pH 8.0); abrupt smooth boundary. (6 to 12 inches thick)" diff --git a/inst/extdata/OSD/E/ELFKIN.json b/inst/extdata/OSD/E/ELFKIN.json index 261f736b83..04eba700a3 100644 --- a/inst/extdata/OSD/E/ELFKIN.json +++ b/inst/extdata/OSD/E/ELFKIN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--38 to 58 cm; yellowish brown (10YR 5/4) silt loam, dark yellowish brown (10YR 3/4) moist; moderate very fine to coarse subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine roots; common very fine, few fine tubular pores, common very fine interstitial pores; slightly effervescent matrix with violently effervescent masses and threads of calcium carbonates; slightly alkaline (pH 7.4); clear wavy boundary." diff --git a/inst/extdata/OSD/F/FAIRYDELL.json b/inst/extdata/OSD/F/FAIRYDELL.json index e1b0212646..682044fde6 100644 --- a/inst/extdata/OSD/F/FAIRYDELL.json +++ b/inst/extdata/OSD/F/FAIRYDELL.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Bw--15 to 30 cm; light yellowish brown (10YR 6/4) gravelly loam brown (10YR 4/3) moist; dark grayish brown (10YR 4/2) organic stains; moderate medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common medium and fine, and many very fine roots; common fine, and many very fine tubular pores; 25 percent cobbles and gravel; slightly effervescence except near and beneath limestone gravel and cobble where it is strongly effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (10 to 40 cm thick)" diff --git a/inst/extdata/OSD/F/FALLON.json b/inst/extdata/OSD/F/FALLON.json index 25e1e44669..cfe5b95e35 100644 --- a/inst/extdata/OSD/F/FALLON.json +++ b/inst/extdata/OSD/F/FALLON.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Ck1--36 to 46 cm; light brownish gray (10YR 6/2) sandy loam, dark grayish brown (10YR 4/2) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine, and few fine roots; many very fine interstitial and common fine and very fine tubular pores; secondary carbonates segregated as common very fine light gray (10YR 7/2) masses; noneffervescent matrix and strongly effervescent masses; few fine prominent strong brown (7.5YR 5/6), common fine faint dark brown (7.5YR 3/2), and common fine distinct dark reddish brown (5YR 3/2) moist masses of iron accumulation; slightly alkaline (pH 7.4); clear wavy boundary. (8 to 15 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck2--46 to 61 cm; light brownish gray (10YR 6/2) sandy loam, dark grayish brown (10YR 4/2) moist; massive; hard, friable, slightly sticky and slightly plastic; common very fine roots; common very fine, and few fine tubular, and many very fine interstitial pores; secondary carbonates segregated as common fine light gray (10YR 7/2) filaments; slightly effervescent matrix and strongly effervescent threads; many fine distinct dark reddish brown (5YR 3/2) and few fine prominent strong brown (7.5YR 5/6) moist masses of iron accumulation; slightly alkaline (pH 7.6); abrupt wavy boundary. (15 to 41 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck3--81 to 122 cm; light gray (10YR 7/2) gravelly coarse sand, grayish brown (10YR 5/2) moist; single grain; loose, nonsticky and nonplastic; few very fine roots; many very fine and fine interstitial pores; secondary carbonates segregated as few fine and medium light gray (10YR 7/2) masses; noneffervescent matrix and strongly effervescent masses; slightly alkaline (pH 7.4); abrupt wavy boundary. (18 to 51 cm thick)" diff --git a/inst/extdata/OSD/F/FIESTA.json b/inst/extdata/OSD/F/FIESTA.json index 736931458a..140be5251b 100644 --- a/inst/extdata/OSD/F/FIESTA.json +++ b/inst/extdata/OSD/F/FIESTA.json @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1--51 to 64 inches; brown (7.5YR 5/4) gravelly sandy clay loam, brown (7.5YR 4/3) moist; weak coarse parting to moderate fine subangular blocky structure; slightly hard, friable, slightly sticky and slightly plastic; few fine and few very fine roots; common fine and few very fine tubular pores; few faint clay films on faces of peds; 20 percent gravel; noneffervescent to slightly effervescent, secondary calcium carbonate segregated as very few fine irregularly shaped coats on faces of peds (2 percent calcium carbonate equivalent); strongly alkaline (pH 8.6); clear wavy boundary. (0 to 15 inches thick)" diff --git a/inst/extdata/OSD/F/FLAMEN.json b/inst/extdata/OSD/F/FLAMEN.json index 55f8408c7e..6d1172a480 100644 --- a/inst/extdata/OSD/F/FLAMEN.json +++ b/inst/extdata/OSD/F/FLAMEN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkq--28 to 43 inches; mixed matrix 50 percent light brown (7.5YR 6/4) loam between furrows from ripper and 50 percent pinkish gray (7.5YR 6/2) loam within furrows from ripper, brown 7.5YR 4/4 and brown 7.5YR 4/2) moist respectively; moderate medium and coarse subangular blocky structure; very hard, friable, sticky and plastic; few very fine and fine roots; common very fine tubular pores; few thin clay films lining pores and on ped faces; 10 percent coarse subangular strongly cemented fragments of a duripan displaced by mechanical ripping from the underlying horizon; slightly effervescent, carbonates disseminated and strongly effervescent, carbonates segregated as common fine filaments; slightly alkaline (pH 7.4); clear wavy boundary. (6 to 20 inches thick)" diff --git a/inst/extdata/OSD/F/FORTSAGE.json b/inst/extdata/OSD/F/FORTSAGE.json index 92b7bc876e..6cea78d032 100644 --- a/inst/extdata/OSD/F/FORTSAGE.json +++ b/inst/extdata/OSD/F/FORTSAGE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--5 to 50 cm; pale brown (10YR 6/3) and light gray (10YR 7/2) highly stratified sand, silt loam, very fine sandy loam, and fine sandy loam, dark brown (10YR 3/3) and dark grayish brown (10YR 4/2) moist; loamy strata are massive and slightly hard, very friable, nonsticky and nonplastic; sandy strata are single grain, loose, nonsticky and nonplastic; common very fine, few fine and medium roots; many very fine interstitial pores; nine strata are present that are 1 to 4 inches thick; noneffervescent in matrix and slightly effervescent in finer textured strata; slightly alkaline (pH 7.5); abrupt smooth boundary. (25 to 75 cm thick)" diff --git a/inst/extdata/OSD/F/FOSTERBURG.json b/inst/extdata/OSD/F/FOSTERBURG.json index 2f4dad0da1..526070b4e3 100644 --- a/inst/extdata/OSD/F/FOSTERBURG.json +++ b/inst/extdata/OSD/F/FOSTERBURG.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkng1--20 to 29 inches; dark gray (2.5Y 4/1) silty clay loam; moderate fine prismatic structure parting to moderate fine and medium angular blocky; firm; common very fine roots; many distinct very dark gray (10YR 3/1) organo-clay films on faces of peds; few fine prominent yellowish brown (10YR 5/4) masses of iron accumulation in the matrix; few fine rounded strong brown (7.5YR 4/6) masses of iron-manganese accumulation; common fine irregular white (10YR 8/1, dry) masses of carbonate accumulation and common medium irregular light brownish gray (10YR 6/2) carbonate concretions with clear white (10YR 8/1, dry) boundaries; about 38 percent clay; slightly effervescent in the matrix and strongly effervescent on carbonate concentrations; slightly alkaline; gradual smooth boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btkng2--29 to 41 inches; dark gray (2.5Y 4/1) silty clay loam; moderate fine prismatic structure parting to moderate medium angular blocky; firm; few very fine roots; many distinct dark grayish brown (10YR 4/2) clay films on faces of peds; common fine and medium prominent yellowish brown (10YR 5/6) masses of iron accumulation in the matrix; few fine rounded strong brown (7.5YR 4/6) masses of iron-manganese accumulation and few medium rounded black (N 2.5/0) iron-manganese nodules with sharp boundaries; few fine irregular white (10YR 8/1, dry) masses of carbonate accumulation and few medium irregular light brownish gray (10YR 6/2) carbonate concretions with clear white (10YR 8/1, dry) boundaries; about 37 percent clay; slightly effervescent in the matrix and strongly effervescent on carbonate concentrations; slightly alkaline; gradual smooth boundary." diff --git a/inst/extdata/OSD/G/GARDNERVILLE.json b/inst/extdata/OSD/G/GARDNERVILLE.json index 184167e0af..a12611d33d 100644 --- a/inst/extdata/OSD/G/GARDNERVILLE.json +++ b/inst/extdata/OSD/G/GARDNERVILLE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk---20 to 41 cm; grayish brown (10YR 5/2) sandy clay loam, brown (10YR 4/3) moist; massive; hard, friable, moderately sticky and moderately plastic; few very fine and fine roots; few very fine and few fine interstitial and tubular pores; common faint clay bridges between sand grains and common faint clay films lining pores; secondary carbonates segregated as common fine and very fine very pale brown (10YR 8/2) masses; slightly effervescent in matrix and violently effervescent on carbonates; strongly alkaline (pH 9.0); moderately sodic, SAR 17; clear wavy boundary. (13 to 25 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bqkn--41 to 89 cm; brown (10YR 5/3) coarse sandy loam, brown (10YR 4/3) moist; massive; hard, firm and brittle, slightly sticky and nonplastic; few very fine roots; few fine and very fine interstitial pores; few thin silica bridges between sand grains; about 25 percent weakly cemented durinodes; secondary carbonates segregated as few fine and very fine very pale brown (10YR 8/2) masses; noneffervescent in matrix and slightly effervescent on carbonates; few fine distinct dark brown (7.5YR 3/2) masses of iron accumulation; strongly alkaline (pH 8.7); moderately sodic, SAR 15; clear smooth boundary. (30 to 61 cm thick)" diff --git a/inst/extdata/OSD/G/GAZELLE.json b/inst/extdata/OSD/G/GAZELLE.json index c1cfe6b458..28a16787fe 100644 --- a/inst/extdata/OSD/G/GAZELLE.json +++ b/inst/extdata/OSD/G/GAZELLE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--11 to 20 inches; white (10YR 8/1) silt loam, white (10YR 8/1) moist; moderate thin platy structure; hard, firm, slightly sticky and slightly plastic; common fine tubular pores; thin coatings of calcium carbonate or silica on some peds; strongly effervescent with disseminated lime and violently effervescent in seams; moderately alkaline (pH 8.4); abrupt smooth boundary. (9 to 13 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C2--20 to 25 inches; white (10YR 8/1) silt loam, white (10YR 8/2) moist; moderate thin platy structure; very hard, firm, slightly sticky and slightly plastic; common very fine and fine roots; common very fine and fine tubular pores; thin coatings of calcium carbonate or silica on some ped faces; strongly effervescent with disseminated lime and violently effervescent in seams; moderately alkaline (pH 8.4); abrupt smooth boundary." diff --git a/inst/extdata/OSD/G/GODECKE.json b/inst/extdata/OSD/G/GODECKE.json index 634d45db2f..3372a9be04 100644 --- a/inst/extdata/OSD/G/GODECKE.json +++ b/inst/extdata/OSD/G/GODECKE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btnk--20 to 46 cm; pale brown (10YR 6/3) clay loam, brown (10YR 5/3) moist; weak medium prismatic structure; hard, friable, moderately sticky and moderately plastic; common very fine and few medium roots between peds; many very fine tubular pores; common distinct clay films on faces of peds and as bridges between sand grains; secondary carbonates segregated as common filaments; slightly effervescent in matrix and strongly effervescent filaments; strongly alkaline (pH 9.0); abrupt smooth boundary. (20 to 30 cm thick)" diff --git a/inst/extdata/OSD/G/GOLDEAGLE.json b/inst/extdata/OSD/G/GOLDEAGLE.json index 0621eeee8a..e70c6f8d1a 100644 --- a/inst/extdata/OSD/G/GOLDEAGLE.json +++ b/inst/extdata/OSD/G/GOLDEAGLE.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "not effervescent", + "eff_class": "violently effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cr--59 to 80 inches; light gray (2.5Y 7/2) siltstone; compact, massive, hard and brittle; few very fine roots along fracture planes; violently effervescent (5 percent calcium carbonate; HCl 1 normal), common carbonates occur as large seams along fracture planes; weathered bedrock matrix is not effervescent." diff --git a/inst/extdata/OSD/G/GOLSUM.json b/inst/extdata/OSD/G/GOLSUM.json index 2376b192af..3b22dd4434 100644 --- a/inst/extdata/OSD/G/GOLSUM.json +++ b/inst/extdata/OSD/G/GOLSUM.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "irregular", "narrative": "Btk--61 to 79 cm; pale brown (10YR 6/3) very gravelly loam, brown (10YR 4/3) moist; weak fine angular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine roots; common fine interstitial pores; common distinct clay films on faces of peds and lining pores; 50 percent gravel; secondary carbonates segregated as masses and seams; slightly effervescent matrix and strongly effervescent masses; strongly alkaline (pH 8.6); abrupt irregular boundary. (10 to 25 cm thick)" diff --git a/inst/extdata/OSD/G/GOTHARD.json b/inst/extdata/OSD/G/GOTHARD.json index b96a245277..ac5c297b59 100644 --- a/inst/extdata/OSD/G/GOTHARD.json +++ b/inst/extdata/OSD/G/GOTHARD.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btknz2--24 to 42 inches; pink (7.5YR 7/4) clay loam, brown (7.5YR 5/4) moist; common medium faint coatings of reddish yellow (7.5YR 6/6) on peds; weak coarse prismatic parting to moderate medium and subangular blocky structure; very hard, firm, sticky and plastic; common fine exped roots; many fine exped and common fine and very fine tubular pores; faint continuous clay films on peds and lining pores; slightly effervescent in matrix and violently effervescent in masses; many medium to large white (N 8/) soft calcium carbonate masses, reddish yellow (7.5YR 6/6) and pinkish gray (7.5YR 7/2) moist; very strongly alkaline (pH 9.6); abrupt wavy boundary. (6 to 8 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Bknz--42 to 51 inches; light gray (2.5Y 7/2) sandy loam, grayish brown (2.5Y 5/2) moist; few fine distinct black (N 2/) mottles; moist; massive; extremely hard, firm, sticky and plastic; common fine and very fine tubular pores; slightly effervescent in matrix and violently effervescent in common fine and medium distinct white (N 8/) lime segregations; very strongly alkaline (pH 9.4); abrupt wavy boundary. (5 to 11 inches thick)" diff --git a/inst/extdata/OSD/G/GRANSHAW.json b/inst/extdata/OSD/G/GRANSHAW.json index 847d4ab3c2..f0f0db832a 100644 --- a/inst/extdata/OSD/G/GRANSHAW.json +++ b/inst/extdata/OSD/G/GRANSHAW.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btk--43 to 58 cm; light yellowish brown (10YR 6/4) coarse sandy loam, dark yellowish brown (10YR 4/4) moist; weak medium subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; few very fine and fine roots; common very fine and few fine tubular pores; common faint clay films bridging sand grains; 10 percent gravel; fine carbonate coats on undersides of gravel; noneffervescent matrix and strongly effervescent carbonate coats; strongly alkaline (pH 8.8); clear smooth boundary. (8 to 30 cm thick)" diff --git a/inst/extdata/OSD/G/GROWLER.json b/inst/extdata/OSD/G/GROWLER.json index 1fc94989df..7ed38176e9 100644 --- a/inst/extdata/OSD/G/GROWLER.json +++ b/inst/extdata/OSD/G/GROWLER.json @@ -250,7 +250,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "3Bkz--55 to 60 inches; reddish brown (5YR 5/4) very gravelly sand, yellowish red (5YR 5/6) moist; massive; hard, friable; many very fine tubular pores; few distinct clay films in pores; common small calcium carbonate nodules; noneffervescent with pockets that are violently effervescent; moderately saline (ECe 12.0 dS/m); 40 percent gravel; slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/H/HAOZOUS.json b/inst/extdata/OSD/H/HAOZOUS.json index c15eda3014..8a6b387ebe 100644 --- a/inst/extdata/OSD/H/HAOZOUS.json +++ b/inst/extdata/OSD/H/HAOZOUS.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bw2--27 to 34 inches; brown (7.5YR 4/3) gravelly coarse sandy loam, dark brown (7.5YR 3/2) moist; moderate coarse subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic; few medium, few fine, and few very fine roots; few fine and few very fine tubular pores; 25 percent gravel; noneffervescent to slightly effervescent; slightly alkaline (pH 7.4); clear wavy boundary. (5 to 12 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bw3--34 to 44 inches; brown (7.5YR 4/3) gravelly coarse sandy loam, dark brown (7.5YR 3/3) moist; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic; few fine and few very fine roots; few fine tubular pores; 30 percent gravel; noneffervescent to slightly effervescent; slightly alkaline (pH 7.4); abrupt wavy boundary. (6 to 10 inches thick)" diff --git a/inst/extdata/OSD/H/HAPUNA.json b/inst/extdata/OSD/H/HAPUNA.json index 5bef83e89a..736ecf19fb 100644 --- a/inst/extdata/OSD/H/HAPUNA.json +++ b/inst/extdata/OSD/H/HAPUNA.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "irregular", "narrative": "2C5/Bk1 -- 43 to 65 centimeters (17 to 26 inches); brown (10YR 5/3) extremely cobbly medial sand, dark brown (7.5YR 3/3) moist, with yellowish brown (10YR 5/6) clasts, dark brown (7.5YR 3/4) moist; massive; loose, very friable, nonsticky and nonplastic; nonsmeary; few very fine roots; many fine and medium interstitial and few fine tubular pores; 40 percent angular `a`a gravel and 25 percent angular `a`a cobbles; 60 percent of coarse fragments have white (10YR 8/1) carbonate coatings, very pale brown (10YR 8/2) moist; noneffervescent in matrix and violently effervescent on coatings; strongly alkaline (pH 8.5); clear irregular boundary. (22 to 34 centimeters {9 to 13 inches} thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely cobbly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2C6/Bk2 -- 65 to 120 centimeters (26 to 47 inches); light brownish gray (10YR 6/2) extremely cobbly sand, brown (10YR 4/3) moist; with brown (10YR 5/3) clasts, dark brown (10YR 3/3) moist; massive; loose, loose, nonsticky and nonplastic; nonsmeary; few very fine and fine roots; many fine and medium interstitial pores; 35 percent angular `a`a gravel, 20 percent angular `a`a cobbles, and 5 percent angular `a`a stones; 50 percent of coarse fragments have white (10YR 8/1) carbonate coatings, very pale brown (10YR 8/2) moist; noneffervescent in matrix and violently effervescent on coatings; strongly alkaline (pH 8.6); clear wavy boundary. (20 to 55 centimeters {8 to 22 inches} thick)" diff --git a/inst/extdata/OSD/H/HAUG.json b/inst/extdata/OSD/H/HAUG.json index 7698b171d7..49f9c6c135 100644 --- a/inst/extdata/OSD/H/HAUG.json +++ b/inst/extdata/OSD/H/HAUG.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A--9 to 15 inches; black (N 2/0) mucky sandy loam; weak fine platy parting to moderate fine and medium subangular blocky structure; very friable, slightly sticky and plastic; many very fine roots: few very fine and fine tubular pores; common clean grayish brown (2.5Y 5/2) sand grains; about 2 percent gravel; slightly effervescent but strongly effervescent in lower part; slightly alkaline; clear smooth boundary. (2 to 8 inches thick)" diff --git a/inst/extdata/OSD/H/HERMSHALE.json b/inst/extdata/OSD/H/HERMSHALE.json index f0f262d15c..e7005ac039 100644 --- a/inst/extdata/OSD/H/HERMSHALE.json +++ b/inst/extdata/OSD/H/HERMSHALE.json @@ -181,7 +181,7 @@ "cf_class": "channery", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk1--23 to 38 inches; mixed yellowish red (5YR 4/6) and white (5YR 8/1) channery clay, yellowish red (5YR 4/6) and pink (5YR 7/4) moist; moderate coarse prismatic structure; very hard, very firm, very sticky and very plastic; few very fine, fine and medium roots; few very fine tubular pores; 5 percent cobble and 25 percent channers; few distinct clay films and many prominent stress surfaces on ped faces; few faint calcium carbonate masses on peds and few faint coatings on rock fragments; noneffervescent soil matrix with violently effervescent calcium carbonate features; slightly alkaline (pH 7.8); abrupt wavy boundary. (10 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "very channery", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk2--38 to 43 inches; mixed yellowish red (5YR 4/6) and pink (5YR 7/4) very channery clay, yellowish red (5YR 4/6) and reddish yellow (5YR 6/6) moist; strong medium subangular blocky structure; very hard, very firm, very sticky and very plastic; few very fine roots; few very fine tubular pores; 45 percent channers; few distinct clay films in pores and on ped faces; many medium and coarse distinct calcium carbonate masses and common distinct coatings on rock fragments; noneffervescent soil matrix with violently effervescent calcium carbonate features; moderately alkaline (pH 8.0); abrupt wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/H/HIDEWOOD.json b/inst/extdata/OSD/H/HIDEWOOD.json index a08a362521..4007626453 100644 --- a/inst/extdata/OSD/H/HIDEWOOD.json +++ b/inst/extdata/OSD/H/HIDEWOOD.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "NA", "distinctness": "clear", "topography": "smooth", "narrative": "Cg--27 to 42 inches; grayish brown (2.5Y 5/2) silty clay loam; massive; friable; few fine prominent yellowish brown (10YR 5/4) Fe concentrations;strongly effervescent; moderately alkaline; clear smooth boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/H/HILLER.json b/inst/extdata/OSD/H/HILLER.json index 1194f5e8ca..216a98cd9a 100644 --- a/inst/extdata/OSD/H/HILLER.json +++ b/inst/extdata/OSD/H/HILLER.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "NA", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--8 to 14 inches; light yellowish brown (10YR 6/4) very gravelly loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, slightly sticky and slightly plastic; common very fine and few fine roots; few very fine and fine interstitial and tubular pores; common (20 percent) fine distinct calcium carbonate coats on bottom and sides of rock fragments; 40 percent pebbles and 10 percent cobbles;violently effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (5 to 10 inches thick)" diff --git a/inst/extdata/OSD/H/HOLTLE.json b/inst/extdata/OSD/H/HOLTLE.json index 9f798f0c59..3d0eb90479 100644 --- a/inst/extdata/OSD/H/HOLTLE.json +++ b/inst/extdata/OSD/H/HOLTLE.json @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bqk1--46 to 74 cm; pale brown (10YR 6/3) paragravelly loam, dark brown (10YR 3/3) moist; massive; hard, friable, slightly sticky, and slightly plastic; few very fine and fine roots; few coarse tubular pores and many very fine and fine interstitial and tubular pores; about 30 percent very hard, firm, brittle distinct very pale brown (10YR 8/2) cylindrical silica and calcium carbonate cemented durinodes 1 to 3 cm in diameter; strongly effervescent around durinodes and noneffervescent in the matrix; slightly alkaline (pH 7.6); abrupt smooth boundary. (15 to 50 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.7, "pH_class": "strongly alkaline", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqk2--74 to 152 cm; pale brown (10YR 6/3) paragravelly loam, brown (10YR 4/3) moist; massive; very hard, firm to friable, nonsticky and slightly plastic; no roots observed; common very fine and fine interstitial, and few very fine and fine tubular pores; 15 percent fine and medium very hard, firm, brittle distinct very pale brown (10YR 8/2) cylindrical silica and calcium carbonate cemented durinodes; strongly effervescent around durinodes and noneffervescent in the matrix; strongly alkaline (pH 8.7)." diff --git a/inst/extdata/OSD/H/HOMESTAKE.json b/inst/extdata/OSD/H/HOMESTAKE.json index 22938e28d0..89503ceba9 100644 --- a/inst/extdata/OSD/H/HOMESTAKE.json +++ b/inst/extdata/OSD/H/HOMESTAKE.json @@ -250,7 +250,7 @@ "cf_class": "extremely gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cq--104 to 152 cm; very pale brown (10YR 8/3) and pink (7.5YR 7/4) weakly cemented extremely gravelly loamy sand, pale brown (10YR 6/3) and light brown (7.5YR 6/4) moist; massive; very hard, firm, nonsticky, nonplastic; many very fine interstitial, and few very fine tubular pores; common fine prominent black (10YR 2/1), and few medium distinct strong brown (7.5YR 5/8) moist mottles in matrix and on rock fragments; 15 percent 2 to 5 mm thick pale brown (10YR 6/3) silica bridges between sand grains and lining pores; 50 percent gravel and 25 percent cobbles; noneffervescent, but strongly effervescent in spots; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/H/HOOPLITE.json b/inst/extdata/OSD/H/HOOPLITE.json index 440e526835..c24bb4015a 100644 --- a/inst/extdata/OSD/H/HOOPLITE.json +++ b/inst/extdata/OSD/H/HOOPLITE.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "ABk--5 to 10 cm; pale brown (10YR 6/3) gravelly loam, brown (10YR 4/3) moist; moderate medium platy structure; soft, very friable, moderately sticky and moderately plastic; common very fine and fine roots; common very fine and fine interstitial and tubular pores; 20 percent gravel and 5 percent cobbles; common fine and medium carbonate coats on undersides of rock fragments; slightly effervescent matrix and strongly effervescent carbonate coats; slightly alkaline (pH 7.8); clear wavy boundary. (0 to 10 cm thick)" diff --git a/inst/extdata/OSD/H/HORCADO.json b/inst/extdata/OSD/H/HORCADO.json index 8582da7d39..06977292c2 100644 --- a/inst/extdata/OSD/H/HORCADO.json +++ b/inst/extdata/OSD/H/HORCADO.json @@ -227,7 +227,7 @@ "cf_class": "very gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "BCk4--74 to 88 inches; reddish brown (5YR 5/4) very gravelly coarse sand, reddish brown (5YR 4/4) moist; massive; slightly hard, friable, nonsticky and nonplastic; few very fine roots; small bodies of white volcanic ash; 45 percent gravel; noneffervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated in few medium and coarse irregularly shaped masses; strongly alkaline (pH 8.8); abrupt wavy boundary. (8 to 19 inches thick)" diff --git a/inst/extdata/OSD/H/HOVEY.json b/inst/extdata/OSD/H/HOVEY.json index bc38f3ecf0..d95c4ff558 100644 --- a/inst/extdata/OSD/H/HOVEY.json +++ b/inst/extdata/OSD/H/HOVEY.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C2--48 to 70 inches; light brownish gray (10YR 6/2) silty clay loam, grayish brown (2.5Y 5/2) moist; common medium and fine distinct light gray (10YR 7/1), dark gray (10YR 4/1), dark brown (10YR 3/3), and olive (5Y 4/3) mottles; massive; hard, friable, sticky, plastic; few fine roots; few very fine pores; slightly effervescent except in lime masses, which are violently effervescent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/H/HUSSMAN.json b/inst/extdata/OSD/H/HUSSMAN.json index b1b2db4bd6..c04a64856f 100644 --- a/inst/extdata/OSD/H/HUSSMAN.json +++ b/inst/extdata/OSD/H/HUSSMAN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--30 to 71 cm; brown (10YR 5/3) silty clay, dark grayish brown (10YR 4/2) moist; weak coarse subangular blocky structure; very hard, friable, very sticky and very plastic; many very fine and fine roots; common very fine and fine tubular pores; secondary carbonates segregated as common fine filaments; noneffervescent matrix and strongly effervescent filaments; common fine distinct dark reddish brown (5YR 3/3) moist, masses of iron accumulation; moderately alkaline (pH 8.2); clear wavy boundary. (20 to 41 cm thick)" diff --git a/inst/extdata/OSD/I/INDUS.json b/inst/extdata/OSD/I/INDUS.json index c243d8392a..02a2fa2857 100644 --- a/inst/extdata/OSD/I/INDUS.json +++ b/inst/extdata/OSD/I/INDUS.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "violent effervescence", + "eff_class": "slight effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Ckg--23 to 37 inches; olive gray (5Y 5/2) clay; common medium faint olive brown (2.5Y 4/4) mottles; moderate fine, medium, and very coarse prismatic structure that parts to moderate medium angular blocky; firm; few thin dark gray (5Y 4/1) and very dark gray (5Y 3/1) clay films on faces of larger prisms; few 2 to 5 mm lime concretions; about 20 percent light gray (10YR 7/2) large rounded soft lime masses; slight effervescence in matrix, other parts have violent effervescence; moderately alkaline; clear wavy boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/J/JOB.json b/inst/extdata/OSD/J/JOB.json index 794c748997..29f53f8205 100644 --- a/inst/extdata/OSD/J/JOB.json +++ b/inst/extdata/OSD/J/JOB.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--81 to 130 cm; light brownish gray (2.5Y 6/2) loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine and fine tubular pores; secondary carbonates segregated as few very fine and fine very pale brown (10YR 8/2) filaments; slightly effervescent matrix and strongly effervescent filaments; moderately alkaline (pH 8.4); clear wavy boundary. (43 to 61 cm thick)" diff --git a/inst/extdata/OSD/K/KAI.json b/inst/extdata/OSD/K/KAI.json index cc37df13df..46a9cc8b31 100644 --- a/inst/extdata/OSD/K/KAI.json +++ b/inst/extdata/OSD/K/KAI.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Btkn2--12 to 18 inches; grayish brown (10YR 5/2) clay loam, dark brown (10YR 3/3) moist; moderate medium angular blocky structure; hard, friable, sticky and plastic; few very fine roots; common very fine and few fine tubular pores; many thin and few moderately thick dark gray (10YR 4/1) clay films on ped faces and lining pores, very dark gray (10YR 3/1) moist; slightly effervescent, carbonates disseminated and violently effervescent, carbonates segregated as common very fine soft masses; electrical conductivity 3.1 decisiemens per meter; sodium adsorption ratio 34; very strongly alkaline (pH 10.3); clear smooth boundary. (4 to 8 inches thick)." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkn3--18 to 32 inches; brown (10YR 5/3) loam, dark brown (10YR 3/3) moist; massive; slightly hard, very friable, slightly sticky and slightly plastic; many very fine, common fine and medium tubular pores; few thin clay films on ped faces and lining pores; strongly effervescent, carbonates disseminated and violently effervescent, carbonates segregated as common fine soft masses and filaments; electrical conductivity 5.0 decisiemens per meter; sodium adsorption ratio 58; very strongly alkaline (pH 10.4); clear wavy boundary. (6 to 20 inches thick)." diff --git a/inst/extdata/OSD/K/KENTONMILL.json b/inst/extdata/OSD/K/KENTONMILL.json index 1c3586d13f..f79e3359b7 100644 --- a/inst/extdata/OSD/K/KENTONMILL.json +++ b/inst/extdata/OSD/K/KENTONMILL.json @@ -89,7 +89,7 @@ "cf_class": "extremely gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "very slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 2 inches; light gray (10YR 7/2) extremely gravelly fine sandy loam, brown (10YR 4/3) moist; moderate thick platy structure; slightly hard, very friable, nonsticky and nonplastic; common very fine and fine vesicular pores; electrical conductivity 1 dS/m; sodium adsorption ratio 11; 60 percent gravel, 15 percent cobbles and trace of stones; noneffervescent to very slightly effervescent (4 percent calcium carbonate equivalence); strongly alkaline (pH 8.8); abrupt smooth boundary. (1 to 3 inches thick)." diff --git a/inst/extdata/OSD/K/KHYBER.json b/inst/extdata/OSD/K/KHYBER.json index f628628534..153e7c7738 100644 --- a/inst/extdata/OSD/K/KHYBER.json +++ b/inst/extdata/OSD/K/KHYBER.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "violently effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk1 -- 8 to 23 inches; brown (7.5YR 5/4) very gravelly sandy clay loam, brown (7.5YR 4/4) moist; massive; moderately hard, very friable, slightly sticky and nonplastic; few very fine roots; few very fine and fine interstitial and tubular pores; 60 percent distinct discontinuous clay films between sand grains and on sand and gravel; 5 percent of matrix has slightly hard, very friable, lime cementation in bands and pockets, violently effervescent; 95 percent of matrix is noneffervescent; 45 percent gravel; slightly alkaline (pH 7.8); clear wavy boundary." @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "violently effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk2 -- 23 to 39 inches; brown (7.5YR 5/4) very gravelly loamy coarse sand, brown (7.5YR 4/4) moist; massive; moderately hard, very friable, slightly sticky and nonplastic; few very fine roots; few very fine and fine interstitial and tubular pores; 60 percent distinct discontinuous clay films between sand grains and on sand and gravel; 5 percent of matrix has slightly hard, very friable, lime cementation in bands and pockets, violently effervescent; 95 percent of matrix is noneffervescent; 45 percent gravel; slightly alkaline (pH 7.8); clear wavy boundary. (Combined thickness of the Btk horizon is 15 to 30 inches)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "violently effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bkq -- 39 to 60 inches; pale brown (10YR 6/3) very gravelly coarse sand, brown (10YR 4/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; few very fine roots; common very fine interstitial pores; 20 percent of matrix has moderately hard, very friable, lime and silica cementation in bands and pockets, violently effervescent; 75 percent of matrix is noneffervescent; 50 percent gravel; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/K/KINZIE.json b/inst/extdata/OSD/K/KINZIE.json index 8748ebdb92..2f40ba85fd 100644 --- a/inst/extdata/OSD/K/KINZIE.json +++ b/inst/extdata/OSD/K/KINZIE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btkb1--17 to 20 inches; yellowish brown (10YR 5/4) silty clay loam, dark yellowish brown (10YR 4/4) moist; strong medium and coarse prismatic structure; very hard, very firm, sticky and plastic; common very fine, fine and few medium and coarse roots; common very fine and fine tubular pores; many prominent clay films on faces of peds; 2 percent gravel and 5 percent cobbles at 20 inches; slightly effervescent with strongly effervescent veins (15 percent calcium carbonate equivalent); slightly alkaline (pH 7.4); clear wavy boundary. (3 to 10 inches thick)" diff --git a/inst/extdata/OSD/K/KITCHELL.json b/inst/extdata/OSD/K/KITCHELL.json index 12dea4ca79..0ea25ca185 100644 --- a/inst/extdata/OSD/K/KITCHELL.json +++ b/inst/extdata/OSD/K/KITCHELL.json @@ -89,7 +89,7 @@ "cf_class": "gravelly", "pH": 7, "pH_class": "neutral", - "eff_class": "strong effervescence", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 5 inches (0 to 13 cm); very dark grayish brown (10YR 3/2) gravelly loam, very dark brown (10YR 2/2) moist; weak fine granular structure; slightly hard, friable, moderately plastic; common fine and few very fine roots; few fine pores; noneffervescent in the matrix; fine nodules and gravel show strong effervescence; neutral (pH 7.0); clear smooth boundary. (3 to 6 inches (8 to 15 cm) thick)" @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": 7, "pH_class": "neutral", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "irregular", "narrative": "ABk1--14 to 22 inches (36 to 56 cm); brown (7.5YR 4/2) extremely cobbly loam, very dark brown (10YR 2/2) moist; weak fine subangular blocky structure; slightly hard, friable, slightly sticky and moderately plastic; common fine and very fine, few medium and coarse roots; few fine discontinuous pores; 75 percent cobbles and gravel; strongly effervescent; carbonates occur as coatings on the rock fragments and in fine nodules; the soil mass is slightly effervescent; neutral (pH 7.0); clear irregular boundary. (6 to 12 inches (15 to 31 cm) thick)" diff --git a/inst/extdata/OSD/K/KNOKE.json b/inst/extdata/OSD/K/KNOKE.json index bd55fd4423..fa24c1b23b 100644 --- a/inst/extdata/OSD/K/KNOKE.json +++ b/inst/extdata/OSD/K/KNOKE.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "NA", "distinctness": "NA", "topography": "NA", "narrative": "Cg--54 to 63 inches; gray (5Y 5/1) silty clay loam; massive; friable; common soft lime accumulations, many medium prominent dark yellowish brown (10YR 4/4) Fe concentrations;strongly effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/L/LABKEY.json b/inst/extdata/OSD/L/LABKEY.json index 7d96c19008..92f010f875 100644 --- a/inst/extdata/OSD/L/LABKEY.json +++ b/inst/extdata/OSD/L/LABKEY.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk1--30 to 48 cm; pale brown (10YR 6/3) very gravelly coarse sand, brown (10YR 4/3) moist; single grain; loose, nonsticky and nonplastic; common very fine roots; many very fine and fine interstitial pores; 45 percent gravel; carbonate coats on undersides of gravel; noneffervescent in matrix and strongly effervescent on carbonate coats; moderately alkaline (pH 8.2); abrupt smooth boundary. (10 to 28 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk2--48 to 86 cm; very pale brown (10YR 7/3) extremely gravelly loamy coarse sand; brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; common very fine tubular and interstitial pores; 60 percent gravel; carbonate coats on undersides of gravel; noneffervescent in matrix and strongly effervescent on carbonate coats; moderately alkaline (pH 8.0); abrupt smooth boundary. (13 to 46 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk3--86 to 109 cm; very pale brown (10YR 7/3) extremely gravelly loamy coarse sand, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; common very fine roots; few very fine tubular and interstitial pores; 70 percent gravel; many medium carbonate filaments and soft masses of carbonate, and thin coats of carbonate on undersides of gravel; noneffervescent in matrix and strongly effervescent on carbonate coats; moderately alkaline (pH 8.0); abrupt smooth boundary. (0 to 30 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk4--109 to 152 cm; light yellowish brown (10YR 6/4) gravelly loamy coarse sand, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; few very fine tubular and interstitial pores; 25 percent gravel; common fine lime filaments and thin carbonate coats on undersides of gravel; noneffervescent in matrix and strongly effervescent on carbonate coats; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/L/LALAMILO.json b/inst/extdata/OSD/L/LALAMILO.json index 6016cfe082..29e785223a 100644 --- a/inst/extdata/OSD/L/LALAMILO.json +++ b/inst/extdata/OSD/L/LALAMILO.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "irregular", "narrative": "Bkn -- 94 to 114 centimeters (37 to 45 inches); dark yellowish brown (10YR 3/4) medial silt loam, yellowish brown (10YR 5/6) dry; moderate medium prismatic parting to weak fine and medium subangular blocky structure; slightly hard, very friable, nonsticky and nonplastic; nonsmeary; few very fine roots; common very fine tubular pores; 2 percent very fine prominent spherical carbonate concretions; 2 percent strongly cemented gravel size carbonate nodules; slightly effervescent in matrix and strongly effervescent nodules; moderately alkaline (pH 8.2); clear irregular boundary. (20 to 25 centimeters {8 to 10 inches} thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bknq -- 114 to 160 centimeters (45 to 63 inches);dark yellowish brown (10YR 3/4) medial silt loam, brownish yellow (10YR 6/6) dry; 40 percent massive and 60 percent moderate medium subangular blocky structure; very hard, extremely firm, nonsticky and nonplastic; nonsmeary; few very fine roots; common very fine tubular pores; 2 percent very fine prominent spherical carbonate concretions; 40 percent strongly cemented gravel size carbonate nodules; slightly effervescent in matrix and strongly effervescent nodules; moderately alkaline (pH 8.2); abrupt smooth boundary. (38 to 51 centimeters {15 to 20 inches} thick)." diff --git a/inst/extdata/OSD/L/LAMESILLA.json b/inst/extdata/OSD/L/LAMESILLA.json index f21b310f53..59702f5cd1 100644 --- a/inst/extdata/OSD/L/LAMESILLA.json +++ b/inst/extdata/OSD/L/LAMESILLA.json @@ -273,7 +273,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C3--104 to 121 inches; light brown (7.5YR 6/4) very gravelly coarse sand, brown (7.5YR 4/4) moist; single grain; loose, nonsticky and nonplastic; 55 percent gravel; noneffervescent to slightly effervescent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/L/LANIP.json b/inst/extdata/OSD/L/LANIP.json index b73672a198..c461140906 100644 --- a/inst/extdata/OSD/L/LANIP.json +++ b/inst/extdata/OSD/L/LANIP.json @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--6 to 15 inches; light yellowish brown (10YR 6/4) gravelly loam, dark yellowish brown (10YR 4/4) moist; moderate coarse subangular blocky structure; slightly hard, very friable, slightly sticky and slightly plastic; common very fine and fine, and few medium roots; many very fine, few fine and medium tubular pores; many fine calcium carbonate coats on underside of rock fragments; 20 percent pebbles; noneffervescent to slightly effervescent; moderately alkaline (pH 8.2); clear wavy boundary. (8 to 22 inches thick)" diff --git a/inst/extdata/OSD/L/LEADORE.json b/inst/extdata/OSD/L/LEADORE.json index c4d2b515c4..5a0ff826cb 100644 --- a/inst/extdata/OSD/L/LEADORE.json +++ b/inst/extdata/OSD/L/LEADORE.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bkq2--27 to 60 inches; multicolored extremely cobbly sand; single grain; loose; common very fine roots as mats around pebbles and cobbles; many very fine, common fine and few medium interstitial pores; 40 percent pebbles, 35 percent cobbles, 5 percent stones; lime and silica coatings less than 2mm thick on undersides of coarse fragments cementing fine pebbles and sand to coarse fragments; slightly effervescent with areas of strongly effervescent; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/L/LEAVITT.json b/inst/extdata/OSD/L/LEAVITT.json index 40b36ade97..59d6c3051f 100644 --- a/inst/extdata/OSD/L/LEAVITT.json +++ b/inst/extdata/OSD/L/LEAVITT.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btk--29 to 38 inches; light brown (7.5YR 6/3) clay loam, brown (7.5YR 5/3) moist; weak coarse subangular blocky structure; hard, friable, moderately sticky and moderately plastic; few fine and medium roots; common distinct clay films on faces of peds and in root channels and pores; slightly effervescent matrix and strongly effervescent near calcium carbonate masses and filaments; 10 percent rounded gravel; moderately alkaline (pH 8.0); gradual smooth boundary. (5 to 12 inches thick)" diff --git a/inst/extdata/OSD/L/LEFOR.json b/inst/extdata/OSD/L/LEFOR.json index 633b18e936..696e9f10cf 100644 --- a/inst/extdata/OSD/L/LEFOR.json +++ b/inst/extdata/OSD/L/LEFOR.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "no effervescence", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--36 to 60 inches; pale yellow and white (2.5Y 7/4 and 8/4 and 5Y 8/2) soft sandstone, light yellowish brown and light gray (2.5Y 6/4 and 5Y 7/2) moist; gypsum crystals in some layers; slight effervescence in some layers and no effervescence in others; moderately alkaline." diff --git a/inst/extdata/OSD/L/LEITER.json b/inst/extdata/OSD/L/LEITER.json index ff3c71636f..35070dceea 100644 --- a/inst/extdata/OSD/L/LEITER.json +++ b/inst/extdata/OSD/L/LEITER.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "inconsistently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--33 to 60 inches; brownish yellow to grayish brown soft shale; slightly effervescent to about 50 inches and inconsistently effervescent below." diff --git a/inst/extdata/OSD/L/LEWELLEN.json b/inst/extdata/OSD/L/LEWELLEN.json index 25d6cd6ff6..5b2e283cc4 100644 --- a/inst/extdata/OSD/L/LEWELLEN.json +++ b/inst/extdata/OSD/L/LEWELLEN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "violent effervescence", + "eff_class": "NA", "distinctness": "abrupt", "topography": "wavy", "narrative": "ACk--8 to 12 inches; light brownish gray (10YR 6/2) very fine sandy loam; grayish brown (10YR 5/2) moist; moderate fine granular structure; slightly hard, very friable; sodium adsorption ratio 35; 4 percent calcium carbonates; electrical conductivity= 6;violent effervescence; strongly alkaline; abrupt wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/L/LIZZANT.json b/inst/extdata/OSD/L/LIZZANT.json index d35a79ea3e..73aa8e2cf2 100644 --- a/inst/extdata/OSD/L/LIZZANT.json +++ b/inst/extdata/OSD/L/LIZZANT.json @@ -89,7 +89,7 @@ "cf_class": "very cobbly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A1--0 to 5 inches (0 to 13 cm); very dark grayish brown (10YR 3/2) very cobbly loam, very dark brown (10YR 2/2) moist; moderate fine granular structure; soft, friable, slightly sticky and slightly plastic; common very fine roots; few medium and fine pores; about 10 percent of the surface is covered with cobbles and stones; strongly effervescent; soil mass is slightly effervescent; moderately alkaline (pH 8.4); clear smooth boundary. (3 to 6 inches (8 to 15 cm) thick)" diff --git a/inst/extdata/OSD/L/LONTI.json b/inst/extdata/OSD/L/LONTI.json index 7ecbfe211d..bfd46c7768 100644 --- a/inst/extdata/OSD/L/LONTI.json +++ b/inst/extdata/OSD/L/LONTI.json @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk2--55 to 68 inches; light reddish brown (5YR 6/4) extremely gravelly sandy clay loam, reddish brown (5YR 5/4) moist; massive; hard, friable, slightly sticky and plastic; few fine roots; common fine tubular and many interstitial pores; 60 percent gravel; noneffervescent to strongly effervescent; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/L/LOX.json b/inst/extdata/OSD/L/LOX.json index 7d7a8e0607..4124323741 100644 --- a/inst/extdata/OSD/L/LOX.json +++ b/inst/extdata/OSD/L/LOX.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "very strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent to strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cn3--64 to 152 cm; light brownish gray (10YR 6/2) very gravelly sandy loam, grayish brown (10YR 5/2) moist; massive; slightly hard, very friable, nonsticky and nonplastic; many very fine interstitial pores; 45 percent gravel; slightly effervescent to strongly effervescent; very strongly alkaline (pH 9.6+)." diff --git a/inst/extdata/OSD/M/MANNING.json b/inst/extdata/OSD/M/MANNING.json index b8bf095709..f79fad6ee2 100644 --- a/inst/extdata/OSD/M/MANNING.json +++ b/inst/extdata/OSD/M/MANNING.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slight effervescence", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "2C1--25 to 40 inches; light yellowish brown (2.5Y 6/4) sand and gravel, olive brown (2.5Y 4/3) moist; single grain; loose; few fine roots; about 25 percent gravel coarser than 3/4 inch; few cobbles; thin coating of carbonates on undersides of some pebbles and cobbles; strong effervescence in upper part and slight effervescence in lower part; moderately alkaline; clear wavy boundary." diff --git a/inst/extdata/OSD/M/MAZUMA.json b/inst/extdata/OSD/M/MAZUMA.json index 9c8090aff2..dd8159b873 100644 --- a/inst/extdata/OSD/M/MAZUMA.json +++ b/inst/extdata/OSD/M/MAZUMA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "A2--4 to 20 cm; pale brown (10YR 6/3) fine sandy loam, brown (10YR 4/3) moist; weak thin platy structure; slightly hard, friable, slightly sticky and slightly plastic; few fine roots; few very fine and fine tubular pores; slightly effervescent, very few strongly effervescent spots; strongly alkaline (pH 9.0); clear smooth boundary. (5 to 25 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bk--20 to 30 cm; pale brown (10YR 6/3) sandy loam, brown (10YR 4/3) moist; weak coarse subangular blocky structure; slightly hard, very friable; slightly sticky and slightly plastic; few fine roots; common fine tubular pores; secondary carbonates segregated as few very pale brown (10YR 8/2) coats on faces of peds; slightly effervescent in matrix and violently effervescent on coats; very strongly alkaline (pH 9.2); clear smooth boundary. (10 to 40 cm thick)" diff --git a/inst/extdata/OSD/M/MEADVIEW.json b/inst/extdata/OSD/M/MEADVIEW.json index c49558d384..d4a4cdcbf2 100644 --- a/inst/extdata/OSD/M/MEADVIEW.json +++ b/inst/extdata/OSD/M/MEADVIEW.json @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bkq1--21 to 31 inches; brown (10YR 5/3) extremely gravelly coarse sand, brown (10YR 4/3) moist; massive; slightly hard to hard, firm to very firm, nonsticky and nonplastic; few very fine roots; many very fine irregular pores; 50 percent gravel, 20 percent cobble; brittle discontinuous lenses of silica and calcium carbonate cemented material; slightly effervescent, few areas in matrix are violently effervescent, 1/8 to 1/2 inch calcium carbonate pendants on the underside of rock fragments; moderately alkaline (pH 8.0); abrupt wavy boundary." diff --git a/inst/extdata/OSD/M/MET.json b/inst/extdata/OSD/M/MET.json index 0bb00af0b6..e6776d6b25 100644 --- a/inst/extdata/OSD/M/MET.json +++ b/inst/extdata/OSD/M/MET.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "IIIC6sicam--51 to 60 inches, light-gray (10YR 7/2) continuous thin silica-indurated laminae stratified with white (10YR 8/2) strongly silica-lime cemented strata, yellowish brown (10YR 5/5) and pale brown (10YR 6/3) moist; strong, thick, platy structure; extremely hard, extremely firm; few fine interstitial pores in strongly cemented portion; slightly effervescent in indurated laminae but violently effervescent in interior of peds; moderately alkaline (pH 8.0); clear, smooth boundary. 7 to 18 inches thick." diff --git a/inst/extdata/OSD/M/MIDDLEHILL.json b/inst/extdata/OSD/M/MIDDLEHILL.json index 5a2eadc874..9fa86d4abc 100644 --- a/inst/extdata/OSD/M/MIDDLEHILL.json +++ b/inst/extdata/OSD/M/MIDDLEHILL.json @@ -158,7 +158,7 @@ "cf_class": "extremely stony", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--41 to 61 cm; yellowish brown (10YR 5/4) extremely stony loamy coarse sand, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; many very fine tubular pores; 60 percent stones, 15 percent cobbles, 10 percent gravel; slightly effervescent matrix, underside of rock fragments 50 to 75 percent coated with strongly effervescent carbonates; moderately alkaline (pH 8.0); abrupt wavy boundary. (10 to 28 cm thick)" diff --git a/inst/extdata/OSD/M/MINNEISKA.json b/inst/extdata/OSD/M/MINNEISKA.json index d17f34969c..a0803311cc 100644 --- a/inst/extdata/OSD/M/MINNEISKA.json +++ b/inst/extdata/OSD/M/MINNEISKA.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "strong effervescence", + "eff_class": "slight effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--10 to 60 inches; stratified very dark grayish brown (10YR 3/2), very dark brown (10YR 2/2), and light olive brown (2.5Y 5/3) fine sandy loam, loam, loamy fine sand, and fine sand; laminated (weak thin to thick platy layers); very friable in some parts and loose in other parts; slight effervescence in some parts to strong effervescence in other parts; slightly alkaline." diff --git a/inst/extdata/OSD/M/MIRASOL.json b/inst/extdata/OSD/M/MIRASOL.json index e926167cad..c63d895311 100644 --- a/inst/extdata/OSD/M/MIRASOL.json +++ b/inst/extdata/OSD/M/MIRASOL.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "violently effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkqm--41 to 48 cm (16 to 19 in); light yellowish brown (2.5Y 6/4) strongly cemented duripan, light olive brown (2.5Y 5/4) moist; massive; with plates 12 to 25 mm (1/4 to 1 in) thick that have patchy coating of calcium carbonate; extremely hard, extremely firm; many fine and medium roots matted on top of laminar cap; laminar cap is 6 to 12 mm (1/4 to 1/2 in) thick; many fine and very fine roots matted on top of laminar cap; violently effervescent along laminar cap; duripan material is noneffervescent; moderately alkaline; clear wavy boundary. (thickness of the Bkqm horizon is 5 to 10 cm [2 to 4 in])" diff --git a/inst/extdata/OSD/M/MOPANA.json b/inst/extdata/OSD/M/MOPANA.json index 28dad5bd93..c8764632a6 100644 --- a/inst/extdata/OSD/M/MOPANA.json +++ b/inst/extdata/OSD/M/MOPANA.json @@ -158,7 +158,7 @@ "cf_class": "very gravelly", "pH": 7.2, "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "2Btqk--43 to 48 cm; light brown (7.5YR 6/4) very gravelly clay loam, brown (7.5YR 4/4) moist; moderate medium platy structure; hard, friable, moderately sticky and moderately plastic; common very fine tubular pores; few prominent and common distinct pressure cutans on faces of peds; 35 percent strongly cemented, flat pan fragments; 15 percent gravel and 5 percent cobbles; secondary carbonates segregated as few fine filaments or threads; noneffervescent matrix and strongly effervescent filaments; neutral (pH 7.2); abrupt wavy boundary. (0 to 10 cm thick)" diff --git a/inst/extdata/OSD/M/MORBENCH.json b/inst/extdata/OSD/M/MORBENCH.json index 5e0ac654e6..e4a7b24e98 100644 --- a/inst/extdata/OSD/M/MORBENCH.json +++ b/inst/extdata/OSD/M/MORBENCH.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bq--127 to 152 cm; pale brown (10YR 6/3) very gravelly sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; many very fine, fine and medium interstitial pores; 40 percent gravel and 5 percent cobbles; 15 percent weak discontinuous silica cementation; strongly effervescent with noneffervescent spots; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/N/NAHRUB.json b/inst/extdata/OSD/N/NAHRUB.json index a0efa6980d..bf6169f385 100644 --- a/inst/extdata/OSD/N/NAHRUB.json +++ b/inst/extdata/OSD/N/NAHRUB.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.3, "pH_class": "very strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "2C3--43 to 52 inches; pale yellow (5Y 7/3) clay loam, olive gray (5Y 5/2) moist; massive; slightly hard, friable, sticky and plastic; few very fine roots; few very fine tubular pores; common, fine, distinct yellowish red (5YR 5/8), dry and moist, masses of iron accumulation; slightly effervescent with carbonates disseminated, and strongly effervescent, carbonates segregated as few fine soft masses; very strongly alkaline (pH 9.3); gradual smooth boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/N/NEVADOR.json b/inst/extdata/OSD/N/NEVADOR.json index 0ad3785c1c..46c75bc0ad 100644 --- a/inst/extdata/OSD/N/NEVADOR.json +++ b/inst/extdata/OSD/N/NEVADOR.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bqk1--61 to 109 cm; very pale brown (10YR 7/3) sandy loam, brown (10YR 5/3) moist; massive; hard, friable, slightly sticky and nonplastic; few very fine and fine roots; common very fine interstitial pores; 5 percent gravel; 50 percent coarse (10 to 20 mm) durinodes; secondary carbonates segregated as few fine filaments; noneffervescent matrix and slightly effervescent filaments; slightly alkaline (pH 7.4); clear wavy boundary. (13 to 50 cm thick)." @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bqk2--109 to 132 cm; very pale brown (10YR 7/3) sandy loam, brown (10YR 5/3) moist; massive; hard, friable, nonsticky and nonplastic; few very fine and fine roots; common very fine interstitial pores; 5 percent gravel; 30 percent coarse (10 to 20 millimeter) durinodes; secondary carbonates segregated as few fine filaments; noneffervescent matrix and slightly effervescent filaments; slightly alkaline (pH 7.4); clear wavy boundary. (0 to 48 cm thick)" diff --git a/inst/extdata/OSD/N/NINCH.json b/inst/extdata/OSD/N/NINCH.json index b3f7d60e90..b58fc2a8a1 100644 --- a/inst/extdata/OSD/N/NINCH.json +++ b/inst/extdata/OSD/N/NINCH.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bkq--89 to 104 cm; light brownish gray (2.5Y 6/2) fine sandy loam, dark grayish brown (2.5Y 4/2) moist; massive; hard, friable, nonsticky and nonplastic; many very fine, and few fine roots; many very fine and few fine tubular, many very fine interstitial pores; 25 percent 0.6 to 1.8 cm thick rounded durinodes that are hard and firm; few thin silica coatings in pores and as discontinuous laminae; slightly effervescent matrix; few fine and medium white (10YR 8/2) strongly effervescent lime coatings on silica 25 cm inches thick)" diff --git a/inst/extdata/OSD/N/NOFET.json b/inst/extdata/OSD/N/NOFET.json index 771eda8e0b..994e4d72ff 100644 --- a/inst/extdata/OSD/N/NOFET.json +++ b/inst/extdata/OSD/N/NOFET.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk1--10 to 23 cm; grayish brown (10YR 5/2) clay, very dark grayish brown (10YR 3/2) moist; strong medium prismatic structure; hard, friable, very sticky and very plastic; common very fine and fine mostly exped roots; common very fine tubular pores; continuous distinct clay films on ped faces and lining pores; slightly effervescent matrix, few medium strongly effervescent soft masses of carbonate; very strongly alkaline (pH 9.6); clear wavy boundary. (10 to 20 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 9.2, "pH_class": "very strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "Btnk2--23 to 53 cm; light brownish gray (2.5Y 6/2) clay loam, dark grayish brown (2.5Y 4/2) moist; few medium prominent black (10YR 2/1) organic stains on peds; strong medium prismatic structure; hard, firm, moderately sticky and very plastic; many very fine and fine roots, many very fine and fine tubular pores; continuous faint clay films on ped faces and lining pores; slightly effervescent matrix, few medium strongly effervescent soft masses of carbonate; very strongly alkaline (pH 9.2); gradual smooth boundary. (13 to 33 cm thick)" diff --git a/inst/extdata/OSD/N/NUTIVOLI.json b/inst/extdata/OSD/N/NUTIVOLI.json index 65ca2d55f5..7ce8bd70e2 100644 --- a/inst/extdata/OSD/N/NUTIVOLI.json +++ b/inst/extdata/OSD/N/NUTIVOLI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "NA", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 29 cm (0 to 11 in); brown (7.5YR 5/4) fine sand, brown (7.5YR 4/4) moist; single grain; loose, nonsticky and nonplastic; common very fine and fine, and few medium roots; slightly alkaline;noneffervescent; gradual wavy boundary. (10 to 38 cm [4 to 15 in] thick)" diff --git a/inst/extdata/OSD/O/OLDWOLF.json b/inst/extdata/OSD/O/OLDWOLF.json index ee90d0ede8..ffafee3194 100644 --- a/inst/extdata/OSD/O/OLDWOLF.json +++ b/inst/extdata/OSD/O/OLDWOLF.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "noneffervescent", + "eff_class": "inconsistently effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--35 to 60 inches; yellowish brown (10YR 5/4) to light gray (10YR 7/2) silty sandy shale; inconsistently effervescent to about 40 inches and mostly noneffervescent below." diff --git a/inst/extdata/OSD/O/OLSON.json b/inst/extdata/OSD/O/OLSON.json index 4a07b67a0a..4b01f88bb3 100644 --- a/inst/extdata/OSD/O/OLSON.json +++ b/inst/extdata/OSD/O/OLSON.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqkm--15 to 21 inches, variegated pale-brown (10YR 6/3) and very pale-brown (10YR 7/3) strongly cemented duripan, dark brown (10YR 4/3) and yellowish brown (10YR 5/6) when moist; massive; hard and very hard, firm and very firm; few very fine and fine roots; many very fine and fine interstitial pores; many thin and few moderately thick silica bridges between sand grains; common fine and medium white (10YR 8/1) lime coatings and few fine and medium yellowish-brown (10YR 5/4) opalescent coatings, slightly effervescent in matrix, and violently effervescent in lime coatings; strongly alkaline (pH 8.8); clear, smooth boundary. 5 to 12 inches thick." diff --git a/inst/extdata/OSD/O/ORELLA.json b/inst/extdata/OSD/O/ORELLA.json index 8bc68feadf..915322595b 100644 --- a/inst/extdata/OSD/O/ORELLA.json +++ b/inst/extdata/OSD/O/ORELLA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "very slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--47 to 200 cm; gray (5Y 5/1) to pale olive (5Y 6/3) weakly to moderately cemented claystone of the Chadron formation of the White River group; stratification and vertical fracturing produces medium to coarse angular blocks; prominent strong brown (7.5YR 5/6) to reddish yellow (7.5YR 6/6) dry staining occurs on 5 to 10 percent of fragment surfaces; noneffervescent to very slightly effervescent; strongly alkaline." diff --git a/inst/extdata/OSD/O/ORPHANT.json b/inst/extdata/OSD/O/ORPHANT.json index 89a989ab15..23c5c198a8 100644 --- a/inst/extdata/OSD/O/ORPHANT.json +++ b/inst/extdata/OSD/O/ORPHANT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bqkm--38 to 56 cm; strong brown (7.5YR 5/6) strongly cemented duripan consisting of many thin (3 mm. thick) very pale brown (10YR 7/4) and white (10YR 8/1) continuous laminae mostly horizontal but some vertical and diagonal with weakly cemented material between the laminae; brown (7.5YR 4/4) moist; moderate thin and medium platy structure; very hard and extremely hard, very firm and extremely firm; few very fine roots and some root mats on laminae; common very fine interstitial pores; strongly effervescent but violently effervescent in seams; very strongly alkaline (pH 9.6); clear wavy boundary. (10 to 28 cm thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bqkm--99 to 140 cm; pale brown (10YR 6/3) strongly cemented duripan with many very thin continuous silica laminae and very thin silica bridging, dark brown (10YR 3/3) moist; massive; extremely hard, very firm; common very fine interstitial pores; slightly effervescent and violently effervescent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/O/OWLSHEAD.json b/inst/extdata/OSD/O/OWLSHEAD.json index f655168183..fc8fa6d766 100644 --- a/inst/extdata/OSD/O/OWLSHEAD.json +++ b/inst/extdata/OSD/O/OWLSHEAD.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkqm2 -- 11 to 29 inches; very pale brown (10YR 8/2) and pale brown (10YR 6/3), very weakly cemented and fractured duripan, very pale brown (10YR 7/3) and yellowish brown (10YR 5/4) moist; moderately hard, firm, brittle; few very fine and fine roots; noneffervescent to slightly effervescent; clear wavy boundary. (Combined thickness of the Bkqm horizon is 5 to 25 inches.)" diff --git a/inst/extdata/OSD/P/PAKINI.json b/inst/extdata/OSD/P/PAKINI.json index a6ab30f292..485c0006e1 100644 --- a/inst/extdata/OSD/P/PAKINI.json +++ b/inst/extdata/OSD/P/PAKINI.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Ck--114 to 152 centimeters (45 to 60 inches); yellowish brown (10YR 5/6) medial very fine sandy loam, brown (7.5YR 5/4) moist; massive; slightly hard, friable, nonsticky and nonplastic; slightly effervescent, few pockets are violently effervescent; calcium carbonate increases with depth; slightly alkaline (pH 7.7)." diff --git a/inst/extdata/OSD/P/PANKY.json b/inst/extdata/OSD/P/PANKY.json index 0befb9585e..538a4ed79f 100644 --- a/inst/extdata/OSD/P/PANKY.json +++ b/inst/extdata/OSD/P/PANKY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk2--11 to 17 inches; brown (7.5YR 5/4) loam, brown (7.5YR 4/4) moist; moderate coarse subangular blocky structure; hard, firm, slightly sticky and slightly plastic; few fine and common very fine roots; few fine and common very fine tubular pores; common faint clay films on faces of peds and lining pores; 2 percent gravel; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as common fine and medium irregularly shaped masses; strongly alkaline (pH 8.6); clear wavy boundary. (0 to 22 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 7.7, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bkq1--53 to 66 inches; pink (7.5YR 7/4) loam, brown (7.5YR 5/4) moist; strong very thick platy structure; very hard, very firm, slightly sticky and slightly plastic; few very fine roots; few fine and common very fine tubular pores; matrix is partially cemented in spots by secondary silica; 2 percent gravel; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as common fine and medium irregularly shaped coats on faces of peds; slightly alkaline (pH 7.7); clear smooth boundary. (10 to 25 inches thick)" diff --git a/inst/extdata/OSD/P/PAPOOSE.json b/inst/extdata/OSD/P/PAPOOSE.json index 0214e388c9..a687e9bac9 100644 --- a/inst/extdata/OSD/P/PAPOOSE.json +++ b/inst/extdata/OSD/P/PAPOOSE.json @@ -204,7 +204,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C2--84 to 152 cm; light brown (7.5YR 6/4) very gravelly coarse sand, brown (7.5YR 5/4) moist; single grained, loose; common grading to few very fine roots; many fine and medium interstitialpores; 50 percent gravel; slightly effervescent but noneffervescent in places, some gravel have a thin lime coating on lower sides; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/P/PARAJE.json b/inst/extdata/OSD/P/PARAJE.json index 7dcc8b5619..8702d6d33a 100644 --- a/inst/extdata/OSD/P/PARAJE.json +++ b/inst/extdata/OSD/P/PARAJE.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btk--6 to 12 inches; brown (7.5YR 5/4) very gravelly sandy clay loam, brown (7.5YR 4/4) moist; moderate coarse subangular blocky structure; slightly hard, friable, slightly sticky and moderately plastic; few coarse, few medium, few fine, and common very fine roots; common very fine irregularly shaped pores; 50 percent gravel and 5 percent cobbles; few distinct clay films on faces of peds and lining pores and few faint clay films on faces of peds; noneffervescent in soil matrix and strongly effervescent on rock fragments, secondary calcium carbonate segregated as few fine and medium irregularly shaped coats on undersides of rock fragments; moderately alkaline (pH 8.2); abrupt smooth boundary. (4 to 6 inches thick)" diff --git a/inst/extdata/OSD/P/PARCHIN.json b/inst/extdata/OSD/P/PARCHIN.json index 39c4aba4c1..12d34ab342 100644 --- a/inst/extdata/OSD/P/PARCHIN.json +++ b/inst/extdata/OSD/P/PARCHIN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "have effervescence", + "eff_class": "strong effervescence", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk--15 to 18 inches; grayish brown (2.5Y 5/2) sandy clay loam; dark grayish brown (2.5Y 4/2) moist; moderate medium prismatic structure parting to moderate medium subangular blocky; very hard, firm, slightly sticky and plastic; common fine threads of carbonate accumulations; strong effervescence, matrix does not have effervescence; moderately alkaline; clear wavy boundary. (Combined Btn horizons 6 to 20 inches thick)" diff --git a/inst/extdata/OSD/P/PATTANI.json b/inst/extdata/OSD/P/PATTANI.json index 7553b827cd..71190f6a4d 100644 --- a/inst/extdata/OSD/P/PATTANI.json +++ b/inst/extdata/OSD/P/PATTANI.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bss--25 to 38 cm; grayish brown (10YR 5/2) clay, grayish brown (10YR 5/2) moist; weak very coarse prismatic structure; very hard, very firm, very sticky and very plastic; few very fine and medium roots; common very fine cracks; common oblique slickensides; noneffervescent upper part but slightly effervescent in lower part; moderately alkaline (pH 8.4); gradual wavy boundary. (10 to 33 cm thick)" diff --git a/inst/extdata/OSD/P/PEDREGAL.json b/inst/extdata/OSD/P/PEDREGAL.json index 4c00c275c6..a76b8ca920 100644 --- a/inst/extdata/OSD/P/PEDREGAL.json +++ b/inst/extdata/OSD/P/PEDREGAL.json @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C1--62 to 81 inches; strong brown (7.5YR 5/6) gravelly loamy sand, strong brown (7.5YR 4/6) moist; massive; soft, very friable, slightly sticky and nonplastic; few very fine roots; 30 percent gravel; noneffervescent in spots to slightly effervescent elsewhere; slightly alkaline (pH 7.6); abrupt smooth boundary. (12 to 25 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2C2--81 to 92 inches; reddish brown (5YR 5/4) silt loam, reddish brown (5YR 4/4) moist; massive, platy rock structure; hard, firm, slightly sticky and moderately plastic; noneffervescent in spots to strongly effervescent elsewhere; strongly alkaline (pH 8.6); clear smooth boundary. (0 to 12 inches thick)" diff --git a/inst/extdata/OSD/P/PENINSULA.json b/inst/extdata/OSD/P/PENINSULA.json index 00513e04f4..0b539a0c14 100644 --- a/inst/extdata/OSD/P/PENINSULA.json +++ b/inst/extdata/OSD/P/PENINSULA.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--53 to 62 inches; very pale brown (10YR 7/3) loam, with white (10YR 8/2) coatings, streaks, and spots, yellowish brown (10YR 5/4) moist; massive; slightly hard, very friable, nonsticky and nonplastic; very few roots, common very fine random pores; common medium rounded lime concretions; 9 percent calcium carbonate equivalent; strongly effervescent in matrix and violently effervescent in limy masses and coatings; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/P/PINEVAL.json b/inst/extdata/OSD/P/PINEVAL.json index 3b6cd99cc8..b73c5e446f 100644 --- a/inst/extdata/OSD/P/PINEVAL.json +++ b/inst/extdata/OSD/P/PINEVAL.json @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqk2--53 to 152 cm; variegated extremely gravelly coarse sand; massive; slightly hard, very friable to friable, nonsticky and nonplastic; few very fine roots; 70 percent gravel; continuous weak brittle matrix with several 1.2 to 18 cm thick discontinuous lenses of strong silica cementation; carbonate coats on underside of rock fragments; slightly effervescent in matrix and strongly effervescent on carbonate coats; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/P/POBLANO.json b/inst/extdata/OSD/P/POBLANO.json index 653d8dad7c..bb104400c1 100644 --- a/inst/extdata/OSD/P/POBLANO.json +++ b/inst/extdata/OSD/P/POBLANO.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "violent effervescence", + "eff_class": "slight effervescence", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--27 to 34 inches; brown (7.5YR 5/4) crushed, gravelly clay, brown (7.5YR 4/4) crushed, moist; weak coarse subangular blocky structure; very hard, extremely firm; very sticky and very plastic; few fine roots throughout; few fine dendritic tubular pores; 45 percent clay; 5 percent medium, irregular calcium carbonate masses on faces of peds; 20 percent patchy prominent clay films on faces of peds; 15 percent nonflat subrounded 0.1- to 3-inch monzonite gravel; slight effervescence with violent effervescence in patches by HCL, 1 normal; moderately alkaline; gradual wavy boundary. (4 to 13 inches thick)" diff --git a/inst/extdata/OSD/P/PORTILLO.json b/inst/extdata/OSD/P/PORTILLO.json index 1a01261c43..59f461e56a 100644 --- a/inst/extdata/OSD/P/PORTILLO.json +++ b/inst/extdata/OSD/P/PORTILLO.json @@ -227,7 +227,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2BCk1--34 to 53 inches; reddish brown (5YR 5/4) gravelly loamy sand, reddish brown (5YR 4/4) moist; weak medium subangular blocky structure; soft, very friable, nonsticky and nonplastic; few medium, few fine, and few very fine roots; few fine and few very fine irregularly shaped pores; common thin strata of very gravelly coarse sandy loam; 25 percent gravel and 2 percent cobbles; noneffervescent in spots to violently effervescent elsewhere, secondary calcium carbonate segregated as few coarse irregularly shaped masses and few fine and medium irregularly shaped coats on faces of peds and on rock fragments; strongly alkaline (pH 8.6); clear wavy boundary. (9 to 18 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2BCk2--53 to 66 inches; light reddish brown (2.5YR 6/4) coarse sandy loam, red (2.5YR 4/6) moist; massive; soft, very friable, slightly sticky and nonplastic; few fine and few very fine roots; few fine and few very fine irregularly shaped pores; common thin strata of gravelly loamy coarse sand; 10 percent gravel; noneffervescent in spots to violently effervescent elsewhere, secondary calcium carbonate segregated as few medium and coarse irregularly shaped coats on rock fragments and as soft masses; strongly alkaline (pH 8.8); clear smooth boundary. (0 to 25 inches thick)" @@ -273,7 +273,7 @@ "cf_class": "gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2BCk3--66 to 102 inches; light reddish brown (2.5YR 6/4) gravelly loamy coarse sand, reddish brown (2.5YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; few very fine irregularly shaped pores; common thin strata of very gravelly coarse sandy loam; 30 percent gravel; noneffervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as few medium and coarse irregularly shaped coats on rock fragments and as soft masses; strongly alkaline (pH 8.8); abrupt smooth boundary. (0 to 36 inches thick)" @@ -296,7 +296,7 @@ "cf_class": "gravelly", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--102 to 120 inches; reddish brown (2.5YR 5/4) gravelly loamy coarse sand, reddish brown (2.5YR 4/4) moist; massive; soft, very friable, nonsticky and nonplastic; common thin strata of gravelly coarse sandy loam; 25 percent gravel; noneffervescent in spots to strongly effervescent elsewhere; moderately alkaline (pH 7.9)." diff --git a/inst/extdata/OSD/P/POWLEY.json b/inst/extdata/OSD/P/POWLEY.json index cfa3591322..632cbc98aa 100644 --- a/inst/extdata/OSD/P/POWLEY.json +++ b/inst/extdata/OSD/P/POWLEY.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqkm--27 to 32 inches; grayish brown (10YR 5/2) duripan, brown (10YR 4/3) moist; massive; extremely hard, extremely firm; moderately to strongly cemented by secondary silica; light yellowish brown (10YR 6/4) and very pale brown (10YR 7/4) laminae of silica; few coarse dark brown (10YR 3/3) coats of organic matter; no roots apparent; few very fine tubular pores; secondary carbonates segregated as common coarse very pale brown (10YR 8/3) coats along fractures; noneffervescent matrix and violently effervescent coats; matrix is neutral (pH 6.8) and coats are moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/Q/QUAPAW.json b/inst/extdata/OSD/Q/QUAPAW.json index 9424005949..631fc0096a 100644 --- a/inst/extdata/OSD/Q/QUAPAW.json +++ b/inst/extdata/OSD/Q/QUAPAW.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--10 to 18 inches; brown (7.5YR 4/3) very gravelly sandy loam, dark brown (7.5YR 3/3) moist; moderate medium subangular blocky structure; slightly hard, friable, slightly sticky and nonplastic; common medium, common fine, and few very fine roots; few very fine tubular pores; 35 percent gravel and 5 percent cobbles; noneffervescent to slightly effervescent, secondary calcium carbonate segregated as very few fine irregularly shaped coats on rock fragments; moderately alkaline (pH 8.4); clear wavy boundary. (6 to 14 inches thick)" @@ -158,7 +158,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--18 to 28 inches; brown (7.5YR 4/2) extremely gravelly coarse sandy loam, dark brown (7.5YR 3/2) moist; moderate medium subangular blocky structure; slightly hard, very friable, slightly sticky and nonplastic; common coarse, few medium, common fine, and few very fine roots; few fine and few very fine tubular pores; 50 percent gravel, 15 percent cobbles and 5 percent stones; noneffervescent to strongly effervescent, secondary calcium carbonate segregated as few fine irregularly shaped coats on faces of peds and common medium and large accumulations on rock fragments, 2 percent calcium carbonate equivalent; moderately alkaline (pH 8.4); gradual wavy boundary. (10 to 21 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk3--28 to 44 inches; brown (7.5YR 5/3) extremely gravelly sandy loam, brown (7.5YR 4/3) moist; moderate fine subangular blocky structure, slightly hard, friable, slightly sticky and nonplastic; few coarse, few medium, few fine, and few very fine roots; few very fine tubular pores; 55 percent gravel, 10 percent cobbles and 2 percent stones; noneffervescent to strongly effervescent, secondary calcium carbonate segregated as common fine and medium irregularly shaped coats on faces of peds and on rock fragments, 2 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); clear wavy boundary. (11 to 16 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk1--44 to 55 inches; brown (7.5YR 5/3) extremely gravelly coarse sandy loam, light reddish brown (5YR 6/3) moist; massive; soft, very friable, slightly sticky and nonplastic; few medium, few fine, and few very fine roots; 55 percent gravel, 15 percent cobbles, and 10 percent stones; noneffervescent to strongly effervescent, secondary calcium carbonate segregated as common irregularly shaped coats on rock fragments, 1 percent calcium carbonate equivalent; moderately alkaline (pH 8.2); gradual wavy boundary. (7 to 12 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely cobbly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent to strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "BCk2--55 to 80 inches; brown (7.5YR 5/3) extremely cobbly coarse sandy loam, brown (7.5YR 4/3) moist; massive; soft, very friable, slightly sticky and nonplastic; few medium, few fine, and few very fine roots; 45 percent gravel, 30 percent cobbles and 10 percent stones; noneffervescent to strongly effervescent, secondary calcium carbonate segregated as common fine irregularly shaped masses on rock fragments, 2 percent calcium carbonate equivalent; moderately alkaline (pH 8.4). (0 to 25 inches thick)" diff --git a/inst/extdata/OSD/R/RAMIRES.json b/inst/extdata/OSD/R/RAMIRES.json index a97ef0aaee..1292fcd758 100644 --- a/inst/extdata/OSD/R/RAMIRES.json +++ b/inst/extdata/OSD/R/RAMIRES.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "but effervescent", + "eff_class": "noneffervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk1--56 to 66 cm; pale brown (10YR 6/3) gravelly sandy clay, brown (10YR 4/3) moist; massive; hard, friable, moderately sticky and moderately plastic; few very fine and fine roots; many very fine tubular and interstitial pores; 30 percent gravel; noneffervescent matrix but effervescent in a few medium and coarse soft masses of carbonate; slightly alkaline (pH 7.8); gradual wavy boundary. (0 to 20 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--66 to 86 cm; very pale brown (10YR 8/2) sandy loam, very pale brown (10YR 7/3) moist with many coarse distinct brown (10YR 5/3) and brown (10YR 4/3) mottles; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; few very fine tubular pores; slightly effervescent matrix and strongly effervescent in medium soft seams of carbonate; moderately alkaline (pH 8.2); gradual wavy boundary. (0 to 40 cm thick)" diff --git a/inst/extdata/OSD/R/RANION.json b/inst/extdata/OSD/R/RANION.json index 65293513c4..d06c5a9b4a 100644 --- a/inst/extdata/OSD/R/RANION.json +++ b/inst/extdata/OSD/R/RANION.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "very slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--35 to 55 inches; strong brown (7.5YR 5/6) loamy fine sand, yellowish red (5YR 5/6) moist; massive; loose, loose, nonsticky and nonplastic; many very fine interstitial pores; 2 percent gravel; noneffervescent to very slightly effervescent, neutral (pH 7.2); abrupt smooth boundary. (10 to 30 inches thick)" diff --git a/inst/extdata/OSD/R/REDBULL.json b/inst/extdata/OSD/R/REDBULL.json index 2b50cb799e..a083708c65 100644 --- a/inst/extdata/OSD/R/REDBULL.json +++ b/inst/extdata/OSD/R/REDBULL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "NA", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--25 to 39 inches; reddish yellow (5YR 6/6) very fine sandy loam, yellowish red (5YR 4/6) moist; moderate medium subangular blocky structure; very hard, very friable, non-sticky and non-plastic; very few very fine and coarse roots; very few very fine pores; about 10 percent gravel; carbonates disseminated and as pendants on the undersides of some gravel fragments; about 13 percent calcium carbonate equivalent;violently effervescent; strongly alkaline (pH 8.5); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "NA", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--39 to 51 inches; yellowish red (5YR 4/6) very fine sandy loam, red (2.5YR 4/6) moist; weak medium subangular blocky structure; hard, very friable, nonsticky and nonplastic; about 10 percent gravel; carbonates disseminated and as pendants on the undersides of some gravel fragments; about 10 percent calcium carbonate equivalent;violently effervescent; moderately alkaline (pH 8.4); gradual wavy boundary. (Combined Bk2 and BCk horizons 15 to 44 inches thick)" diff --git a/inst/extdata/OSD/R/REDDALE.json b/inst/extdata/OSD/R/REDDALE.json index 4f62fb2a4b..1c3cfb4ff8 100644 --- a/inst/extdata/OSD/R/REDDALE.json +++ b/inst/extdata/OSD/R/REDDALE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk--16 to 24 inches thick; reddish brown (5YR 4/4) heavy clay loam, dark reddish brown (5YR 3/4) moist; moderate medium subangular blocky structure; hard, friable, sticky and slightly plastic; common distinct clay films on vertical and horizontal faces of peds; strongly effervescent on ped faces and slightly effervescent on ped interiors, calcium carbonate as few distinct masses and in seams; 5 percent fine porcelanite channers; strongly alkaline (pH 8.6); gradual wavy boundary. (5 to 15 inches thick)" diff --git a/inst/extdata/OSD/R/REDMORE.json b/inst/extdata/OSD/R/REDMORE.json index 2485ea50a7..4943fc4a8d 100644 --- a/inst/extdata/OSD/R/REDMORE.json +++ b/inst/extdata/OSD/R/REDMORE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.9, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bkn1--28 to 35 inches; yellowish brown (10YR 5/4) silty clay loam, dark brown (10YR 4/3) moist; weak fine prismatic structure; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; common very fine tubular pores; slightly effervescent from disseminated lime and violently effervescent in fine and medium filaments (4 percent calcium carbonate equivalent); 5 percent gravel; exchangeable sodium percentage of 25; strongly alkaline (pH 8.9); clear wavy boundary. (4 to 12 inches thick)" diff --git a/inst/extdata/OSD/R/RETSOVER.json b/inst/extdata/OSD/R/RETSOVER.json index 9d4a8dbf5a..a33f4ccd9f 100644 --- a/inst/extdata/OSD/R/RETSOVER.json +++ b/inst/extdata/OSD/R/RETSOVER.json @@ -250,7 +250,7 @@ "cf_class": "extremely cobbly", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk--36 to 46 inches; yellowish red (5YR 4/6) and reddish yellow (5YR 7/6) extremely cobbly clay, reddish brown (5YR 4/4) and reddish yellow (5YR 6/6) moist; weak fine subangular blocky structure; very hard, very firm, very sticky and very plastic; few very fine and fine roots; few very fine tubular pores; 30 percent cobble and 30 percent gravel; few faint clay films on ped faces and rock fragments; common coarse soft masses of calcium carbonate; noneffervescent matrix with violently effervescent features; slightly alkaline (pH 7.4); abrupt wavy boundary. (9 to 23 inches thick)" diff --git a/inst/extdata/OSD/R/REVERE.json b/inst/extdata/OSD/R/REVERE.json index c71940b3f6..f56b0f9b7b 100644 --- a/inst/extdata/OSD/R/REVERE.json +++ b/inst/extdata/OSD/R/REVERE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "NA", "distinctness": "gradual", "topography": "wavy", "narrative": "Byg3--89 to 112 cm (35 to 44 inches); olive gray (5Y 5/2) loam; weak fine and medium subangular blocky structure; friable; about 5 percent coarse fragments; 4 percent gypsum in nests of 2 to 7 mm long crystals; common medium distinct olive brown (2.5Y 4/4) Fe concentrations;strongly effervescent; slightly alkaline; gradual wavy boundary. [Combined thickness of the Byg horizons 15 to 74 cm (8 to 29 inches thick)]" diff --git a/inst/extdata/OSD/R/RILLITO.json b/inst/extdata/OSD/R/RILLITO.json index 80b0059f61..7a58eae2f5 100644 --- a/inst/extdata/OSD/R/RILLITO.json +++ b/inst/extdata/OSD/R/RILLITO.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw--1 to 5 inches; light brown (7.5YR 6/4) gravelly sandy loam, brown (7.5YR 4/4) moist; weak fine granular structure; slightly hard, friable, nonsticky and nonplastic; common fine roots; common very fine pores; strongly effervescent and pockets that are violently effervescent; moderately alkaline (pH 8.2); abrupt smooth boundary. (3 to 8 inches thick)" diff --git a/inst/extdata/OSD/R/ROTURA.json b/inst/extdata/OSD/R/ROTURA.json index 9902da572e..e53e2b8ce1 100644 --- a/inst/extdata/OSD/R/ROTURA.json +++ b/inst/extdata/OSD/R/ROTURA.json @@ -411,7 +411,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "slightly effervescent to noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "C--125 to 134 inches; gravel and sand; single grain; loose; most pebbles have very little or no calcium carbonate as coatings; slightly effervescent to noneffervescent; moderately alkaline." diff --git a/inst/extdata/OSD/S/SAEMO.json b/inst/extdata/OSD/S/SAEMO.json index 9a9347146d..960910d2f1 100644 --- a/inst/extdata/OSD/S/SAEMO.json +++ b/inst/extdata/OSD/S/SAEMO.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 7.2, "pH_class": "neutral", - "eff_class": "slight effervescence", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C2--34 to 60 inches; strong brown (7.5YR 5/6) extremely cobbly coarse sand, strong brown (7.5YR 4/6) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine and fine roots; common very fine irregular pores; 35 percent cobble and 40 percent gravel; few thin calcium carbonate coatings on undersides of rock fragments; noneffervescent matrix with slight effervescence on calcium carbonate features; neutral (pH 7.2)." diff --git a/inst/extdata/OSD/S/SALINAS.json b/inst/extdata/OSD/S/SALINAS.json index fb73e46845..362c21a94d 100644 --- a/inst/extdata/OSD/S/SALINAS.json +++ b/inst/extdata/OSD/S/SALINAS.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "smooth", "narrative": "C2--40 to 49 inches; grayish brown (2.5Y 5/2) very fine sandy loam, olive brown (2.5Y 4/3) moist; massive; soft, very firm, nonsticky and nonplastic; many very fine interstitial, few very fine and fine tubular pores; slightly effervescent, disseminated lime, few fine bodies strongly effervescent; moderately alkaline (pH 8.0); gradual smooth boundary. (8 to 12 inches thick)" diff --git a/inst/extdata/OSD/S/SAWABE.json b/inst/extdata/OSD/S/SAWABE.json index 0a91a7d571..d3916a2bfc 100644 --- a/inst/extdata/OSD/S/SAWABE.json +++ b/inst/extdata/OSD/S/SAWABE.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.2, "pH_class": "NA", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqkm --15 to 22 inches; brownish-yellow (10YR 6/6) indurated gravelly duripan with many continuous very thin very pale brown and white (10YR 7/3 and 8/1) silica and lime laminae, yellowish-brown (10YR 5/4) moist; massive; extremely hard, extremely firm, few very fine interstitial pores; many silica ridges between sand grains and all gravel are silica and lime coated; strongly effervescent in matrix but violently effervescent in limy part of laminae; moderatly alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/S/SCALFAR.json b/inst/extdata/OSD/S/SCALFAR.json index afe6bf5569..8975f42b63 100644 --- a/inst/extdata/OSD/S/SCALFAR.json +++ b/inst/extdata/OSD/S/SCALFAR.json @@ -181,7 +181,7 @@ "cf_class": "extremely cobbly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Bkq--64 to 94 cm; pale brown (10YR 6/3) extremely cobbly sandy loam, brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; few very fine roots; many very fine and fine tubular pores; 45 percent gravel and 25 percent cobbles; many fine coats of secondary carbonates and silica on bottoms of gravel; secondary carbonates also segregated in common fine and medium masses; slightly effervescent matrix and violently effervescent carbonates; slightly alkaline (pH 7.8); clear wavy boundary. (25 to 38 cm thick)" diff --git a/inst/extdata/OSD/S/SEAFORTH.json b/inst/extdata/OSD/S/SEAFORTH.json index d7bb7ac947..699134780a 100644 --- a/inst/extdata/OSD/S/SEAFORTH.json +++ b/inst/extdata/OSD/S/SEAFORTH.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescence", "distinctness": "clear", "topography": "irregular", "narrative": "A--23 to 38 centimeters (9 to 15 inches); very dark gray (10YR 3/1) loam, very dark grayish brown (2.5Y 3/2) crushed, moderate very fine and fine subangular blocky structure; friable; many black (10YR 2/1) and grayish brown (2.5Y 5/2) worm casts and fillings in root channels; about 3 percent gravel; slightly effervescence grading to strongly effervescent in parts; moderately alkaline; clear irregular boundary. (Combined thickness of A horizons is [20 to 51 centimeters (8 to 20 inches)]" diff --git a/inst/extdata/OSD/S/SEVILLE.json b/inst/extdata/OSD/S/SEVILLE.json index d3413ac15e..cff3013351 100644 --- a/inst/extdata/OSD/S/SEVILLE.json +++ b/inst/extdata/OSD/S/SEVILLE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bqk--52 to 62 inches; reddish brown (5YR 5/4) sandy clay loam, reddish brown (5YR 4/4) moist; massive; hard, friable, sticky and slightly plastic; 10 percent discontinuous weak silica cementation; slightly effervescent, carbonates disseminated and violently effervescent, carbonates segregated as common fine and medium soft masses; moderately alkaline (pH 8.0)." diff --git a/inst/extdata/OSD/S/SILVERBOW.json b/inst/extdata/OSD/S/SILVERBOW.json index 5960e07287..fa4ce41b89 100644 --- a/inst/extdata/OSD/S/SILVERBOW.json +++ b/inst/extdata/OSD/S/SILVERBOW.json @@ -135,7 +135,7 @@ "cf_class": "very stony", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk--20 to 33 cm; brown (10YR 5/3) very stony clay loam, brown (10YR 5/3) moist; moderate medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine and fine roots; many fine tubular pores; few faint clay films on faces of peds; 20 percent stones, 20 percent cobbles, and 10 percent gravel; strongly effervescent and violently effervescent; common large faint light gray (10YR 7/2) carbonate segregations occur; strongly alkaline (pH 8.5); abrupt wavy boundary. (5 to 18 cm thick)" diff --git a/inst/extdata/OSD/S/SLAN.json b/inst/extdata/OSD/S/SLAN.json index 05c8a60214..35b0d468a2 100644 --- a/inst/extdata/OSD/S/SLAN.json +++ b/inst/extdata/OSD/S/SLAN.json @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bt--5 to 18 inches; reddish yellow (5YR 6/6) gravelly loam, yellowish red (5YR 5/6) moist; moderate medium subangular blocky structure; hard, firm, moderately sticky and moderately plastic; common very fine and fine roots; common very fine and fine tubular pores; common faint clay films on faces of peds; 20 percent gravel; strongly effervescent (noneffervescent in areas of clay films); moderately alkaline (pH 8.0); clear wavy boundary. (11 to 14 inches thick)" diff --git a/inst/extdata/OSD/S/SOBSON.json b/inst/extdata/OSD/S/SOBSON.json index a156291d39..410af6579d 100644 --- a/inst/extdata/OSD/S/SOBSON.json +++ b/inst/extdata/OSD/S/SOBSON.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "mildly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--18 to 24 inches; light olive brown (2.5Y 5/4) fine sandy loam, olive brown (2.5Y 4/4) moist; massive; slightly hard, very friable, nonsticky and slightly plastic; few very fine and fine roots; noneffervescent matrix with a few large soft pockets of lime which are strongly effervescent; matrix is mildly alkaline (pH 7.4); clear wavy boundary." diff --git a/inst/extdata/OSD/S/SPOOKY.json b/inst/extdata/OSD/S/SPOOKY.json index c93d1feabe..1d30159ef9 100644 --- a/inst/extdata/OSD/S/SPOOKY.json +++ b/inst/extdata/OSD/S/SPOOKY.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.1, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "C3--38 to 46 inches; reddish yellow (5YR 6/6) loamy fine sand, yellowish red (5YR 5/6) moist; single grain; loose, loose, nonsticky and nonplastic; many very fine interstitial pores; 3 percent gravel; noneffervescent to slightly effervescent, moderately alkaline (pH 8.1); abrupt smooth boundary. (10 to 28 inches thick)" diff --git a/inst/extdata/OSD/S/SPOTTEDHORSE.json b/inst/extdata/OSD/S/SPOTTEDHORSE.json index 91eac42168..109d0c3cdd 100644 --- a/inst/extdata/OSD/S/SPOTTEDHORSE.json +++ b/inst/extdata/OSD/S/SPOTTEDHORSE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "NA", - "eff_class": "noneffervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cr--35 to 60 inches; soft shale; slightly effervescent in the upper 9 inches and noneffervescent below." diff --git a/inst/extdata/OSD/S/STAMPEDE.json b/inst/extdata/OSD/S/STAMPEDE.json index adb38b5c35..7579d66728 100644 --- a/inst/extdata/OSD/S/STAMPEDE.json +++ b/inst/extdata/OSD/S/STAMPEDE.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqkm--71 to 84 cm; light gray (10YR 7/2) cemented material, yellowish brown (10YR 5/4) moist; massive; extremely hard, extremely firm; indurated by opaline silica; few very fine tubular pores; few distinct clay films on fracture surfaces; thin (0.1 to 1 mm) laminae of opaline silica on the horizon surface, along fractures, and lining pores; secondary carbonates segregated as coats and filaments; noneffervescent matrix with violently effervescent coats and filaments; slightly alkaline (pH 7.6). (13 to 25 cm thick)" diff --git a/inst/extdata/OSD/S/SURGE.json b/inst/extdata/OSD/S/SURGE.json index 1a9970c187..6f35f65754 100644 --- a/inst/extdata/OSD/S/SURGE.json +++ b/inst/extdata/OSD/S/SURGE.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bw--2 to 7 inches; brown (7.5YR 4/3) sandy clay loam, very dark brown (7.5YR 2.5/2) moist; weak fine subangular blocky structure; soft, very friable, moderately sticky and moderately plastic; few very fine roots; many very fine irregular and tubular pores; noneffervescent to slightly effervescent; moderately alkaline (pH 8.0); abrupt smooth boundary (3 to 15 inches thick)." diff --git a/inst/extdata/OSD/S/SUSIE_CREEK.json b/inst/extdata/OSD/S/SUSIE_CREEK.json index 9b177690fd..ceccd90db0 100644 --- a/inst/extdata/OSD/S/SUSIE_CREEK.json +++ b/inst/extdata/OSD/S/SUSIE_CREEK.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "2Bqkm2--101 to 145 cm; light gray (10YR 7/2) coarse sandy loam that is weakly silica-cemented, brown (10YR 5/3) moist; massive; hard, firm, nonsticky and nonplastic; very few very fine roots; very few fine tubular pores; slightly effervescent but strongly effervescent in fine irregular seams; moderately alkaline (pH 8.2); clear smooth boundary. (0 to 50 cm thick)" diff --git a/inst/extdata/OSD/T/TAGUS.json b/inst/extdata/OSD/T/TAGUS.json index 659c599815..3294d0f383 100644 --- a/inst/extdata/OSD/T/TAGUS.json +++ b/inst/extdata/OSD/T/TAGUS.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk1--17 to 27 inches; brown (10YR 5/3) loam, dark grayish brown (2.5Y 4/2) moist; weak medium and fine subangular blocky structure; slightly hard, friable, slightly sticky and plastic; common medium, fine, and very fine roots; many fine and very fine tubular pores; slightly effervescent, disseminated carbonates and strongly effervescent, carbonates segregated in common medium and fine irregular soft masses; moderately alkaline (pH 8.2); clear wavy boundary. (5 to 15 inches thick)." @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk2--27 to 40 inches; light yellowish brown (2.5Y 6/4) fine sandy loam, brown (10YR 4/3) moist; massive; slightly hard, friable, nonsticky and slightly plastic; common medium, fine, and very fine roots; many fine and very fine tubular pores; strongly effervescent, disseminated carbonates and violently effervescent, carbonates segregated in common medium and fine irregular filaments and soft masses; moderately alkaline (pH 8.3); clear wavy boundary. (7 to 18 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk3--40 to 63 inches; light yellowish brown (2.5Y 6/4) loam, brown (10YR 4/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; common fine and very fine roots; many fine and very fine tubular pores; slightly effervescent, disseminated carbonates and strongly effervescent, carbonates segregated in few fine irregular filaments; strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/T/TALCOT.json b/inst/extdata/OSD/T/TALCOT.json index b9dd84aa77..b141883d0d 100644 --- a/inst/extdata/OSD/T/TALCOT.json +++ b/inst/extdata/OSD/T/TALCOT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "NA", "distinctness": "gradual", "topography": "wavy", "narrative": "A2--19 to 23 inches; very dark gray (5Y 3/1) silty clay loam, few narrow tongues of black (5Y 2/1) and olive gray (5Y 5/2); weak very fine subangular blocky structure; friable; few fine fragments of snail shells; few fine distinct olive (5Y 5/3) Fe concentrations and dark brown (7.5YR 3/2) stains along old root channels;slightly effervescent; slightly alkaline; gradual wavy boundary. (0 to 6 inches thick)" diff --git a/inst/extdata/OSD/T/TANAZZA.json b/inst/extdata/OSD/T/TANAZZA.json index 8c2c46607a..568feed1ee 100644 --- a/inst/extdata/OSD/T/TANAZZA.json +++ b/inst/extdata/OSD/T/TANAZZA.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2Bky3--31 to 37 inches; pale brown (10YR 6/3) gypsiferous material, yellowish brown (10YR 5/4) moist; massive; slightly hard; firm, moderately sticky and moderately plastic; few fine roots; common fine tubular pores; apparent texture of the fine earth material is clay loam; 50 percent large honeycomb gypsum masses; few white (10YR 8/1) calcium carbonate masses; slightly effervescent matrix and strongly effervescent calcium carbonate masses (15 percent calcium carbonate equivalent in the fine earth fraction); strongly alkaline (pH 8.6); abrupt smooth boundary. (4 to 7 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bky5--45 to 61 inches; light brownish gray (10YR 6/2) gypsiferous material, yellowish brown (10YR 5/4) moist; massive; matrix is slightly hard, friable, moderately sticky and moderately plastic; few fine roots; few fine tubular pores; apparent texture of the fine earth material is silty clay loam; 75 percent large honeycomb gypsum masses; noneffervescent; common small slightly effervescent patches (15 percent calcium carbonate equivalent in the fine earth fraction); strongly alkaline (pH 8.6)." diff --git a/inst/extdata/OSD/T/TAYLOR_CREEK.json b/inst/extdata/OSD/T/TAYLOR_CREEK.json index 4d43388dd6..405a175d0b 100644 --- a/inst/extdata/OSD/T/TAYLOR_CREEK.json +++ b/inst/extdata/OSD/T/TAYLOR_CREEK.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btk--101 to 152 cm; pale brown (10YR 6/3) gravelly clay, brown (10YR 5/3) moist; moderate medium subangular blocky structure; very hard, very firm, very sticky and very plastic; few very fine roots; few very fine tubular pores; continuous prominent clay films on peds and in pores; 20 percent gravel and 5 percent cobbles; noneffervescent but strongly effervescent in a very few, fine, distinct white (10YR 8/1) carbonate segregations; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/T/TENDERFOOT.json b/inst/extdata/OSD/T/TENDERFOOT.json index 3ecf7c1275..e2fdb410d6 100644 --- a/inst/extdata/OSD/T/TENDERFOOT.json +++ b/inst/extdata/OSD/T/TENDERFOOT.json @@ -135,7 +135,7 @@ "cf_class": "extremely cobbly", "pH": 7, "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bk--9 to 17 inches; reddish brown (5YR 4/4) extremely cobbly clay loam, reddish brown (5YR 4/3) moist; moderate fine subangular blocky structure; slightly hard, friable, sticky and slightly plastic; common very fine roots; few very fine tubular pores; 40 percent cobble and 25 percent gravel of calcium carbonate-coated limestone and hardpan fragments; slightly effervescent in the fine earth and strongly effervescent on coatings; neutral (pH 7.0); abrupt wavy boundary (7 to 9 inches thick)" diff --git a/inst/extdata/OSD/T/TETILLA.json b/inst/extdata/OSD/T/TETILLA.json index b7eaefab41..50e93a8019 100644 --- a/inst/extdata/OSD/T/TETILLA.json +++ b/inst/extdata/OSD/T/TETILLA.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Btk1--21 to 40 inches; light brown (7.5YR 6/4) loam, brown (7.5YR 4/4) moist; weak coarse prismatic structure parting to moderate coarse subangular blocky; hard, firm, slightly sticky and slightly plastic; few fine and common very fine roots; common very fine tubular pores; common faint clay films on faces of peds and lining pores; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as common fine and medium irregularly shaped coats on faces of peds; moderately alkaline (pH 8.2); gradual wavy boundary. (8 to 20 inches thick)" @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 7.9, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk2--40 to 57 inches; light brown (7.5YR 6/4) sandy clay loam, brown (7.5YR 4/4) moist; weak medium prismatic structure parting to moderate medium subangular blocky; hard, friable, slightly sticky and slightly plastic; few fine and common very fine roots; common very fine tubular pores; common faint clay films on faces of peds and lining pores; 2 percent gravel; slightly effervescent in spots to strongly effervescent elsewhere, secondary calcium carbonate segregated as many medium irregularly shaped coats on faces of peds and few medium irregularly shaped coats on undersides of rock fragments; moderately alkaline (pH 7.9); abrupt wavy boundary. (10 to 24 inches thick)" diff --git a/inst/extdata/OSD/T/THEECAN.json b/inst/extdata/OSD/T/THEECAN.json index 2a29487f92..700805699c 100644 --- a/inst/extdata/OSD/T/THEECAN.json +++ b/inst/extdata/OSD/T/THEECAN.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bt4--33 to 40 inches; mixed yellowish red (5YR 5/6) and strong brown (7.5YR 5/6) sandy clay, yellowish red (5YR 4/6) and strong brown (7.5YR 4/6) moist; moderate medium prismatic structure; hard, firm, sticky and very plastic; few very fine and fine roots; common very fine irregular and few very fine tubular pores; common faint clay films on ped faces and in pores; noneffervescent to slightly effervescent; neutral (pH 7.2); abrupt smooth boundary. (5 to 10 inches thick)" @@ -227,7 +227,7 @@ "cf_class": "extremely gravelly", "pH": 7.2, "pH_class": "neutral", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "2C--40 to 58 inches; mixed yellowish red (5YR 5/6) and strong brown (7.5YR 5/6) extremely gravelly loamy coarse sand, yellowish red (5YR 4/6) moist; massive; slightly hard, very friable, nonsticky and nonplastic; few very fine to medium roots; common very fine and fine irregular pores; noneffervescent to slightly effervescent; 65 percent gravel and 10 percent cobble; neutral (pH 7.2); abrupt smooth boundary. (0 to 18 inches thick)" @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": 7.2, "pH_class": "neutral", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent to slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "3C--58 to 65 inches; mixed yellowish red (5YR 5/6) and yellowish red (5YR 4/6), and strong brown 7.5YR 5/6) sandy clay loam, yellowish red (5YR 5/6) and yellowish red (5YR 4/6) moist; massive; slightly hard, friable, slightly sticky and nonplastic; few very fine and fine roots; common very fine irregular pores; noneffervescent to slightly effervescent; neutral (pH 7.2)." diff --git a/inst/extdata/OSD/T/TICKAPOO.json b/inst/extdata/OSD/T/TICKAPOO.json index 19bd9673c1..9a69615aac 100644 --- a/inst/extdata/OSD/T/TICKAPOO.json +++ b/inst/extdata/OSD/T/TICKAPOO.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--0 to 8 cm; light gray (10YR 7/2) sandy loam, brown (10YR 5/3) moist; weak thick platy structure; soft, very friable, nonsticky and nonplastic; few very fine and fine roots; many very fine and fine, and few medium vesicular pores; 10 percent gravel, noneffervescent in most of this horizon but slightly effervescent in spots; strongly alkaline (pH 8.5); abrupt smooth boundary. (5 to 10 cm thick)" diff --git a/inst/extdata/OSD/T/TIMPER.json b/inst/extdata/OSD/T/TIMPER.json index 3fde0115cd..6700e490fa 100644 --- a/inst/extdata/OSD/T/TIMPER.json +++ b/inst/extdata/OSD/T/TIMPER.json @@ -181,7 +181,7 @@ "cf_class": "gravelly", "pH": 8.9, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "violently effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Bqk--46 to 69 cm; light gray (10YR 7/1) stratified gravelly loamy sand and sand, grayish brown (10YR 5/2) moist; moderate thick platy structure due to stratification and weak cementation, single grained in other strata; hard in some strata, loose in others, firm and loose when moist, nonsticky and nonplastic; common fine roots that run horizontally between plates; common very fine interstitial pores in cemented strata and many very fine and fine interstitial pores in other strata; 20 percent gravel, violently effervescent on the outer faces of plates and slightly effervescent within plates and noncemented strata; strongly alkaline (pH 8.9); clear wavy boundary. (0 to 30 cm thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 9, "pH_class": "strongly alkaline", - "eff_class": "noneffervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "3Bqkm--69 to 91 cm; light gray (10YR 7/1) strongly silica-carbonate cemented duripan, grayish brown (10YR 5/2) moist; weak thick platy structure; extremely hard, very firm, nonsticky, nonplastic; few fine roots; few fine tubular pores; slightly effervescent in fractures and noneffervescent elsewhere but has thin very pale brown (10YR 8/2) and very pale brown (10YR 7/3) moist sheets where carbonate and silica have accumulated on plate tops; strongly alkaline (pH 9.0); abrupt wavy boundary. (0 to 30 cm thick)" diff --git a/inst/extdata/OSD/T/TIPPIPAH.json b/inst/extdata/OSD/T/TIPPIPAH.json index bf38caaae2..4ff8ef5513 100644 --- a/inst/extdata/OSD/T/TIPPIPAH.json +++ b/inst/extdata/OSD/T/TIPPIPAH.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btn--20 to 46 cm; light brown (7.5YR 6/4) sandy clay loam, brown (7.5YR 5/4) moist; strong medium prismatic structure; hard to very hard, friable, slightly sticky and slightly plastic; few medium, and many very fine and fine roots; many very fine vesicular pores in upper part and common very fine interstitial pores in the lower part; many faint and few distinct clay films on ped faces; noneffervescent but strongly effervescent where few fine and medium faint very pale brown (10YR 8/2) carbonate filaments occur; strongly alkaline (pH 8.6); clear wavy boundary. (20 to 36 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btnk--46 to 61 cm; light brown (7.5YR 6/4) gravelly sandy clay loam , brown (7.5YR 5/4) moist; weak medium subangular blocky structure; hard, friable, slightly sticky and slightly plastic; few very fine and fine roots; many very fine interstitial, and few fine tubular pores; common faint clay films on ped faces and in pores; 25 percent gravel; noneffervescent but strongly effervescent where few medium distinct very pale brown (10YR 8/2) carbonate filaments occur and where carbonate coats the underside of gravel; strongly alkaline (pH 8.6); clear wavy boundary. (13 to 20 cm thick)" @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "2Btnk--61 to 71 cm; light brown (7.5YR 6/4) very gravelly loamy coarse sand, brown (7.5YR 5/4) moist; weak fine subangular blocky structure; slightly hard, very friable, nonsticky, nonplastic; many very fine and fine roots; many very fine interstitial pores; few faint clay bridges between sand grains; 40 percent gravel; noneffervescent matrix, but strongly effervescent where few medium distinct very pale brown (10YR 8/2) carbonate filaments occur and where carbonate forms thin coats on gravel; moderately alkaline (pH 8.2); clear wavy boundary. (8 to 15 cm thick.)" diff --git a/inst/extdata/OSD/T/TOMEL.json b/inst/extdata/OSD/T/TOMEL.json index c273a3721e..cf945de248 100644 --- a/inst/extdata/OSD/T/TOMEL.json +++ b/inst/extdata/OSD/T/TOMEL.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk--23 to 30 cm; very pale brown (10YR 7/3) very gravelly sandy loam, brown (10YR 4/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; common very fine roots; few very fine tubular pores; 55 percent gravel; strongly effervescent; gravel have white (10YR 8/1) carbonate coatings that are violently effervescent and very pale brown (10YR 7/4) silica coatings on the underside; strongly alkaline (pH 8.8); abrupt smooth boundary. (0 to 20 cm thick)" diff --git a/inst/extdata/OSD/T/TONKIN.json b/inst/extdata/OSD/T/TONKIN.json index a348fc7abc..4afd301155 100644 --- a/inst/extdata/OSD/T/TONKIN.json +++ b/inst/extdata/OSD/T/TONKIN.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Ck--81 to 99 cm; light gray (10YR 7/2) fine sandy loam, dark grayish brown (10YR 4/2) moist; massive; soft, very friable, nonsticky and nonplastic; common very fine roots concentrated in pockets; many very fine interstitial pores; noneffervescent except strongly effervescent in carbonate concretions and masses 1 to 5mm. in diameter; very strongly alkaline (pH 9.6); abrupt wavy boundary. (O to 50 cm thick)" diff --git a/inst/extdata/OSD/T/TOULON.json b/inst/extdata/OSD/T/TOULON.json index 47732fb2d6..174d07ef5d 100644 --- a/inst/extdata/OSD/T/TOULON.json +++ b/inst/extdata/OSD/T/TOULON.json @@ -181,7 +181,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent to strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk--51 to 157 cm; gray (N 5/) and pinkish white (7.5YR 8/2) very gravelly very coarse sand, very dark gray (N 3/) and pinkish white (7.5YR 8/2) moist; common colorless quartz grains and other very pale brown (10YR 7/3) sand and fine gravel; single grain; loose, nonsticky and nonplastic; many very fine interstitial pores; 40 percent gravel and 15 percent cobbles; slightly effervescent to strongly effervescent where carbonates coat the undersides of gravel and cobbles; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/T/TRIPLEN.json b/inst/extdata/OSD/T/TRIPLEN.json index efa0984b01..f9387ab2c3 100644 --- a/inst/extdata/OSD/T/TRIPLEN.json +++ b/inst/extdata/OSD/T/TRIPLEN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.8, "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Bw--8 to 20 cm; light brownish gray (10YR 6/2) silt loam, dark grayish brown (10YR 4/2) moist; weak medium prismatic structure; slightly hard, very friable, nonsticky and nonplastic; common very fine and few medium and fine roots; many very fine interstitial, common very fine and few fine tubular pores; noneffervescent but strongly effervescent on randomly scattered tuff fragments; neutral (pH 6.8); clear smooth boundary. (10 to 20 cm thick)" diff --git a/inst/extdata/OSD/T/TRUJILLO.json b/inst/extdata/OSD/T/TRUJILLO.json index 16c5cf74d4..9f07ea0ef3 100644 --- a/inst/extdata/OSD/T/TRUJILLO.json +++ b/inst/extdata/OSD/T/TRUJILLO.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 7.5, "pH_class": "slightly alkaline", - "eff_class": "noneffervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bk--58 to 70 inches; yellowish brown (10YR 5/4) fine sandy loam, dark yellowish brown (10YR 4/4) moist; massive; slightly hard, friable, nonsticky and nonplastic; few fine and very fine roots; few fine irregular soft masses of lime; slightly effervescent (matrix is noneffervescent); slightly alkaline (pH 7.5)." diff --git a/inst/extdata/OSD/T/TSIRKU.json b/inst/extdata/OSD/T/TSIRKU.json index 9fbd4a7ea5..856043600c 100644 --- a/inst/extdata/OSD/T/TSIRKU.json +++ b/inst/extdata/OSD/T/TSIRKU.json @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "NA", "distinctness": "NA", "topography": "NA", "narrative": "C2--41 to 60 inches; olive gray (5Y 4/2) extremely gravelly sand; single grain; loose; 50 percent gravel, 20 percent cobbles;strongly effervescent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/T/TUGAS.json b/inst/extdata/OSD/T/TUGAS.json index 45cd79d5c0..42f9ac0c7b 100644 --- a/inst/extdata/OSD/T/TUGAS.json +++ b/inst/extdata/OSD/T/TUGAS.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Btk--7 to 11 inches; reddish brown (5YR 5/4) very gravelly sandy loam, reddish brown (5YR 4/4) moist; weak very fine granular structure; soft, very friable, nonsticky and nonplastic; few fine roots; 35 percent gravel; fine earth, strongly effervescent, some gravel tops are noneffervescent; sand grains are discontinuously calcium carbonate coated, they also have discontinuous coatings of clay; most gravel have calcium carbonate coated bottoms but tops of many gravel are calcium carbonate free; moderately alkaline; clear wavy boundary. (0 to 6 inches thick)" diff --git a/inst/extdata/OSD/T/TULERT.json b/inst/extdata/OSD/T/TULERT.json index 596084219a..b38d254830 100644 --- a/inst/extdata/OSD/T/TULERT.json +++ b/inst/extdata/OSD/T/TULERT.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "slightly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "IIB22tcab--20 to 60 inches; strong brown (7.5YR 5/6) sandy clay loam, dark brown (7.5YR 4/4) mosit; moderate medium angular blocky structure; very hard, firm, slightly sticky, slightly plastic; few fine roots; few fine tubular pores; common thin clay films on faces of peds and many thin clay films bridging mineral grains; slightly effervescent matrix with violently effervescent spots; strongly alkaline (pH 8.8); abrupt wavy boundary. (5 to 6 inches thick)" diff --git a/inst/extdata/OSD/T/TURKEYTRACK.json b/inst/extdata/OSD/T/TURKEYTRACK.json index 78f3428154..8eaec7312b 100644 --- a/inst/extdata/OSD/T/TURKEYTRACK.json +++ b/inst/extdata/OSD/T/TURKEYTRACK.json @@ -227,7 +227,7 @@ "cf_class": "very cobbly", "pH": 7.8, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "Btk--46 to 63 inches; yellowish red (5YR 4/6) and pinkish white (5YR 8/2) very cobbly sandy clay, yellowish red (5YR 4/6) and pink (5YR 7/3) moist; strong medium angular blocky structure; very hard, very firm, sticky and very plastic; few very fine and fine roots; few very fine tubular pores; 25 percent cobble and 30 percent gravel; common faint to distinct clay films in pores and on ped faces; few medium soft calcium carbonate masses and thin coatings on rock fragments; noneffervescent soil matrix with violently effervescent features; slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/U/UNSEL.json b/inst/extdata/OSD/U/UNSEL.json index cc3a1ea795..3a3b37c510 100644 --- a/inst/extdata/OSD/U/UNSEL.json +++ b/inst/extdata/OSD/U/UNSEL.json @@ -112,7 +112,7 @@ "cf_class": "gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk1--10 to 18 cm; pale brown (10YR 6/3) gravelly clay loam, brown (7.5YR 5/4) moist; weak medium prismatic structure parting to weak fine and medium subangular blocky; slightly hard, very friable, moderately sticky and moderately plastic; common very fine roots; few very fine and fine tubular pores; few faint clay films on faces of peds, lining pores, and bridging sand grains; 20 percent gravel; secondary carbonates segregated as few fine and medium masses; noneffervescent matrix and strongly and violently effervescent carbonate masses; moderately alkaline (pH 8.4); abrupt wavy boundary. (5 to 26 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "gravelly", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Btk2--18 to 25 cm; pale brown (10YR 6/3) gravelly clay loam, yellowish brown (10YR 5/4) moist; weak fine and medium subangular blocky structure; slightly hard, very friable, moderately sticky and moderately plastic; common very fine and fine roots; few very fine tubular pores; few distinct clay films on faces of peds, lining pores, and bridging sand grains; 25 percent gravel; noneffervescent matrix, strongly and violently effervescent segregated fine and medium carbonate masses; strongly alkaline (pH 8.6); abrupt smooth boundary. (0 to 20 cm thick)" diff --git a/inst/extdata/OSD/V/VALMY.json b/inst/extdata/OSD/V/VALMY.json index 283b47465b..25895aa791 100644 --- a/inst/extdata/OSD/V/VALMY.json +++ b/inst/extdata/OSD/V/VALMY.json @@ -204,7 +204,7 @@ "cf_class": "gravelly", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "clear", "topography": "wavy", "narrative": "C'qk2--66 to 94 cm; pale yellow (2.5Y 7/4) very paragravelly sandy loam, olive brown (2.5Y 4/4) moist; massive; hard, friable, nonsticky and nonplastic; few very fine roots; few very fine tubular and many very fine interstitial pores; 45 percent 2.5 to 8 cm, very hard, firm, brittle durinodes; has weakly silica-cemented masses in pockets; common thin silica films lining pores, as bridges between sand grains, and as discontinuous, randomly oriented laminae; noneffervescent matrix; common fine very pale brown (10YR 8/2) strongly effervescent seams of secondary carbonate; very strongly alkaline (pH 9.6); clear wavy boundary. (10 to 36 cm thick)" diff --git a/inst/extdata/OSD/V/VEBAR.json b/inst/extdata/OSD/V/VEBAR.json index c417cf07cd..2f0290b61d 100644 --- a/inst/extdata/OSD/V/VEBAR.json +++ b/inst/extdata/OSD/V/VEBAR.json @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "slight effervescence", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "Cr--32 to 60 inches; light yellowish brown (2.5Y 6/4) soft sandstone; strong effervescence in upper part and slight effervescence in lower part; lense of hard sandstone 3 inches thick at 43 inches with carbonate accumulations around hard fragments; moderately alkaline." diff --git a/inst/extdata/OSD/V/VINSAD.json b/inst/extdata/OSD/V/VINSAD.json index 241adf7cc8..dbc304650a 100644 --- a/inst/extdata/OSD/V/VINSAD.json +++ b/inst/extdata/OSD/V/VINSAD.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cz1--5 to 91 cm; variegated very pale brown (10YR 8/2), white (N 8/0), and light gray (2.5Y 7/2) very fine sandy loam, pale brown (10YR 6/3), pale yellow (2.5Y 8/2) and pale yellow (2.5Y 8/4) moist; massive; soft and very hard, friable and firm, nonsticky and slightly plastic; common very fine and few fine roots; few very fine tubular pores, common very fine interstitial pores; 3.1 percent salt; noneffervescent and strongly effervescent; neutral (pH 6.6); abrupt wavy boundary. (0 to 90 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cz2--91 to 107 cm; light gray (2.5Y 7/2) and white (N 8/0) very fine sandy loam, brown (10YR 4/3) and pale brown (10YR 6/3) moist; massive; very hard, very firm; few very fine roots; few very fine tubular, and common very fine and fine interstitial pores; 3.4 percent salt; noneffervescent and strongly effervescent; neutral (pH 6.6); abrupt wavy boundary. (0 to 50 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cz--107 to 152 cm; light brownish gray (2.5Y 6/2) and very pale brown (10YR 7/3) silty clay loam, brown (10YR 4/3) moist; moderate fine and very fine angular blocky structure very hard and soft, firm and friable, slightly sticky and slightly plastic; few very fine roots; few very fine tubular, and common fine and very fine interstitial pores; 1.2 percent salt; noneffervescent and strongly effervescent; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/V/VIRGIN_RIVER.json b/inst/extdata/OSD/V/VIRGIN_RIVER.json index c905d10f8e..27d6c7b76b 100644 --- a/inst/extdata/OSD/V/VIRGIN_RIVER.json +++ b/inst/extdata/OSD/V/VIRGIN_RIVER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "violently effervescent", + "eff_class": "NA", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; light reddish brown (5YR 6/3) silty clay, reddish brown (5YR 3/4) moist; moderate medium and fine granular structure; hard, friable, very sticky, very plastic; plentiful very fine roots; many very fine interstitial and common very fine tubular pores; few worm casts;violently effervescent; moderately alkaline (pH 8.4); abrupt smooth boundary. (4 to 9 inches thick)." diff --git a/inst/extdata/OSD/V/VYLACH.json b/inst/extdata/OSD/V/VYLACH.json index 0e5413cd06..150a69d33f 100644 --- a/inst/extdata/OSD/V/VYLACH.json +++ b/inst/extdata/OSD/V/VYLACH.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.8, "pH_class": "strongly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Bqkm--43 to 69 cm; light brownish gray (10YR 6/2) duripan, dark brown (10YR 3/3) moist; massive; very hard, very firm; weakly to strongly cemented by secondary silica; few discontinuous laminae of opaline silica; few very fine roots in fractures; 50 to 70 percent fine gravel cemented within matrix of stratified sandy material; secondary carbonates segregated in few fine filaments; noneffervescent matrix and slightly effervescent filaments; strongly alkaline (pH 8.8) abrupt wavy boundary. (15 to 25 cm thick)" diff --git a/inst/extdata/OSD/W/WABEK.json b/inst/extdata/OSD/W/WABEK.json index c2567ba772..127bfc8845 100644 --- a/inst/extdata/OSD/W/WABEK.json +++ b/inst/extdata/OSD/W/WABEK.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "slight effervescence", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C--9 to 60 inches; pale brown (10YR 6/3) very gravelly coarse sand, grayish brown (10YR 5/2) moist; stratified with varying amounts and mixtures of gravel and cobblestones; single grain; few roots in upper 10 inches; about 50 percent coarse fragments; strong effervescence, decreasing to slight effervescence in the lower part; slightly alkaline." diff --git a/inst/extdata/OSD/W/WASIOJA.json b/inst/extdata/OSD/W/WASIOJA.json index 9459e41d9c..50bf4f8342 100644 --- a/inst/extdata/OSD/W/WASIOJA.json +++ b/inst/extdata/OSD/W/WASIOJA.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bt2--32 to 44 inches; light yellowish brown (10YR 6/4) clay loam, yellowish brown (10YR 5/4) moist; weak medium subangular blocky structure; very hard, firm, sticky and plastic; few very fine roots; common very fine tubular and few very fine interstitial pores; continuous thin clay bridges between mineral grains, and few moderately thick clay films on faces of peds; more compact and brittle than the Bt1 horizon; about 1 percent gravel; slightly effervescent in soil mass and strongly effervescent with lime in filaments and coatings; thin coating of lime on faces of most peds; moderately alkaline (pH 8.2); gradual irregularboundary. (9 to 14 inches thick)" @@ -204,7 +204,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "irregular", "narrative": "BCt--44 to 55 inches; light yellowish brown (10YR 6/4) sandy loam, yellowish brown (10YR 5/6) moist; massive; very hard, firm, slightly sticky and slightly plastic; few fine tubular and common very fine interstitial pores; many thin clay bridges between mineral grains; about 1 percent gravel; strongly effervescent with lime coatings in seams and slightly effervescent in soil mass; moderately alkaline (pH 8.2); gradual irregular boundary. (6 to 12 inches thick)" diff --git a/inst/extdata/OSD/W/WATERCANYON.json b/inst/extdata/OSD/W/WATERCANYON.json index 4a39a638cd..89324a5e91 100644 --- a/inst/extdata/OSD/W/WATERCANYON.json +++ b/inst/extdata/OSD/W/WATERCANYON.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.6, "pH_class": "strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bk1--16 to 22 inches; very pale brown (10YR 7/3) silt loam, brown (10YR 5/3) moist; massive; hard, friable, nonsticky and nonplastic; common very fine and few fine roots; many very fine and common fine tubular pores; strongly effervescent; common fine irregular violently effervescent lime filaments; strongly alkaline (pH 8.6); abrupt smooth boundary. (3 to 12 inches thick)" diff --git a/inst/extdata/OSD/W/WHIRLO.json b/inst/extdata/OSD/W/WHIRLO.json index 48ef16140e..d3887f887a 100644 --- a/inst/extdata/OSD/W/WHIRLO.json +++ b/inst/extdata/OSD/W/WHIRLO.json @@ -204,7 +204,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "strongly effervescent", + "eff_class": "slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bk3--94 to 152 cm; pale brown (10YR 6/3) extremely gravelly sandy loam, brown (10YR 4/3) moist; massive; soft, very friable, nonsticky and nonplastic; few very fine roots; common very fine and fine interstitial pores; 70 percent carbonate coated gravel; slightly effervescent matrix but strongly effervescent on gravel; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/W/WHITEBASIN.json b/inst/extdata/OSD/W/WHITEBASIN.json index 1b938db55c..a97c93e5cd 100644 --- a/inst/extdata/OSD/W/WHITEBASIN.json +++ b/inst/extdata/OSD/W/WHITEBASIN.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "violently effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Byk--1 to 11 inches; very pale brown (10YR 8/2) gypsiferous material, light yellowish brown (10YR 6/4) moist; massive; hard, firm, nonsticky and nonplastic; few very fine, fine and medium roots; many very fine and fine interstitial and few fine tubular pores; apparent texture of the fine earth material is sandy loam; electrical conductivity 1.8 dS/m; 40 percent very coarse, weakly to strongly cemented masses of gypsum crystals; 40 percent medium to very coarse, irregular, hard, gypsum crystals in the matrix; 2 percent medium and coarse, irregular, moderately hard, gypsum masses in pores; 2 percent white, calcium carbonate coats on gypsum masses; noneffervescent through violently effervescent (3 percent calcium carbonate equivalence in the fine earth fraction); slightly alkaline (pH 7.6); abrupt wavy boundary. (3 to 10 inches thick)" diff --git a/inst/extdata/OSD/W/WOOD_RIVER.json b/inst/extdata/OSD/W/WOOD_RIVER.json index bbe9b75f0b..41b321c4fd 100644 --- a/inst/extdata/OSD/W/WOOD_RIVER.json +++ b/inst/extdata/OSD/W/WOOD_RIVER.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "strong effervescence", + "eff_class": "NA", "distinctness": "NA", "topography": "NA", "narrative": "C2--53 to 80 inches; very pale brown (10YR 7/4) silt loam, light yellowish brown (10YR 6/4) moist; massive; soft, friable; few fine masses of segregated lime; exchangeable sodium percentage =6; few fine distinct yellowish brown (10YR 5/6) moist iron masses in the soil matrix;strong effervescence; strongly alkaline." diff --git a/inst/extdata/OSD/W/WOOZLE.json b/inst/extdata/OSD/W/WOOZLE.json index 8ab1115c33..d3e494e9e6 100644 --- a/inst/extdata/OSD/W/WOOZLE.json +++ b/inst/extdata/OSD/W/WOOZLE.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 7.4, "pH_class": "slightly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "noneffervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bt--10 to 21 inches; brown (10YR 5/3), pale brown (10YR 6/3 crushed) loam, dark brown (10YR 3/3), brown (10YR 4/3 crushed) moist; weak medium and fine subangular blocky structure; hard, friable, slightly sticky and slightly plastic; common very fine and fine roots; many very fine and few fine tubular pores; few worm channels and casts; common faint clay films on faces of peds and in pores; noneffervescent matrix with some worm channels filled with light gray strongly effervescent material; slightly alkaline (pH 7.4); abrupt smooth boundary. (7 to 18 inches thick)" diff --git a/inst/extdata/OSD/Z/ZABA.json b/inst/extdata/OSD/Z/ZABA.json index 81e08af1e2..c83bafd7f8 100644 --- a/inst/extdata/OSD/Z/ZABA.json +++ b/inst/extdata/OSD/Z/ZABA.json @@ -112,7 +112,7 @@ "cf_class": "very gravelly", "pH": 9.6, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent to violently effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Bt--10 to 53 cm; pale brown (10YR 6/3) very gravelly coarse sandy loam lamellae, yellowish brown (10YR 5/4) moist; very pale brown (10YR 8/2) loamy very coarse sand interlamellae, brown (10YR 5/3) moist; massive; slightly hard, friable, slightly sticky and slightly plastic; nonsticky and nonplastic between the lamellae; few very fine and fine vesicular pores; 40 percent gravel; violently effervescent; strongly effervescent to violently effervescent between the lamellae; very strongly alkaline (pH 9.6); abrupt smooth boundary. (10 to 50 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "violently effervescent", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqk--53 to 152 cm; light brownish gray (10YR 6/2) very gravelly sand; pale brown (10YR 6/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; 50 percent gravel; thin carbonate and silica coats on underside of gravel; strongly effervescent and violently effervescent; very strongly alkaline (pH 9.4)." From 78d8a966c1950b7ce47133cce5ef7e7e60b45620 Mon Sep 17 00:00:00 2001 From: "Andrew G. Brown" Date: Wed, 25 Oct 2023 13:15:25 -0700 Subject: [PATCH 06/11] optional space after separator character --- R/parseOSD_functions.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/parseOSD_functions.R b/R/parseOSD_functions.R index 17e9f6026d..fa79642000 100644 --- a/R/parseOSD_functions.R +++ b/R/parseOSD_functions.R @@ -207,7 +207,7 @@ # vectorized parsing of effervescence class .parse_eff_class <- function(x) { - SoilKnowledgeBase:::.zerochar_to_na(gsub("^.*[;,]? \\b([a-z]+ ?effervescen[tce]+ to [a-z]+ ?effervescen[tce]+).*$|^.*[;,] \\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,] \\b([a-z]+ ?effervescen[tce]+).*$|^.*[;,]? \\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,]? \\b([a-z]+ ?effervescen[tce]+).*$|.*", + .zerochar_to_na(gsub("^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+ to [a-z]+ ?effervescen[tce]+).*$|^.*[;,] ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,] ?\\b([a-z]+ ?effervescen[tce]+).*$|^.*[;,]? ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+).*$|.*", "\\1\\2\\3\\4\\5", x, ignore.case = TRUE)) # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes } From 756078c47f560d21bb86b5d765b42140cb034082 Mon Sep 17 00:00:00 2001 From: SoilKnowledgeBot Date: Wed, 25 Oct 2023 20:39:08 +0000 Subject: [PATCH 07/11] Update inst/extdata/ JSON files --- inst/extdata/OSD/B/BOXCUT.json | 4 ++-- inst/extdata/OSD/H/HIDEWOOD.json | 2 +- inst/extdata/OSD/H/HILLER.json | 2 +- inst/extdata/OSD/K/KNOKE.json | 2 +- inst/extdata/OSD/L/LEWELLEN.json | 2 +- inst/extdata/OSD/N/NUTIVOLI.json | 2 +- inst/extdata/OSD/R/REDBULL.json | 4 ++-- inst/extdata/OSD/R/REVERE.json | 2 +- inst/extdata/OSD/T/TALCOT.json | 2 +- inst/extdata/OSD/T/TSIRKU.json | 2 +- inst/extdata/OSD/V/VIRGIN_RIVER.json | 2 +- inst/extdata/OSD/W/WOOD_RIVER.json | 2 +- 12 files changed, 14 insertions(+), 14 deletions(-) diff --git a/inst/extdata/OSD/B/BOXCUT.json b/inst/extdata/OSD/B/BOXCUT.json index bf3de7f8fc..d1869314b8 100644 --- a/inst/extdata/OSD/B/BOXCUT.json +++ b/inst/extdata/OSD/B/BOXCUT.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 13 centimeters; dark gray (10YR 4/1) loam, very dark brown (10YR 2/2) moist; moderate coarse and medium subangular blocky structure parting to moderate medium and fine subangular blocky structure; friable, moderately hard; slightly sticky and moderately plastic; common very fine and fine roots throughout; few very fine low-continuity tubular pores; the Ap horizon material is noneffervescent; neutral; 1 percent of the original Bk horizon (strongly effervescent) material mixed in Ap horizon; abrupt smooth boundary." @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "strongly effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "A--13 to 33 centimeters; dark grayish brown (10YR 4/2) loam, very dark brown (10YR 2/2) moist; moderate coarse and medium subangular blocky structure parting to moderate medium and fine subangular blocky structure; friable, moderately hard; slightly sticky and moderately plastic; common very fine roots throughout; few very fine low-continuity tubular pores; the A horizon material is noneffervescent; neutral; 1 percent of the original Bk horizon (strongly effervescent) material mixed in A horizon; abrupt smooth boundary. (Ap and A horizon 23 to 38 centimeters thick)" diff --git a/inst/extdata/OSD/H/HIDEWOOD.json b/inst/extdata/OSD/H/HIDEWOOD.json index 4007626453..a08a362521 100644 --- a/inst/extdata/OSD/H/HIDEWOOD.json +++ b/inst/extdata/OSD/H/HIDEWOOD.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescent", "distinctness": "clear", "topography": "smooth", "narrative": "Cg--27 to 42 inches; grayish brown (2.5Y 5/2) silty clay loam; massive; friable; few fine prominent yellowish brown (10YR 5/4) Fe concentrations;strongly effervescent; moderately alkaline; clear smooth boundary. (0 to 20 inches thick)" diff --git a/inst/extdata/OSD/H/HILLER.json b/inst/extdata/OSD/H/HILLER.json index 216a98cd9a..1194f5e8ca 100644 --- a/inst/extdata/OSD/H/HILLER.json +++ b/inst/extdata/OSD/H/HILLER.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescent", "distinctness": "clear", "topography": "wavy", "narrative": "Bk--8 to 14 inches; light yellowish brown (10YR 6/4) very gravelly loam, dark yellowish brown (10YR 4/4) moist; massive; soft, very friable, slightly sticky and slightly plastic; common very fine and few fine roots; few very fine and fine interstitial and tubular pores; common (20 percent) fine distinct calcium carbonate coats on bottom and sides of rock fragments; 40 percent pebbles and 10 percent cobbles;violently effervescent; moderately alkaline (pH 8.4); clear wavy boundary. (5 to 10 inches thick)" diff --git a/inst/extdata/OSD/K/KNOKE.json b/inst/extdata/OSD/K/KNOKE.json index fa24c1b23b..bd55fd4423 100644 --- a/inst/extdata/OSD/K/KNOKE.json +++ b/inst/extdata/OSD/K/KNOKE.json @@ -250,7 +250,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Cg--54 to 63 inches; gray (5Y 5/1) silty clay loam; massive; friable; common soft lime accumulations, many medium prominent dark yellowish brown (10YR 4/4) Fe concentrations;strongly effervescent; moderately alkaline." diff --git a/inst/extdata/OSD/L/LEWELLEN.json b/inst/extdata/OSD/L/LEWELLEN.json index 5b2e283cc4..25d6cd6ff6 100644 --- a/inst/extdata/OSD/L/LEWELLEN.json +++ b/inst/extdata/OSD/L/LEWELLEN.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violent effervescence", "distinctness": "abrupt", "topography": "wavy", "narrative": "ACk--8 to 12 inches; light brownish gray (10YR 6/2) very fine sandy loam; grayish brown (10YR 5/2) moist; moderate fine granular structure; slightly hard, very friable; sodium adsorption ratio 35; 4 percent calcium carbonates; electrical conductivity= 6;violent effervescence; strongly alkaline; abrupt wavy boundary. (4 to 8 inches thick)" diff --git a/inst/extdata/OSD/N/NUTIVOLI.json b/inst/extdata/OSD/N/NUTIVOLI.json index 7ce8bd70e2..65ca2d55f5 100644 --- a/inst/extdata/OSD/N/NUTIVOLI.json +++ b/inst/extdata/OSD/N/NUTIVOLI.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "noneffervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "A--0 to 29 cm (0 to 11 in); brown (7.5YR 5/4) fine sand, brown (7.5YR 4/4) moist; single grain; loose, nonsticky and nonplastic; common very fine and fine, and few medium roots; slightly alkaline;noneffervescent; gradual wavy boundary. (10 to 38 cm [4 to 15 in] thick)" diff --git a/inst/extdata/OSD/R/REDBULL.json b/inst/extdata/OSD/R/REDBULL.json index a083708c65..2b50cb799e 100644 --- a/inst/extdata/OSD/R/REDBULL.json +++ b/inst/extdata/OSD/R/REDBULL.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "violently effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Bk2--25 to 39 inches; reddish yellow (5YR 6/6) very fine sandy loam, yellowish red (5YR 4/6) moist; moderate medium subangular blocky structure; very hard, very friable, non-sticky and non-plastic; very few very fine and coarse roots; very few very fine pores; about 10 percent gravel; carbonates disseminated and as pendants on the undersides of some gravel fragments; about 13 percent calcium carbonate equivalent;violently effervescent; strongly alkaline (pH 8.5); gradual wavy boundary." @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "BCk--39 to 51 inches; yellowish red (5YR 4/6) very fine sandy loam, red (2.5YR 4/6) moist; weak medium subangular blocky structure; hard, very friable, nonsticky and nonplastic; about 10 percent gravel; carbonates disseminated and as pendants on the undersides of some gravel fragments; about 10 percent calcium carbonate equivalent;violently effervescent; moderately alkaline (pH 8.4); gradual wavy boundary. (Combined Bk2 and BCk horizons 15 to 44 inches thick)" diff --git a/inst/extdata/OSD/R/REVERE.json b/inst/extdata/OSD/R/REVERE.json index f56b0f9b7b..c71940b3f6 100644 --- a/inst/extdata/OSD/R/REVERE.json +++ b/inst/extdata/OSD/R/REVERE.json @@ -181,7 +181,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "Byg3--89 to 112 cm (35 to 44 inches); olive gray (5Y 5/2) loam; weak fine and medium subangular blocky structure; friable; about 5 percent coarse fragments; 4 percent gypsum in nests of 2 to 7 mm long crystals; common medium distinct olive brown (2.5Y 4/4) Fe concentrations;strongly effervescent; slightly alkaline; gradual wavy boundary. [Combined thickness of the Byg horizons 15 to 74 cm (8 to 29 inches thick)]" diff --git a/inst/extdata/OSD/T/TALCOT.json b/inst/extdata/OSD/T/TALCOT.json index b141883d0d..b9dd84aa77 100644 --- a/inst/extdata/OSD/T/TALCOT.json +++ b/inst/extdata/OSD/T/TALCOT.json @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "slightly alkaline", - "eff_class": "NA", + "eff_class": "slightly effervescent", "distinctness": "gradual", "topography": "wavy", "narrative": "A2--19 to 23 inches; very dark gray (5Y 3/1) silty clay loam, few narrow tongues of black (5Y 2/1) and olive gray (5Y 5/2); weak very fine subangular blocky structure; friable; few fine fragments of snail shells; few fine distinct olive (5Y 5/3) Fe concentrations and dark brown (7.5YR 3/2) stains along old root channels;slightly effervescent; slightly alkaline; gradual wavy boundary. (0 to 6 inches thick)" diff --git a/inst/extdata/OSD/T/TSIRKU.json b/inst/extdata/OSD/T/TSIRKU.json index 856043600c..9fbd4a7ea5 100644 --- a/inst/extdata/OSD/T/TSIRKU.json +++ b/inst/extdata/OSD/T/TSIRKU.json @@ -135,7 +135,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C2--41 to 60 inches; olive gray (5Y 4/2) extremely gravelly sand; single grain; loose; 50 percent gravel, 20 percent cobbles;strongly effervescent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/V/VIRGIN_RIVER.json b/inst/extdata/OSD/V/VIRGIN_RIVER.json index 27d6c7b76b..c905d10f8e 100644 --- a/inst/extdata/OSD/V/VIRGIN_RIVER.json +++ b/inst/extdata/OSD/V/VIRGIN_RIVER.json @@ -89,7 +89,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "NA", + "eff_class": "violently effervescent", "distinctness": "abrupt", "topography": "smooth", "narrative": "Ap--0 to 6 inches; light reddish brown (5YR 6/3) silty clay, reddish brown (5YR 3/4) moist; moderate medium and fine granular structure; hard, friable, very sticky, very plastic; plentiful very fine roots; many very fine interstitial and common very fine tubular pores; few worm casts;violently effervescent; moderately alkaline (pH 8.4); abrupt smooth boundary. (4 to 9 inches thick)." diff --git a/inst/extdata/OSD/W/WOOD_RIVER.json b/inst/extdata/OSD/W/WOOD_RIVER.json index 41b321c4fd..bbe9b75f0b 100644 --- a/inst/extdata/OSD/W/WOOD_RIVER.json +++ b/inst/extdata/OSD/W/WOOD_RIVER.json @@ -273,7 +273,7 @@ "cf_class": "NA", "pH": "NA", "pH_class": "strongly alkaline", - "eff_class": "NA", + "eff_class": "strong effervescence", "distinctness": "NA", "topography": "NA", "narrative": "C2--53 to 80 inches; very pale brown (10YR 7/4) silt loam, light yellowish brown (10YR 6/4) moist; massive; soft, friable; few fine masses of segregated lime; exchangeable sodium percentage =6; few fine distinct yellowish brown (10YR 5/6) moist iron masses in the soil matrix;strong effervescence; strongly alkaline." From cd6eaddf78359281f78e1c68e72d6667149aca65 Mon Sep 17 00:00:00 2001 From: "Andrew G. Brown" Date: Wed, 25 Oct 2023 13:23:07 -0700 Subject: [PATCH 08/11] allow and/or for range in classes --- R/parseOSD_functions.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/parseOSD_functions.R b/R/parseOSD_functions.R index fa79642000..7de9ada200 100644 --- a/R/parseOSD_functions.R +++ b/R/parseOSD_functions.R @@ -207,8 +207,8 @@ # vectorized parsing of effervescence class .parse_eff_class <- function(x) { - .zerochar_to_na(gsub("^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+ to [a-z]+ ?effervescen[tce]+).*$|^.*[;,] ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,] ?\\b([a-z]+ ?effervescen[tce]+).*$|^.*[;,]? ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+).*$|.*", - "\\1\\2\\3\\4\\5", x, ignore.case = TRUE)) + .zerochar_to_na(gsub("^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+ (to|and|or) [a-z]+ ?effervescen[tce]+).*$|^.*[;,] ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,] ?\\b([a-z]+ ?effervescen[tce]+).*$|^.*[;,]? ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+).*$|.*", + "\\1\\3\\4\\5\\6", x, ignore.case = TRUE)) # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes } From 4f929fd4f64bb452e5d17f215b591c5620d07988 Mon Sep 17 00:00:00 2001 From: SoilKnowledgeBot Date: Wed, 25 Oct 2023 21:10:01 +0000 Subject: [PATCH 09/11] Update inst/extdata/ JSON files --- inst/extdata/OSD/C/CARRIZO.json | 2 +- inst/extdata/OSD/D/DRYGYP.json | 2 +- inst/extdata/OSD/O/ORPHANT.json | 2 +- inst/extdata/OSD/S/SILVERBOW.json | 2 +- inst/extdata/OSD/S/SOTORAN.json | 2 +- inst/extdata/OSD/V/VINSAD.json | 6 +++--- inst/extdata/OSD/Z/ZABA.json | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/inst/extdata/OSD/C/CARRIZO.json b/inst/extdata/OSD/C/CARRIZO.json index 61173eccbe..aab9fc8fe3 100644 --- a/inst/extdata/OSD/C/CARRIZO.json +++ b/inst/extdata/OSD/C/CARRIZO.json @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "very slightly effervescent", + "eff_class": "slightly effervescent and slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C -- 5 to 152 centimeters (2 to 60 inches); pale brown (10YR 6/3) stratified extremely gravelly and very gravelly coarse sand, brown (10YR 4/3) moist; massive to single grain; soft, slightly hard, or loose, very friable, nonsticky and nonplastic; common very fine and few fine roots; many very fine and few fine and medium interstitial pores; averages 55 percent gravel, 10 percent cobbles and 5 percent stones; very slightly effervescent and slightly effervescent; moderately alkaline (pH 8.4) and slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/D/DRYGYP.json b/inst/extdata/OSD/D/DRYGYP.json index 2d5c3e32da..7e859b8e50 100644 --- a/inst/extdata/OSD/D/DRYGYP.json +++ b/inst/extdata/OSD/D/DRYGYP.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 7.6, "pH_class": "slightly alkaline", - "eff_class": "slightly effervescent", + "eff_class": "slightly effervescent and strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bym2--13 to 65 inches; pink (7.5YR 7/3) very weakly and weakly cemented petrogypsic horizon, brown (7.5YR 5/4) moist; massive; moderately hard and hard, firm and very firm, brittle; secondary gypsum segregated throughout matrix as many clusters of crystals; slightly effervescent and strongly effervescent; slightly alkaline (pH 7.6). (Combined thickness of the 2Bym horizons is 50 to 56 inches.)" diff --git a/inst/extdata/OSD/O/ORPHANT.json b/inst/extdata/OSD/O/ORPHANT.json index 23c5c198a8..0afca6a1c8 100644 --- a/inst/extdata/OSD/O/ORPHANT.json +++ b/inst/extdata/OSD/O/ORPHANT.json @@ -227,7 +227,7 @@ "cf_class": "NA", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent", + "eff_class": "slightly effervescent and violently effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Bqkm--99 to 140 cm; pale brown (10YR 6/3) strongly cemented duripan with many very thin continuous silica laminae and very thin silica bridging, dark brown (10YR 3/3) moist; massive; extremely hard, very firm; common very fine interstitial pores; slightly effervescent and violently effervescent; moderately alkaline (pH 8.4)." diff --git a/inst/extdata/OSD/S/SILVERBOW.json b/inst/extdata/OSD/S/SILVERBOW.json index fa4ce41b89..a53fa91594 100644 --- a/inst/extdata/OSD/S/SILVERBOW.json +++ b/inst/extdata/OSD/S/SILVERBOW.json @@ -135,7 +135,7 @@ "cf_class": "very stony", "pH": 8.5, "pH_class": "strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "strongly effervescent and violently effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Btk--20 to 33 cm; brown (10YR 5/3) very stony clay loam, brown (10YR 5/3) moist; moderate medium subangular blocky structure; hard, friable, moderately sticky and moderately plastic; common very fine and fine roots; many fine tubular pores; few faint clay films on faces of peds; 20 percent stones, 20 percent cobbles, and 10 percent gravel; strongly effervescent and violently effervescent; common large faint light gray (10YR 7/2) carbonate segregations occur; strongly alkaline (pH 8.5); abrupt wavy boundary. (5 to 18 cm thick)" diff --git a/inst/extdata/OSD/S/SOTORAN.json b/inst/extdata/OSD/S/SOTORAN.json index 04f78eedc4..8e47f0354e 100644 --- a/inst/extdata/OSD/S/SOTORAN.json +++ b/inst/extdata/OSD/S/SOTORAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "very slightly effervescent", + "eff_class": "slightly effervescent or noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--102 to 162 centimeters (40 to 64 inches); very pale brown (10YR 7/4) fine sand, yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky and nonplastic; common very fine interstitial pores; 15 percent, coarse, distinct, yellowish brown (10YR 5/6) iron masses, irregular, in the matrix around depletions, noncemented, diffuse; very slightly effervescent or noneffervescent; moderately alkaline (pH 8.2)." diff --git a/inst/extdata/OSD/V/VINSAD.json b/inst/extdata/OSD/V/VINSAD.json index dbc304650a..d118e90654 100644 --- a/inst/extdata/OSD/V/VINSAD.json +++ b/inst/extdata/OSD/V/VINSAD.json @@ -112,7 +112,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "noneffervescent and strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cz1--5 to 91 cm; variegated very pale brown (10YR 8/2), white (N 8/0), and light gray (2.5Y 7/2) very fine sandy loam, pale brown (10YR 6/3), pale yellow (2.5Y 8/2) and pale yellow (2.5Y 8/4) moist; massive; soft and very hard, friable and firm, nonsticky and slightly plastic; common very fine and few fine roots; few very fine tubular pores, common very fine interstitial pores; 3.1 percent salt; noneffervescent and strongly effervescent; neutral (pH 6.6); abrupt wavy boundary. (0 to 90 cm thick)" @@ -135,7 +135,7 @@ "cf_class": "NA", "pH": 6.6, "pH_class": "neutral", - "eff_class": "noneffervescent", + "eff_class": "noneffervescent and strongly effervescent", "distinctness": "abrupt", "topography": "wavy", "narrative": "Cz2--91 to 107 cm; light gray (2.5Y 7/2) and white (N 8/0) very fine sandy loam, brown (10YR 4/3) and pale brown (10YR 6/3) moist; massive; very hard, very firm; few very fine roots; few very fine tubular, and common very fine and fine interstitial pores; 3.4 percent salt; noneffervescent and strongly effervescent; neutral (pH 6.6); abrupt wavy boundary. (0 to 50 cm thick)" @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.3, "pH_class": "moderately alkaline", - "eff_class": "noneffervescent", + "eff_class": "noneffervescent and strongly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "2Cz--107 to 152 cm; light brownish gray (2.5Y 6/2) and very pale brown (10YR 7/3) silty clay loam, brown (10YR 4/3) moist; moderate fine and very fine angular blocky structure very hard and soft, firm and friable, slightly sticky and slightly plastic; few very fine roots; few very fine tubular, and common fine and very fine interstitial pores; 1.2 percent salt; noneffervescent and strongly effervescent; moderately alkaline (pH 8.3)." diff --git a/inst/extdata/OSD/Z/ZABA.json b/inst/extdata/OSD/Z/ZABA.json index c83bafd7f8..f07e2ea58a 100644 --- a/inst/extdata/OSD/Z/ZABA.json +++ b/inst/extdata/OSD/Z/ZABA.json @@ -135,7 +135,7 @@ "cf_class": "very gravelly", "pH": 9.4, "pH_class": "very strongly alkaline", - "eff_class": "strongly effervescent", + "eff_class": "strongly effervescent and violently effervescent", "distinctness": "NA", "topography": "NA", "narrative": "Bqk--53 to 152 cm; light brownish gray (10YR 6/2) very gravelly sand; pale brown (10YR 6/3) moist; massive; slightly hard, very friable, nonsticky and nonplastic; 50 percent gravel; thin carbonate and silica coats on underside of gravel; strongly effervescent and violently effervescent; very strongly alkaline (pH 9.4)." From 2cd0589b066f84c293c813a2f6ccad1629dd5103 Mon Sep 17 00:00:00 2001 From: "Andrew G. Brown" Date: Wed, 25 Oct 2023 16:06:07 -0700 Subject: [PATCH 10/11] allow for ranges including "very" --- R/parseOSD_functions.R | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/R/parseOSD_functions.R b/R/parseOSD_functions.R index 7de9ada200..e23a57995b 100644 --- a/R/parseOSD_functions.R +++ b/R/parseOSD_functions.R @@ -207,8 +207,8 @@ # vectorized parsing of effervescence class .parse_eff_class <- function(x) { - .zerochar_to_na(gsub("^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+ (to|and|or) [a-z]+ ?effervescen[tce]+).*$|^.*[;,] ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,] ?\\b([a-z]+ ?effervescen[tce]+).*$|^.*[;,]? ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+).*$|.*", - "\\1\\3\\4\\5\\6", x, ignore.case = TRUE)) + .zerochar_to_na(gsub("^.*[;,]? ?\\b(very [a-z]+ effervescen[tce]+ (to|and|or) [a-z ]+ ?effervescen[tce]+).*$|^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+ (to|and|or) [a-z]+ ?effervescen[tce]+).*$|^.*[;,] ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,] ?\\b([a-z]+ ?effervescen[tce]+).*$|^.*[;,]? ?\\b(very [a-z]+ effervescen[tce]+).*$|^.*[;,]? ?\\b([a-z]+ ?effervescen[tce]+).*$|.*", + "\\1\\3\\5\\6\\7\\8", x, ignore.case = TRUE)) # factors cannot be preserved in JSON output, and wont work for multiple classes/ranges of classes } From 02f5ce47dcf8d8d6e6f991a5ae5a83a987ac027a Mon Sep 17 00:00:00 2001 From: SoilKnowledgeBot Date: Wed, 25 Oct 2023 23:44:15 +0000 Subject: [PATCH 11/11] Update inst/extdata/ JSON files --- inst/extdata/OSD/C/CARRIZO.json | 2 +- inst/extdata/OSD/S/SOTORAN.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/inst/extdata/OSD/C/CARRIZO.json b/inst/extdata/OSD/C/CARRIZO.json index aab9fc8fe3..f32ca96b3e 100644 --- a/inst/extdata/OSD/C/CARRIZO.json +++ b/inst/extdata/OSD/C/CARRIZO.json @@ -112,7 +112,7 @@ "cf_class": "extremely gravelly", "pH": 8.4, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent and slightly effervescent", + "eff_class": "very slightly effervescent and slightly effervescent", "distinctness": "NA", "topography": "NA", "narrative": "C -- 5 to 152 centimeters (2 to 60 inches); pale brown (10YR 6/3) stratified extremely gravelly and very gravelly coarse sand, brown (10YR 4/3) moist; massive to single grain; soft, slightly hard, or loose, very friable, nonsticky and nonplastic; common very fine and few fine roots; many very fine and few fine and medium interstitial pores; averages 55 percent gravel, 10 percent cobbles and 5 percent stones; very slightly effervescent and slightly effervescent; moderately alkaline (pH 8.4) and slightly alkaline (pH 7.8)." diff --git a/inst/extdata/OSD/S/SOTORAN.json b/inst/extdata/OSD/S/SOTORAN.json index 8e47f0354e..76bd9447ee 100644 --- a/inst/extdata/OSD/S/SOTORAN.json +++ b/inst/extdata/OSD/S/SOTORAN.json @@ -158,7 +158,7 @@ "cf_class": "NA", "pH": 8.2, "pH_class": "moderately alkaline", - "eff_class": "slightly effervescent or noneffervescent", + "eff_class": "very slightly effervescent or noneffervescent", "distinctness": "NA", "topography": "NA", "narrative": "2C--102 to 162 centimeters (40 to 64 inches); very pale brown (10YR 7/4) fine sand, yellowish brown (10YR 5/4) moist; single grain; loose, nonsticky and nonplastic; common very fine interstitial pores; 15 percent, coarse, distinct, yellowish brown (10YR 5/6) iron masses, irregular, in the matrix around depletions, noncemented, diffuse; very slightly effervescent or noneffervescent; moderately alkaline (pH 8.2)."