soilReports

An R package that assists with the setup and operation of a collection of soil data summary, comparison, and evaluation reports. These reports are primarily used by USDA-NRCS soil scientists in both initial and update mapping.

https://github.com/ncss-tech/soilReports

Science Score: 26.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (17.4%) to scientific vocabulary

Keywords

nasis nrcs soil soil-survey usda

Keywords from Contributors

digital-soil-mapping eda ncss pedology pedometrics s4ss spatial-data tabular-data
Last synced: 6 months ago · JSON representation

Repository

An R package that assists with the setup and operation of a collection of soil data summary, comparison, and evaluation reports. These reports are primarily used by USDA-NRCS soil scientists in both initial and update mapping.

Basic Info
  • Host: GitHub
  • Owner: ncss-tech
  • Language: HTML
  • Default Branch: master
  • Homepage:
  • Size: 7.91 MB
Statistics
  • Stars: 18
  • Watchers: 8
  • Forks: 4
  • Open Issues: 54
  • Releases: 0
Topics
nasis nrcs soil soil-survey usda
Created over 9 years ago · Last pushed 7 months ago
Metadata Files
Readme Changelog

README.md

R-CMD-check <!-- badges: end -->

soilReports

Reports are a handy way to summarize large volumes of data, particularly with figures and tables. soilReports is an R package "container" designed to accommodate the maintenance, documentation, and distribution of R-based reporting tools. Inside the package are report templates, setup files, documentation, and example configuration files.

The soilReports package provides a couple important helper functions that do most of the work:

  • listReports(): print a listing of the available reports, version numbers, and basic metadata
  • reportSetup(...): download any R packages required by the named report, e.g. "southwest/mu-comparison"
  • reportInit(...) | reportCopy(...): copy a named report template into a specific directory
  • reportUpdate(...): update a named report in a specific directory, replacing report.Rmd only

Each report contains several files:

  • report.Rmd: an R Markdown file that is "knit" into a final HTML or DOC report
  • README.md: report-specific instructions
  • custom.R: report-specific functions
  • categorical_definitions.R: report-specific color mapping and metadata for categorical raster data (user-editable)
  • config.R: configuration file to set report parameters (user-editable)
  • changes.txt: notes on changes and associated version numbers

R Profile Setup

NOTE: The following instructions are rarely, if ever, needed with R 4.2+

On many of our machines, the $HOME directory points to a network share. This can cause all kinds of problems when installing R packages, especially if you connect to the network by VPN. The following code is a one-time solution and will cause R packages to be installed on a local disk by adding an .Rprofile file to your $HOME directory. This file will instruct R to use C:/Users/FirstName.LastName/Documents/R/ for installing R packages. Again, you only have to do this once.

```r

determine your current $HOME directory

path.expand('~')

install .Rprofile

source('https://raw.githubusercontent.com/ncss-tech/soilReports/master/R/installRprofile.R') installRprofile(overwrite=TRUE) ```

soilReports Installation - First time or after R upgrade

Run this code if you don't yet have the soilReports package or after a new version of R has been installed on your machine.

```r

need devtools to install packages from GitHub

install.packages('remotes', dep = TRUE)

get the latest version of the 'soilReports' package

remotes::installgithub("ncss-tech/soilReports", dependencies = FALSE, upgradedependencies = FALSE) ```

Choose an Available Report

Example Output

Reports for Raster Summary by MU or MLRA

Reports for DMU QC/QA

Reports for Pedon Data

Run a Report - Example: Map Unit Comparison report

```r

load this library

library(soilReports)

list reports in the package

listReports()

install required packages for a named report

reportSetup(reportName='southwest/mu-comparison')

copy report file 'MU-comparison' to your current working directory

reportInit(reportName='southwest/mu-comparison', outputDir='MU-comparison') ```

Updating Existing Reports - Example: Map Unit Comparison report

Updates to report templates, documentation, and custom functions are available after installing the latest soilReports package from GitHub. Use the following examples to update an existing copy of the "southwest/mu-comparison" report. Note that your existing configuration files will not be modified.

