ncss-tech / aqp

Algorithms for Quantitative Pedology
http://ncss-tech.github.io/aqp/
54 stars 14 forks source link

Use roxygen to generate `NAMESPACE` #275

Closed brownag closed 1 year ago

brownag commented 1 year ago
library(aqp)
#> This is aqp 2.0
before <- c("accumulateDepths", "addBracket", "addDiagnosticBracket", "addVolumeFraction", 
            "aggregateColor", "aggregateSoilDepth", "alignTransect", "allocate", 
            "aqp.env", "aqp_df_class", "aqp_df_class<-", "argillic.clay.increase.depth", 
            "as.data.frame", "barron.torrent.redness.LAB", "bootstrapSoilTexture", 
            "brierScore", "buntley.westin.index", "checkHzDepthLogic", "checkSPC", 
            "colorChart", "colorContrast", "colorContrastPlot", "colorQuantiles", 
            "combine", "compareSites", "compositeSPC", "confusionIndex", 
            "contrastChart", "contrastClass", "coordinates", "coordinates<-", 
            "correctAWC", "crit.clay.argillic", "denormalize", "depth_units", 
            "depth_units<-", "depthOf", "depths<-", "depthWeights", "diagnostic_hz", 
            "diagnostic_hz<-", "dice", "dissolve_hz", "duplicate", "equivalentMunsellChips", 
            "estimateAWC", "estimatePSCS", "estimateSoilColor", "estimateSoilDepth", 
            "evalGenHZ", "evalMissingData", "explainPlotSPC", "fillHzGaps", 
            "findOverlap", "fixOverlap", "fragvol_to_texmod", "generalize.hz", 
            "generalizeHz", "genhzTableToAdjMat", "genSlabLabels", "get.increase.depths", 
            "get.increase.matrix", "get.ml.hz", "get.slice", "getArgillicBounds", 
            "getCambicBounds", "getClosestMunsellChip", "getLastHorizonID", 
            "getMineralSoilSurfaceDepth", "getPlowLayerDepth", "getSoilDepthClass", 
            "getSpatial", "getSurfaceHorizonDepth", "GHL", "GHL<-", "glom", 
            "glomApply", "grepSPC", "groupedProfilePlot", "groupSPC", "guessGenHzLevels", 
            "guessHzAttrName", "guessHzDesgnName", "guessHzTexClName", "harden.melanization", 
            "harden.rubification", "harmonize", "hasDarkColors", "horizonColorIndices", 
            "horizonDepths", "horizonDepths<-", "horizonNames", "horizonNames<-", 
            "horizons", "horizons<-", "huePosition", "huePositionCircle", 
            "hurst.redness", "hzAbove", "hzBelow", "HzDepthLogicSubset", 
            "hzDepthTests", "hzDesgn", "hzdesgnname", "hzdesgnname<-", "hzDistinctnessCodeToOffset", 
            "hzID", "hzID<-", "hzidname", "hzidname<-", "hzMetadata", "hzOffset", 
            "hztexclname", "hztexclname<-", "hzTopographyCodeToLineType", 
            "hzTopographyCodeToOffset", "hzTransitionProbabilities", "idname", 
            "initSpatial<-", "invertLabelColor", "L1_profiles", "lunique", 
            "maxDepthOf", "metadata", "metadata<-", "minDepthOf", "missingDataGrid", 
            "mixMunsell", "mollic.thickness.requirement", "mostLikelyHzSequence", 
            "munsell2rgb", "munsell2spc", "mutate_profile", "NCSP", "nrow", 
            "overlapMetrics", "panel.depth_function", "parseMunsell", "pbindlist", 
            "pc", "pc.SPC", "perturb", "ph_to_rxnclass", "plot", "plot_distance_graph", 
            "plotColorMixture", "plotColorQuantiles", "plotMultipleSPC", 
            "plotSPC", "prepanel.depth_function", "previewColors", "prj", 
            "prj<-", "profile_compare", "profile_id", "profile_id<-", "profileApply", 
            "profileGroupLabels", "profileInformationIndex", "proj4string", 
            "proj4string<-", "random_profile", "ReactionClassLevels", "rebuildSPC", 
            "reduceSPC", "reorderHorizons", "repairMissingHzDepths", "replaceHorizons<-", 
            "restrictions", "restrictions<-", "rgb2munsell", "rxnclass_to_ph", 
            "segment", "shannonEntropy", "sim", "simulateColor", "site", 
            "site<-", "siteNames", "siteNames<-", "slab", "slab_function", 
            "slice", "slice.fast", "slicedHSD", "soilColorSignature", "soilPalette", 
            "SoilProfileCollection", "SoilTextureLevels", "spc_in_sync", 
            "spc2mpspline", "spec2Munsell", "split", "splitLogicErrors", 
            "ssc_to_texcl", "subApply", "subset", "subsetHz", "subsetProfiles", 
            "summarizeSPC", "summaryTauW", "tauW", "texcl_to_ssc", "texmod_to_fragvoltot", 
            "texture_to_taxpartsize", "texture_to_texmod", "textureTriangleSummary", 
            "thompson.bell.darkness", "transform", "unique", "unroll", "validSpatialData", 
            "xtableTauW")

after <- ls(envir = as.environment("package:aqp"))

before[!before %in% after]
#> character(0)

after[!after %in% before]
#> character(0)