A curated list of open technology projects to sustain a stable climate, energy supply, biodiversity and natural resources.

soilDB

Simplified Access to NCSS Soil Databases.
https://github.com/ncss-tech/soilDB

Category: Natural Resources
Sub Category: Soil and Land

Keywords

cran kssl nasis nrcs r soil soil-data-access soil-survey soilweb sql usda

Keywords from Contributors

digital-soil-mapping ncss pedology pedometrics ncss-tech eda s4ss spatial-data tabular-data documention

Last synced: about 20 hours ago
JSON representation

Repository metadata

soilDB: Simplified Access to National Cooperative Soil Survey Databases

README.Rmd

          ---
output: md_document 
---
[![CRAN version](https://www.r-pkg.org/badges/version/soilDB)](https://CRAN.R-project.org/package=soilDB)
[![CRAN status](https://badges.cranchecks.info/worst/soilDB.svg)](https://cran.r-project.org/web/checks/check_results_soilDB.html)
[![Development Version](https://ncss-tech.r-universe.dev/badges/soilDB)](https://ncss-tech.r-universe.dev/)
[![R-CMD-check Build Status](https://github.com/ncss-tech/soilDB/actions/workflows/R-CMD-check.yml/badge.svg)](https://github.com/ncss-tech/soilDB/actions)
[![Monthly CRAN Downloads](https://cranlogs.r-pkg.org/badges/soilDB)](https://cran.r-project.org/package=soilDB)
![CRAN/METACRAN](https://img.shields.io/cran/l/soilDB)
[![soilDB Manual](https://img.shields.io/badge/docs-HTML-informational)](https://ncss-tech.github.io/soilDB/)

```{r, echo=FALSE, message=FALSE, warning=FALSE}
library(rvest)
# get latest release semantic version number for citation
.getLatestCRANRelease <- function() { 
  gsub(".*/([0-9\\.]+)$", "\\1", html_text(html_element(html_element(read_html("https://github.com/ncss-tech/soilDB/releases.atom"), "entry"), "id")))
}

.update_CITATION <- function(version) {
  x <- sprintf('citHeader("To cite soilDB in publications use:")

bibentry(
  bibtype = "Manual",
  title = "soilDB: Soil Database Interface",
  author = "Dylan Beaudette, Jay Skovlin, Stephen Roecker and Andrew Brown",
  note = "R package version %s",
  url = "https://CRAN.R-project.org/package=soilDB",
  year = "%s",
  textVersion = "Beaudette, D., Skovlin, J., Roecker, S., Brown, A. (%s). soilDB: Soil Database Interface. R package version %s. "
)
', version, format(Sys.time(), "%Y"), format(Sys.time(), "%Y"), version)
  suppressWarnings(writeLines(strsplit(x, "\n")[[1]], "inst/CITATION"))
}

# get latest tagged release from github
soilDB_CRAN_VERSION <- .getLatestCRANRelease()

# get installed version
soilDB_INSTALLED_VERSION <- packageVersion("soilDB")

# rebuilding readme locally, use installed version
if (soilDB::local_NASIS_defined() && (soilDB_INSTALLED_VERSION > soilDB_CRAN_VERSION)) {
  .update_CITATION(soilDB_INSTALLED_VERSION)
} else {
  .update_CITATION(soilDB_CRAN_VERSION)
}

# update inst/CITATION
```

## Installation

Get the stable version from CRAN:

```r
install.packages('soilDB', dependencies = TRUE)
```

Get the development version from GitHub:

```r
remotes::install_github("ncss-tech/soilDB", dependencies = FALSE)
```

## Website
 - CRAN Package: https://cran.r-project.org/package=soilDB
 - Package Manual: http://ncss-tech.github.io/soilDB/
 - Algorithms for Quantitative Pedology (AQP) Project: http://ncss-tech.github.io/AQP/

## Citation

```{r, echo=FALSE}
citation("soilDB")
```

## soilDB `r packageVersion("soilDB")`







## Functions by Data Source 
    
  * Soil Data Access (SDA)
    + [`fetchSDA`](http://ncss-tech.github.io/soilDB/reference/fetchSDA.html)
    + [`fetchSDA_spatial`](http://ncss-tech.github.io/soilDB/reference/fetchSDA_spatial.html)
    + [`SDA_query`](http://ncss-tech.github.io/soilDB/reference/SDA_query.html)
    + [`SDA_spatialQuery`](http://ncss-tech.github.io/soilDB/reference/SDA_spatialQuery.html)
    + "SSURGO On Demand" Queries
      - [`get_SDA_hydric`](http://ncss-tech.github.io/soilDB/reference/get_SDA_hydric.html)
      - [`get_SDA_interpretation`](http://ncss-tech.github.io/soilDB/reference/get_SDA_interpretation.html)
      - [`get_SDA_muaggatt`](http://ncss-tech.github.io/soilDB/reference/get_SDA_muaggatt.html)
      - [`get_SDA_pmgroupname`](http://ncss-tech.github.io/soilDB/reference/get_SDA_pmgroupname.html)
      - [`get_SDA_property`](http://ncss-tech.github.io/soilDB/reference/get_SDA_property.html)
      - [`get_SDA_coecoclass`](http://ncss-tech.github.io/soilDB/reference/get_SDA_coecoclass.html)
      - [`get_SDA_metrics`](http://ncss-tech.github.io/soilDB/reference/get_SDA_metrics.html)
      - [`get_SDA_cosurfmorph`](http://ncss-tech.github.io/soilDB/reference/get_SDA_cosurfmorph.html)
      
  * SSURGO Web Soil Survey 
    + [`downloadSSURGO`](http://ncss-tech.github.io/soilDB/reference/downloadSSURGO.html)
    + [`createSSURGO`](http://ncss-tech.github.io/soilDB/reference/createSSURGO.html)
 
  * SSURGO Local Geodatabases
    + [`fetchGDB`](http://ncss-tech.github.io/soilDB/reference/fetchGDB.html)

  * ROSETTA
    + [`ROSETTA`](http://ncss-tech.github.io/soilDB/reference/ROSETTA.html)
  
  * SSURGO/KSSL via SoilWeb
    + [`fetchKSSL`](http://ncss-tech.github.io/soilDB/reference/fetchKSSL.html)
    + [`fetchOSD`](http://ncss-tech.github.io/soilDB/reference/fetchOSD.html)
    + [`siblings`](http://ncss-tech.github.io/soilDB/reference/siblings.html)
    + [`OSDquery`](http://ncss-tech.github.io/soilDB/reference/OSDquery.html) 
    + [`seriesExtent`](http://ncss-tech.github.io/soilDB/reference/seriesExtent.html)
    + [`taxaExtent`](http://ncss-tech.github.io/soilDB/reference/taxaExtent.html)
    + [`mukey.wcs`](http://ncss-tech.github.io/soilDB/reference/mukey.wcs.html)
    + [`ISSR800.wcs`](http://ncss-tech.github.io/soilDB/reference/ISSR800.wcs.html)
  
  * NASIS WWW interface
    + [`parseWebReport`](http://ncss-tech.github.io/soilDB/reference/parseWebReport.html)
    + [`fetchNASISWebReport`](http://ncss-tech.github.io/soilDB/reference/fetchNASISWebReport.html)
  
  * SCAN/SNOTEL
    + [`fetchSCAN`](http://ncss-tech.github.io/soilDB/reference/fetchSCAN.html)
    + [`SCAN_SNOTEL_metadata`](http://ncss-tech.github.io/soilDB/reference/SCAN_SNOTEL_metadata.html)
    
  * Henry Mount Soil and Water Database
    + [`fetchHenry`](http://ncss-tech.github.io/soilDB/reference/fetchHenry.html)
    
  * NASIS local database
    + [`fetchNASIS`](http://ncss-tech.github.io/soilDB/reference/fetchNASIS.html)
    + [`dbConnectNASIS`](http://ncss-tech.github.io/soilDB/reference/dbConnectNASIS.html) (alias `NASIS()`)
    + [`dbQueryNASIS`](http://ncss-tech.github.io/soilDB/reference/dbQueryNASIS.html)
    + [`createStaticNASIS`](http://ncss-tech.github.io/soilDB/reference/createStaticNASIS.html)
    
  * SoilGrids
    + [`fetchSoilGrids`](http://ncss-tech.github.io/soilDB/reference/fetchSoilGrids.html)

## Miscellaneous Functions

  * [`estimateSTR`](http://ncss-tech.github.io/soilDB/reference/estimateSTR.html)
  * [`STRplot`](http://ncss-tech.github.io/soilDB/reference/STRplot.html)
  * [`KSSL_VG_model`](http://ncss-tech.github.io/soilDB/reference/KSSL_VG_model.html)
  * [`simplifyFragmentData`](http://ncss-tech.github.io/soilDB/reference/simplifyFragmentData.html)
  * [`simplifyColorData`](http://ncss-tech.github.io/soilDB/reference/simplifyColorData.html)
  * [`uncode`](http://ncss-tech.github.io/soilDB/reference/uncode.html)
  * [`code`](http://ncss-tech.github.io/soilDB/reference/code.html)
  * [`get_NOAA_GHCND`](http://ncss-tech.github.io/soilDB/reference/get_NOAA_GHCND.html)

## Tutorials and Demonstrations

 * [fetchKSSL](http://ncss-tech.github.io/AQP/soilDB/KSSL-demo.html)
 * [SDA_query](http://ncss-tech.github.io/AQP/soilDB/SDA-tutorial.html)
 * [fetchOSD](http://ncss-tech.github.io/AQP/sharpshootR/OSD-dendrogram.html)
 * [SCAN/SNOTEL Data](http://ncss-tech.github.io/AQP/soilDB/fetchSCAN-demo.html)

## Related Packages

 * [aqp](https://github.com/ncss-tech/aqp)
 * [sharpshootR](https://github.com/ncss-tech/sharpshootR)
 * [SoilTaxonomy](https://github.com/ncss-tech/SoilTaxonomy)
 

        

Citation (CITATION.cff)

# --------------------------------------------
# CITATION file created with {cffr} R package
# See also: https://docs.ropensci.org/cffr/
# --------------------------------------------
 
cff-version: 1.2.0
message: 'To cite package "soilDB" in publications use:'
type: software
license: GPL-3.0-or-later
title: 'soilDB: Soil Database Interface'
version: 2.8.10
identifiers:
- type: doi
  value: 10.32614/CRAN.package.soilDB
- type: url
  value: https://ncss-tech.github.io/soilDB/
- type: url
  value: https://ncss-tech.github.io/AQP/
abstract: A collection of functions for reading soil data from U.S. Department of
  Agriculture Natural Resources Conservation Service (USDA-NRCS) and National Cooperative
  Soil Survey (NCSS) databases.
authors:
- family-names: Beaudette
  given-names: Dylan
  email: [email protected]
- family-names: Skovlin
  given-names: Jay
- family-names: Roecker
  given-names: Stephen
- family-names: Brown
  given-names: Andrew
  email: [email protected]
  orcid: https://orcid.org/0000-0002-4565-533X
preferred-citation:
  type: manual
  title: 'soilDB: Soil Database Interface'
  authors:
  - family-names: Beaudette
    given-names: Dylan
    email: [email protected]
  - family-names: Skovlin
    given-names: Jay
  - family-names: Roecker
    given-names: Stephen
  - family-names: Brown
    given-names: Andrew
    email: [email protected]
    orcid: https://orcid.org/0000-0002-4565-533X
  notes: R package version 2.8.9
  url: https://CRAN.R-project.org/package=soilDB
  year: '2025'
repository: https://CRAN.R-project.org/package=soilDB
repository-code: https://github.com/ncss-tech/soilDB
url: https://github.com/ncss-tech/soilDB/
contact:
- family-names: Brown
  given-names: Andrew
  email: [email protected]
  orcid: https://orcid.org/0000-0002-4565-533X
keywords:
- cran
- kssl
- nasis
- nrcs
- r
- soil
- soil-data-access
- soil-survey
- soilweb
- sql
- usda
references:
- type: software
  title: 'R: A Language and Environment for Statistical Computing'
  notes: Depends
  url: https://www.R-project.org/
  authors:
  - name: R Core Team
  institution:
    name: R Foundation for Statistical Computing
    address: Vienna, Austria
  year: '2025'
  version: '>= 3.5.0'
- type: software
  title: grDevices
  abstract: 'R: A Language and Environment for Statistical Computing'
  notes: Imports
  authors:
  - name: R Core Team
  institution:
    name: R Foundation for Statistical Computing
    address: Vienna, Austria
  year: '2025'
- type: software
  title: graphics
  abstract: 'R: A Language and Environment for Statistical Computing'
  notes: Imports
  authors:
  - name: R Core Team
  institution:
    name: R Foundation for Statistical Computing
    address: Vienna, Austria
  year: '2025'
- type: software
  title: stats
  abstract: 'R: A Language and Environment for Statistical Computing'
  notes: Imports
  authors:
  - name: R Core Team
  institution:
    name: R Foundation for Statistical Computing
    address: Vienna, Austria
  year: '2025'
- type: software
  title: utils
  abstract: 'R: A Language and Environment for Statistical Computing'
  notes: Imports
  authors:
  - name: R Core Team
  institution:
    name: R Foundation for Statistical Computing
    address: Vienna, Austria
  year: '2025'
- type: software
  title: methods
  abstract: 'R: A Language and Environment for Statistical Computing'
  notes: Imports
  authors:
  - name: R Core Team
  institution:
    name: R Foundation for Statistical Computing
    address: Vienna, Austria
  year: '2025'
- type: software
  title: aqp
  abstract: 'aqp: Algorithms for Quantitative Pedology'
  notes: Imports
  url: https://ncss-tech.github.io/AQP/
  repository: https://CRAN.R-project.org/package=aqp
  authors:
  - family-names: Beaudette
    given-names: Dylan
    email: [email protected]
  - family-names: Roudier
    given-names: Pierre
    email: [email protected]
  - family-names: Brown
    given-names: Andrew
    email: [email protected]
  year: '2025'
  doi: 10.32614/CRAN.package.aqp
  version: '>= 2.1.0'
- type: software
  title: data.table
  abstract: 'data.table: Extension of `data.frame`'
  notes: Imports
  url: https://r-datatable.com
  repository: https://CRAN.R-project.org/package=data.table
  authors:
  - family-names: Barrett
    given-names: Tyson
    email: [email protected]
    orcid: https://orcid.org/0000-0002-2137-1391
  - family-names: Dowle
    given-names: Matt
    email: [email protected]
  - family-names: Srinivasan
    given-names: Arun
    email: [email protected]
  - family-names: Gorecki
    given-names: Jan
  - family-names: Chirico
    given-names: Michael
    orcid: https://orcid.org/0000-0003-0787-087X
  - family-names: Hocking
    given-names: Toby
    orcid: https://orcid.org/0000-0002-3146-0865
  - family-names: Schwendinger
    given-names: Benjamin
    orcid: https://orcid.org/0000-0003-3315-8114
  - family-names: Krylov
    given-names: Ivan
    email: [email protected]
    orcid: https://orcid.org/0000-0002-0172-3812
  year: '2025'
  doi: 10.32614/CRAN.package.data.table
- type: software
  title: DBI
  abstract: 'DBI: R Database Interface'
  notes: Imports
  url: https://dbi.r-dbi.org
  repository: https://CRAN.R-project.org/package=DBI
  authors:
  - name: R Special Interest Group on Databases (R-SIG-DB)
  - family-names: Wickham
    given-names: Hadley
  - family-names: Müller
    given-names: Kirill
    email: [email protected]
    orcid: https://orcid.org/0000-0002-1416-3412
  year: '2025'
  doi: 10.32614/CRAN.package.DBI
- type: software
  title: curl
  abstract: 'curl: A Modern and Flexible Web Client for R'
  notes: Imports
  url: https://jeroen.r-universe.dev/curl
  repository: https://CRAN.R-project.org/package=curl
  authors:
  - family-names: Ooms
    given-names: Jeroen
    email: [email protected]
    orcid: https://orcid.org/0000-0002-4035-0289
  year: '2025'
  doi: 10.32614/CRAN.package.curl
- type: software
  title: jsonlite
  abstract: 'jsonlite: A Simple and Robust JSON Parser and Generator for R'
  notes: Suggests
  url: https://jeroen.r-universe.dev/jsonlite
  repository: https://CRAN.R-project.org/package=jsonlite
  authors:
  - family-names: Ooms
    given-names: Jeroen
    email: [email protected]
    orcid: https://orcid.org/0000-0002-4035-0289
  year: '2025'
  doi: 10.32614/CRAN.package.jsonlite
- type: software
  title: xml2
  abstract: 'xml2: Parse XML'
  notes: Suggests
  url: https://xml2.r-lib.org
  repository: https://CRAN.R-project.org/package=xml2
  authors:
  - family-names: Wickham
    given-names: Hadley
  - family-names: Hester
    given-names: Jim
  - family-names: Ooms
    given-names: Jeroen
    email: [email protected]
  year: '2025'
  doi: 10.32614/CRAN.package.xml2
- type: software
  title: httr
  abstract: 'httr: Tools for Working with URLs and HTTP'
  notes: Suggests
  url: https://httr.r-lib.org/
  repository: https://CRAN.R-project.org/package=httr
  authors:
  - family-names: Wickham
    given-names: Hadley
    email: [email protected]
  year: '2025'
  doi: 10.32614/CRAN.package.httr
- type: software
  title: rvest
  abstract: 'rvest: Easily Harvest (Scrape) Web Pages'
  notes: Suggests
  url: https://rvest.tidyverse.org/
  repository: https://CRAN.R-project.org/package=rvest
  authors:
  - family-names: Wickham
    given-names: Hadley
    email: [email protected]
  year: '2025'
  doi: 10.32614/CRAN.package.rvest
- type: software
  title: odbc
  abstract: 'odbc: Connect to ODBC Compatible Databases (using the DBI Interface)'
  notes: Suggests
  url: https://odbc.r-dbi.org
  repository: https://CRAN.R-project.org/package=odbc
  authors:
  - family-names: Hester
    given-names: Jim
  - family-names: Wickham
    given-names: Hadley
    email: [email protected]
  - family-names: Gjoneski
    given-names: Oliver
  year: '2025'
  doi: 10.32614/CRAN.package.odbc
- type: software
  title: RSQLite
  abstract: 'RSQLite: SQLite Interface for R'
  notes: Suggests
  url: https://rsqlite.r-dbi.org
  repository: https://CRAN.R-project.org/package=RSQLite
  authors:
  - family-names: Müller
    given-names: Kirill
    email: [email protected]
    orcid: https://orcid.org/0000-0002-1416-3412
  - family-names: Wickham
    given-names: Hadley
  - family-names: James
    given-names: David A.
  - family-names: Falcon
    given-names: Seth
  year: '2025'
  doi: 10.32614/CRAN.package.RSQLite
- type: software
  title: sf
  abstract: 'sf: Simple Features for R'
  notes: Suggests
  url: https://r-spatial.github.io/sf/
  repository: https://CRAN.R-project.org/package=sf
  authors:
  - family-names: Pebesma
    given-names: Edzer
    email: [email protected]
    orcid: https://orcid.org/0000-0001-8049-7069
  year: '2025'
  doi: 10.32614/CRAN.package.sf
- type: software
  title: wk
  abstract: 'wk: Lightweight Well-Known Geometry Parsing'
  notes: Suggests
  url: https://paleolimbot.github.io/wk/
  repository: https://CRAN.R-project.org/package=wk
  authors:
  - family-names: Dunnington
    given-names: Dewey
    email: [email protected]
    orcid: https://orcid.org/0000-0002-9415-4582
  - family-names: Pebesma
    given-names: Edzer
    email: [email protected]
    orcid: https://orcid.org/0000-0001-8049-7069
  year: '2025'
  doi: 10.32614/CRAN.package.wk
- type: software
  title: terra
  abstract: 'terra: Spatial Data Analysis'
  notes: Suggests
  url: https://rspatial.org/
  repository: https://CRAN.R-project.org/package=terra
  authors:
  - family-names: Hijmans
    given-names: Robert J.
    email: [email protected]
    orcid: https://orcid.org/0000-0001-5872-2872
  year: '2025'
  doi: 10.32614/CRAN.package.terra
- type: software
  title: raster
  abstract: 'raster: Geographic Data Analysis and Modeling'
  notes: Suggests
  url: https://rspatial.org/raster
  repository: https://CRAN.R-project.org/package=raster
  authors:
  - family-names: Hijmans
    given-names: Robert J.
    email: [email protected]
    orcid: https://orcid.org/0000-0001-5872-2872
  year: '2025'
  doi: 10.32614/CRAN.package.raster
- type: software
  title: knitr
  abstract: 'knitr: A General-Purpose Package for Dynamic Report Generation in R'
  notes: Suggests
  url: https://yihui.org/knitr/
  repository: https://CRAN.R-project.org/package=knitr
  authors:
  - family-names: Xie
    given-names: Yihui
    email: [email protected]
    orcid: https://orcid.org/0000-0003-0645-5666
  year: '2025'
  doi: 10.32614/CRAN.package.knitr
- type: software
  title: rmarkdown
  abstract: 'rmarkdown: Dynamic Documents for R'
  notes: Suggests
  url: https://pkgs.rstudio.com/rmarkdown/
  repository: https://CRAN.R-project.org/package=rmarkdown
  authors:
  - family-names: Allaire
    given-names: JJ
    email: [email protected]
  - family-names: Xie
    given-names: Yihui
    email: [email protected]
    orcid: https://orcid.org/0000-0003-0645-5666
  - family-names: Dervieux
    given-names: Christophe
    email: [email protected]
    orcid: https://orcid.org/0000-0003-4474-2498
  - family-names: McPherson
    given-names: Jonathan
    email: [email protected]
  - family-names: Luraschi
    given-names: Javier
  - family-names: Ushey
    given-names: Kevin
    email: [email protected]
  - family-names: Atkins
    given-names: Aron
    email: [email protected]
  - family-names: Wickham
    given-names: Hadley
    email: [email protected]
  - family-names: Cheng
    given-names: Joe
    email: [email protected]
  - family-names: Chang
    given-names: Winston
    email: [email protected]
  - family-names: Iannone
    given-names: Richard
    email: [email protected]
    orcid: https://orcid.org/0000-0003-3925-190X
  year: '2025'
  doi: 10.32614/CRAN.package.rmarkdown
- type: software
  title: testthat
  abstract: 'testthat: Unit Testing for R'
  notes: Suggests
  url: https://testthat.r-lib.org
  repository: https://CRAN.R-project.org/package=testthat
  authors:
  - family-names: Wickham
    given-names: Hadley
    email: [email protected]
  year: '2025'
  doi: 10.32614/CRAN.package.testthat


Owner metadata


GitHub Events

Total
Last Year

Committers metadata

Last synced: 5 days ago

Total Commits: 3,324
Total Committers: 18
Avg Commits per committer: 184.667
Development Distribution Score (DDS): 0.549

Commits in past year: 318
Committers in past year: 4
Avg Commits per committer in past year: 79.5
Development Distribution Score (DDS) in past year: 0.192

Name Email Commits
Dylan Beaudette d****e 1499
Andrew Gene Brown a****n@u****v 1224
Stephen Roecker s****r@g****m 224
github-actions g****s@g****m 208
Pierre Roudier p****r 54
Jay Skovlin j****n@g****m 40
Jay Skovlin j****n 36
Beaudette d****e@c****v 12
joshualerickson j****n@g****m 7
Roecker 1****9@f****v 5
Roe 1****5@F****V 3
Roecker 1****9@F****V 3
R. Kyle Bocinsky b****y 2
Beaudette 1****2@F****V 2
Jay Skovlin 1****2@F****V 2
Chris Black c****s@c****g 1
Daniel Schlaepfer d****r@a****h 1
John Hammerly j****y@g****m 1

Committer domains:


Issue and Pull Request metadata

Last synced: 2 days ago

Total issues: 236
Total pull requests: 134
Average time to close issues: 12 months
Average time to close pull requests: 12 days
Total issue authors: 25
Total pull request authors: 10
Average comments per issue: 3.49
Average comments per pull request: 1.78
Merged pull request: 127
Bot issues: 0
Bot pull requests: 0

Past year issues: 17
Past year pull requests: 28
Past year average time to close issues: 9 days
Past year average time to close pull requests: 6 days
Past year issue authors: 6
Past year pull request authors: 3
Past year average comments per issue: 1.59
Past year average comments per pull request: 1.46
Past year merged pull request: 24
Past year bot issues: 0
Past year bot pull requests: 0

More stats: https://issues.ecosyste.ms/repositories/lookup?url=https://github.com/ncss-tech/soilDB

Top Issue Authors

  • dylanbeaudette (113)
  • brownag (66)
  • phytoclast (11)
  • smroecker (7)
  • kevinwolz (7)
  • potash (5)
  • dschlaep (4)
  • bocinsky (3)
  • MatthieuStigler (2)
  • floveil (2)
  • MollicMeyer (2)
  • MichaelSullivan2 (1)
  • Kramdog (1)
  • awykhuis (1)
  • natearoe (1)

Top Pull Request Authors

  • brownag (116)
  • dylanbeaudette (8)
  • bocinsky (2)
  • natearoe (2)
  • dschlaep (1)
  • cbrueffer (1)
  • smroecker (1)
  • MatthieuStigler (1)
  • infotroph (1)
  • joshualerickson (1)

Top Issue Labels

  • NASIS-local (27)
  • enhancement (19)
  • bug (17)
  • SoilWeb (13)
  • wontfix (3)
  • help wanted (1)
  • good-first-issue (1)

Top Pull Request Labels

  • enhancement (5)
  • NASIS-local (2)
  • SoilWeb (1)
  • bug (1)

Package metadata

cran.r-project.org: soilDB

Soil Database Interface

  • Homepage: https://github.com/ncss-tech/soilDB/
  • Documentation: http://cran.r-project.org/web/packages/soilDB/soilDB.pdf
  • Licenses: GPL (≥ 3)
  • Latest release: 2.8.9 (published 22 days ago)
  • Last Synced: 2025-04-25T05:31:26.176Z (2 days ago)
  • Versions: 56
  • Dependent Packages: 5
  • Dependent Repositories: 12
  • Downloads: 1,697 Last month
  • Docker Downloads: 110,231
  • Rankings:
    • Docker downloads count: 0.045%
    • Forks count: 3.96%
    • Stargazers count: 5.324%
    • Average: 5.998%
    • Dependent packages count: 7.952%
    • Dependent repos count: 8.406%
    • Downloads: 10.301%
  • Maintainers (1)

Dependencies

.github/workflows/R-CMD-check.yml actions
  • actions/cache v3 composite
  • actions/checkout v3 composite
  • actions/upload-artifact v3 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
.github/workflows/pkgdown.yml actions
  • JamesIves/github-pages-deploy-action v4.4.1 composite
  • actions/checkout v3 composite
  • r-lib/actions/setup-pandoc v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
.github/workflows/revdepcheck.yml actions
  • actions/checkout v2 composite
  • r-lib/actions/setup-pandoc v1 composite
  • r-lib/actions/setup-r v1 composite
  • r-lib/actions/setup-r-dependencies v1 composite
.github/workflows/update-citation-cff.yaml actions
  • actions/checkout v2 composite
  • r-lib/actions/setup-r v2 composite
  • r-lib/actions/setup-r-dependencies v2 composite
DESCRIPTION cran
  • R >= 3.5.0 depends
  • DBI * imports
  • aqp * imports
  • curl * imports
  • data.table * imports
  • grDevices * imports
  • graphics * imports
  • methods * imports
  • stats * imports
  • utils * imports
  • RSQLite * suggests
  • httr * suggests
  • jsonlite * suggests
  • knitr * suggests
  • odbc * suggests
  • raster * suggests
  • rmarkdown * suggests
  • rvest * suggests
  • scales * suggests
  • sf * suggests
  • terra * suggests
  • testthat * suggests
  • wk * suggests
  • xml2 * suggests

Score: 19.243549333357468