soilDB
soilDB: Simplified Access to National Cooperative Soil Survey Databases
Science Score: 54.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
✓CITATION.cff file
Found 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
1 of 18 committers (5.6%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (12.0%) to scientific vocabulary
Keywords
kssl
nasis
nrcs
r
soil
soil-data-access
soil-survey
soilweb
sql
usda
Last synced: 6 months ago
·
JSON representation
·
Repository
soilDB: Simplified Access to National Cooperative Soil Survey Databases
Basic Info
- Host: GitHub
- Owner: ncss-tech
- License: gpl-3.0
- Language: R
- Default Branch: master
- Homepage: http://ncss-tech.github.io/soilDB/
- Size: 177 MB
Statistics
- Stars: 92
- Watchers: 6
- Forks: 19
- Open Issues: 28
- Releases: 36
Topics
kssl
nasis
nrcs
r
soil
soil-data-access
soil-survey
soilweb
sql
usda
Created almost 10 years ago
· Last pushed 6 months ago
Metadata Files
Readme
Changelog
License
Citation
README.Rmd
---
output: md_document
---
[](https://CRAN.R-project.org/package=soilDB)
[](https://cran.r-project.org/web/checks/check_results_soilDB.html)
[](https://ncss-tech.r-universe.dev/)
[](https://github.com/ncss-tech/soilDB/actions)
[](https://cran.r-project.org/package=soilDB)

[](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)
Owner
- Name: ncss-tech
- Login: ncss-tech
- Kind: organization
- Location: United States of America
- Website: http://ncss-tech.github.io/AQP/
- Repositories: 67
- Profile: https://github.com/ncss-tech
Collection of repositories contributed by members of the National Cooperative Soil Survey
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.12
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: dylan.beaudette@usda.gov
- family-names: Skovlin
given-names: Jay
- family-names: Roecker
given-names: Stephen
- family-names: Brown
given-names: Andrew
email: andrew.g.brown@usda.gov
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: dylan.beaudette@usda.gov
- family-names: Skovlin
given-names: Jay
- family-names: Roecker
given-names: Stephen
- family-names: Brown
given-names: Andrew
email: andrew.g.brown@usda.gov
orcid: https://orcid.org/0000-0002-4565-533X
notes: R package version 2.8.11
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: andrew.g.brown@usda.gov
orcid: https://orcid.org/0000-0002-4565-533X
keywords:
- 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: dylan.beaudette@usda.gov
- family-names: Roudier
given-names: Pierre
email: roudierp@landcareresearch.co.nz
- family-names: Brown
given-names: Andrew
email: andrew.g.brown@usda.gov
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: t.barrett88@gmail.com
orcid: https://orcid.org/0000-0002-2137-1391
- family-names: Dowle
given-names: Matt
email: mattjdowle@gmail.com
- family-names: Srinivasan
given-names: Arun
email: asrini@pm.me
- 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: ikrylov@disroot.org
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: kirill@cynkra.com
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: jeroenooms@gmail.com
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: jeroenooms@gmail.com
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: jeroenooms@gmail.com
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: hadley@posit.co
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: hadley@posit.co
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: hadley@posit.co
- 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: kirill@cynkra.com
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: edzer.pebesma@uni-muenster.de
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: dewey@fishandwhistle.net
orcid: https://orcid.org/0000-0002-9415-4582
- family-names: Pebesma
given-names: Edzer
email: edzer.pebesma@uni-muenster.de
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: r.hijmans@gmail.com
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: r.hijmans@gmail.com
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: xie@yihui.name
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: jj@posit.co
- family-names: Xie
given-names: Yihui
email: xie@yihui.name
orcid: https://orcid.org/0000-0003-0645-5666
- family-names: Dervieux
given-names: Christophe
email: cderv@posit.co
orcid: https://orcid.org/0000-0003-4474-2498
- family-names: McPherson
given-names: Jonathan
email: jonathan@posit.co
- family-names: Luraschi
given-names: Javier
- family-names: Ushey
given-names: Kevin
email: kevin@posit.co
- family-names: Atkins
given-names: Aron
email: aron@posit.co
- family-names: Wickham
given-names: Hadley
email: hadley@posit.co
- family-names: Cheng
given-names: Joe
email: joe@posit.co
- family-names: Chang
given-names: Winston
email: winston@posit.co
- family-names: Iannone
given-names: Richard
email: rich@posit.co
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: hadley@posit.co
year: '2025'
doi: 10.32614/CRAN.package.testthat
GitHub Events
Total
- Create event: 28
- Release event: 4
- Issues event: 24
- Watch event: 8
- Delete event: 13
- Issue comment event: 32
- Push event: 247
- Pull request review comment event: 7
- Pull request review event: 6
- Pull request event: 50
Last Year
- Create event: 28
- Release event: 4
- Issues event: 24
- Watch event: 8
- Delete event: 13
- Issue comment event: 32
- Push event: 247
- Pull request review comment event: 7
- Pull request review event: 6
- Pull request event: 50
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| Dylan Beaudette | d****e | 1,502 |
| Andrew Gene Brown | a****n@u****v | 1,252 |
| Stephen Roecker | s****r@g****m | 224 |
| github-actions | g****s@g****m | 212 |
| 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 (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 239
- Total pull requests: 174
- Average time to close issues: 12 months
- Average time to close pull requests: 10 days
- Total issue authors: 24
- Total pull request authors: 10
- Average comments per issue: 3.31
- Average comments per pull request: 1.61
- Merged pull requests: 159
- Bot issues: 0
- Bot pull requests: 0
Past Year
- Issues: 17
- Pull requests: 59
- Average time to close issues: 7 days
- Average time to close pull requests: 4 days
- Issue authors: 4
- Pull request authors: 3
- Average comments per issue: 0.47
- Average comments per pull request: 1.25
- Merged pull requests: 47
- Bot issues: 0
- Bot pull requests: 0
Top Authors
Issue Authors
- dylanbeaudette (115)
- brownag (69)
- phytoclast (12)
- smroecker (7)
- kevinwolz (5)
- potash (5)
- dschlaep (4)
- bocinsky (3)
- floveil (2)
- MollicMeyer (2)
- MatthieuStigler (2)
- Kramdog (1)
- MichaelSullivan2 (1)
- natearoe (1)
- colinbrust (1)
Pull Request Authors
- brownag (150)
- dylanbeaudette (12)
- natearoe (4)
- bocinsky (2)
- cbrueffer (1)
- infotroph (1)
- dschlaep (1)
- smroecker (1)
- MatthieuStigler (1)
- joshualerickson (1)
Top Labels
Issue Labels
NASIS-local (27)
enhancement (20)
bug (17)
SoilWeb (13)
wontfix (3)
help wanted (1)
good-first-issue (1)
Pull Request Labels
enhancement (7)
NASIS-local (2)
SoilWeb (1)
bug (1)
Packages
- Total packages: 1
-
Total downloads:
- cran 1,816 last-month
- Total docker downloads: 110,231
- Total dependent packages: 5
- Total dependent repositories: 12
- Total versions: 58
- Total maintainers: 1
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
- License: GPL (≥ 3)
-
Latest release: 2.8.12
published 6 months ago
Rankings
Docker downloads count: 0.0%
Forks count: 4.0%
Stargazers count: 5.3%
Average: 6.0%
Dependent packages count: 8.0%
Dependent repos count: 8.4%
Downloads: 10.3%
Maintainers (1)
Last synced:
6 months ago
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