```r

get latest version of package + report templates

remotes::installgithub("ncss-tech/soilReports", dependencies=FALSE, upgradedependencies=FALSE)

load this library

library(soilReports)

get any new packages that may be required by the latest version

reportSetup(reportName='southwest/mu-comparison')

overwrite report files in an existing report instance (does NOT overwrite config)

reportUpdate(reportName='southwest/mu-comparison', outputDir='MU-comparison') ```

Suggested Background Material

Troubleshooting

  • If you haven't run R in a while, consider updating all packages with: update.packages(ask=FALSE, checkBuilt=TRUE).
  • Make sure that all raster data sources are GDAL-compatible formats: GeoTiff, ERDAS IMG, ArcGRID, etc. (not ESRI FGDB)
  • Make sure that the map unit polygon data source is an OGR-compatible format: ESRI SHP, ESRI FGDB, etc.
  • Make sure that the extent of raster data includes the full extent of map unit polygon data.
  • If there is a problem installing packages with reportSetup(), consider adding the upgrade=TRUE argument.
  • If you are encountering errors with "Knit HTML" in RStudio, try: update.packages(ask=FALSE, checkBuilt=TRUE).

TODO

See issue tracker for TODO items.

Related Packages

Owner

  • Name: ncss-tech
  • Login: ncss-tech
  • Kind: organization
  • Location: United States of America

Collection of repositories contributed by members of the National Cooperative Soil Survey

GitHub Events

Total
  • Watch event: 3
  • Push event: 18
  • Create event: 1
Last Year
  • Watch event: 3
  • Push event: 18
  • Create event: 1

Committers

Last synced: 7 months ago

All Time
  • Total Commits: 649
  • Total Committers: 8
  • Avg Commits per committer: 81.125
  • Development Distribution Score (DDS): 0.586
Past Year
  • Commits: 39
  • Committers: 2
  • Avg Commits per committer: 19.5
  • Development Distribution Score (DDS): 0.026
Top Committers
Name Email Commits
Dylan Beaudette d****e@g****m 269
Brown 1****1@F****V 263
Stephen Roecker s****r@g****m 73
jennifer-wood j****d@c****v 35
John Hammerly h****y 3
Alena a****s 3
Jay Skovlin 1****2@F****V 2
Darío Hereñú m****a@g****m 1
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 103
  • Total pull requests: 13
  • Average time to close issues: 6 months
  • Average time to close pull requests: about 1 month
  • Total issue authors: 3
  • Total pull request authors: 2
  • Average comments per issue: 1.48
  • Average comments per pull request: 1.0
  • Merged pull requests: 13
  • Bot issues: 0
  • Bot pull requests: 0
Past Year
  • Issues: 0
  • Pull requests: 0
  • Average time to close issues: N/A
  • Average time to close pull requests: N/A
  • Issue authors: 0
  • Pull request authors: 0
  • Average comments per issue: 0
  • Average comments per pull request: 0
  • Merged pull requests: 0
  • Bot issues: 0
  • Bot pull requests: 0
Top Authors
Issue Authors
  • dylanbeaudette (86)
  • brownag (16)
  • smroecker (1)
Pull Request Authors
  • brownag (12)
  • kant (1)
Top Labels
Issue Labels
enhancement (22) bug (5)
Pull Request Labels
enhancement (3) help wanted (1)

Dependencies

.github/workflows/R-CMD-check.yml actions
  • actions/cache v2 composite
  • actions/checkout v2 composite
  • actions/upload-artifact main composite
  • r-lib/actions/setup-pandoc v1 composite
  • r-lib/actions/setup-r v1 composite
DESCRIPTION cran
  • R >= 3.5.0 depends
  • remotes * imports
  • MASS * suggests
  • clhs * suggests
  • knitr * suggests
  • rmarkdown * suggests
  • scales * suggests
  • sharpshootR * suggests
  • testthat * suggests