LAGOSNE
Interface to the LAke multi-scaled GeOSpatial & temporal database :earth_americas:
Science Score: 23.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
✓DOI references
Found 14 DOI reference(s) in README -
○Academic publication links
-
✓Committers with academic emails
4 of 7 committers (57.1%) from academic institutions -
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (16.6%) to scientific vocabulary
Keywords
cran
ecology
geoscience
limnology
rstats
water-quality
Keywords from Contributors
carpentries
data-carpentry
data-wrangling
english
lesson
open-educational-resources
stable
Last synced: 6 months ago
·
JSON representation
Repository
Interface to the LAke multi-scaled GeOSpatial & temporal database :earth_americas:
Basic Info
- Host: GitHub
- Owner: cont-limno
- Language: R
- Default Branch: master
- Homepage: https://cont-limno.github.io/LAGOSNE/
- Size: 29.1 MB
Statistics
- Stars: 15
- Watchers: 4
- Forks: 8
- Open Issues: 3
- Releases: 10
Topics
cran
ecology
geoscience
limnology
rstats
water-quality
Created over 9 years ago
· Last pushed over 2 years ago
Metadata Files
Readme
README.Rmd
---
output: github_document
editor_options:
chunk_output_type: console
---
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-"
)
```
[](https://www.repostatus.org/#active) [](https://github.com/cont-limno/LAGOSNE/actions/workflows/R-CMD-check.yml) [](https://cran.r-project.org/package=LAGOSNE) [](https://cran.r-project.org/package=LAGOSNE)
[](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1065786) [](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1638679) [](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1065649) [](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1065818) [](https://www.nsf.gov/awardsearch/showAward?AWD_ID=1638554)
# LAGOSNE
The `LAGOSNE` package provides an R interface to download LAGOS-NE data, store this data locally, and perform a variety of filtering and subsetting operations.
LAGOS-NE contains data for 51,101 lakes and reservoirs larger than 4 ha in 17 lake-rich US states. The database includes 3 data modules for: lake location and physical characteristics for all lakes; ecological context (i.e., the land use, geologic, climatic, and hydrologic setting of lakes) for all lakes; and in situ measurements of lake water quality for a subset of the lakes from the past 3 decades for approximately 2,600-12,000 lakes depending on the variable (see Soranno et al. 2017 [below](https://github.com/cont-limno/LAGOSNE#references)).
## Installation
```{r install,eval=FALSE}
# install stable version from CRAN
install.packages("LAGOSNE")
# install development version from Github
# install devtools if not found - install.packages("devtools")
# devtools::install_github("cont-limno/LAGOSNE", dependencies = TRUE)
```
### Data
The `lagosne_get` function downloads the LAGOSNE files corresponding to the specified version from the [EDI data repository](https://portal.edirepository.org/nis/home.jsp). Files are stored in a temporary directory before being "compiled" to an `R` data format in the location specified by the `dest_folder` argument. Recommended setting is `lagos_path()`. Data only needs to be downloaded one time per version per machine. Each `LAGOSNE` [module](https://cont-limno.github.io/LAGOSNE/articles/lagosne_structure.html) has a unique version number. However, only the limno module has been dynamically updated. Therefore the `LAGOSNE` `R` package uses the limno module version number to check-out specific datasets. **The latest version of the `LAGOSNE` dataset is `r LAGOSNE::lagosne_version()`.**
```{r get_data, eval=FALSE}
library(LAGOSNE)
lagosne_get(dest_folder = lagos_path())
```
## Usage
### Load Package
```{r load_library}
library(LAGOSNE)
```
### Load data
The `lagosne_load` function returns a named list of `data.frame` objects. Use the `names()` function to see a list of available data frames `names(dt)`.
```{r load_data, eval=FALSE}
dt <- lagosne_load()
names(dt)
```
```{r load_data_cached, eval=TRUE, echo=FALSE}
dt <- readRDS(system.file("lagos_test_subset.rds", package = "LAGOSNE"))
names(dt)
```
#### Locate tables containing a variable
```{r eval=FALSE}
query_lagos_names("secchi")
```
```{r echo=FALSE}
query_lagos_names("secchi", dt = dt)
```
#### Preview a table
```{r preview table}
head(dt$state)
```
#### Preview a specific lake
```{r lake_info, eval = FALSE}
lake_info(name = "Pine Lake", state = "Iowa")
# or using a lagoslakeid
# lake_info(lagoslakeid = 4389)
```
```{r lake_info_cached, echo = FALSE}
suppressWarnings(
lake_info(name = "Pine Lake", state = "Iowa", dt = dt)
)
```
#### Read table metadata
```{r load printr, echo=FALSE,message=FALSE,results='hide'}
loadNamespace("printr")
```
```{r Read metadata for individual tables}
help.search("datasets", package = "LAGOSNE")
```
```{r unload printr, echo=FALSE}
unloadNamespace("printr")
```
### Select data
`lagosne_select` is a convenience function whose primary purpose is to provide users with the ability to select subsets of LAGOS tables that correspond to specific keywords (see `LAGOSNE:::keyword_partial_key()` and `LAGOSNE:::keyword_full_key()`). See [here](http://adv-r.had.co.nz/Subsetting.html) for a comprehensive tutorial on generic `data.frame` subsetting.
```{r demo_select, eval=TRUE}
# specific variables
head(lagosne_select(table = "epi_nutr", vars = c("tp", "tn"), dt = dt))
head(lagosne_select(table = "iws.lulc", vars = c("iws_nlcd2011_pct_95"), dt = dt))
# categories
head(lagosne_select(table = "locus", categories = "id", dt = dt))
head(lagosne_select(table = "epi_nutr", categories = "waterquality", dt = dt))
head(lagosne_select(table = "hu4.chag", categories = "deposition", dt = dt)[,1:4])
# mix of specific variables and categories
head(lagosne_select(table = "epi_nutr", vars = "programname",
categories = c("id", "waterquality"), dt = dt))
```
## Published LAGOSNE subsets
```{r demo_pulling_other, eval = FALSE}
# Oliver et al. 2015
lagos_get_oliver_2015()
head(lagos_load_oliver_2015())
# Collins et al. 2017
lagos_get_collins_2017()
head(lagos_load_collins_2017())
```
## Legacy Versions
### R Package
To install versions of `LAGOSNE` compatible with older versions of LAGOS-NE run the following command where `ref` is set to the desired version (in the example, it is version 1.087.1):
```{r eval=FALSE}
# install devtools if not found
# install.packages("devtools")
devtools::install_github("cont-limno/LAGOSNE", ref = "v1.087.1")
```
## References
Oliver, SK, PA Soranno, CE Fergus, T Wagner, K Webster, CE Scott, LA Winslow, J Downing, and EH Stanley. 2015. “LAGOS - Predicted and Observed Maximum Depth Values for Lakes in a 17-State Region of the U.S.” https://dx.doi.org/10.6073/pasta/edc06bbae6db80e801b6e52253f2ea09.
Soranno, P.A., Bacon, L.C., Beauchene, M., Bednar, K.E., Bissell, E.G., Boudreau, C.K., Boyer, M.G., Bremigan, M.T., Carpenter, S.R., Carr, J.W. Cheruvelil, K.S., and ... , 2017. LAGOS-NE: A multi-scaled geospatial and temporal database of lake ecological context and water quality for thousands of US lakes. GigaScience, https://doi.org/10.1093/gigascience/gix101
Soranno, PA, EG Bissell, KS Cheruvelil, ST Christel, SM Collins, CE Fergus, CT Filstrup, et al. 2015. “Building a Multi-Scaled Geospatial Temporal Ecology Database from Disparate Data Sources: Fostering Open Science and Data Reuse.” Gigascience 4 (1). https://dx.doi.org/10.1186/s13742-015-0067-4.
Stachelek J., Oliver S. 2017. LAGOSNE: Interface to the Lake Multi-scaled Geospatial and Temporal Database. R package version 1.1.0. https://cran.r-project.org/package=LAGOSNE
Soranno P, Cheruvelil K. 2017. LAGOS-NE-LOCUS v1.01: a module for LAGOS-NE, a multi-scaled geospatial and temporal database of lake ecological context and water quality for thousands of U.S. Lakes: 1925–2013. Environmental Data Initiative. https://doi.org/10.6073/PASTA/0C23A789232AB4F92107E26F70A7D8EF
Soranno P, Cheruvelil K. 2019. LAGOS-NE-LIMNO v1.087.3: a module for LAGOS-NE, a multi-scaled geospatial and temporal database of lake ecological context and water quality for thousands of U.S. Lakes: 1925–2013. Environmental Data Initiative. https://doi.org/10.6073/PASTA/08C6F9311929F4874B01BCC64EB3B2D7.
Soranno P, Cheruvelil K. 2017. LAGOS-NE-GEO v1.05: a module for LAGOS-NE, a multi-scaled geospatial and temporal database of lake ecological context and water quality for thousands of U.S. Lakes: 1925–2013. Environmental Data Initiative. https://doi.org/10.6073/PASTA/16F4BDAA9607C845C0B261A580730A7A
Owner
- Name: Continental Limnology
- Login: cont-limno
- Kind: organization
- Website: https://lagoslakes.org
- Repositories: 23
- Profile: https://github.com/cont-limno
NSF funded interdisciplinary project-- A macrosystems ecology framework for continental-scale prediction and understanding of lakes.
GitHub Events
Total
Last Year
Committers
Last synced: 7 months ago
Top Committers
| Name | Commits | |
|---|---|---|
| jsta | j****k@u****u | 288 |
| jsta | s****2@m****u | 246 |
| limnoliver | s****r@w****u | 74 |
| Jeff Hollister | j****r@g****m | 6 |
| Patricia A. Soranno | s****o@a****u | 2 |
| Fisheries FWL Wildlife | F****e | 1 |
| boudre32 | 3****2 | 1 |
Committer Domains (Top 20 + Academic)
Issues and Pull Requests
Last synced: 6 months ago
All Time
- Total issues: 109
- Total pull requests: 5
- Average time to close issues: 3 months
- Average time to close pull requests: 2 days
- Total issue authors: 8
- Total pull request authors: 3
- Average comments per issue: 1.31
- Average comments per pull request: 1.0
- Merged pull requests: 5
- 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
- jsta (92)
- limnoliver (8)
- jhollist (3)
- christophebenjamin (2)
- soranno (1)
- lawinslow (1)
- mfa54 (1)
- KateriSalk (1)
Pull Request Authors
- jhollist (3)
- limnoliver (1)
- boudre32 (1)
Top Labels
Issue Labels
for next version (9)
High priority (9)
Low Priority (5)
bug (3)
Pending more info (1)
Pull Request Labels
Packages
- Total packages: 3
-
Total downloads:
- cran 273 last-month
-
Total dependent packages: 0
(may contain duplicates) -
Total dependent repositories: 1
(may contain duplicates) - Total versions: 17
- Total maintainers: 1
proxy.golang.org: github.com/cont-limno/lagosne
- Documentation: https://pkg.go.dev/github.com/cont-limno/lagosne#section-documentation
-
Latest release: v2.0.3+incompatible
published over 2 years ago
Rankings
Dependent packages count: 5.4%
Average: 5.6%
Dependent repos count: 5.8%
Last synced:
6 months ago
proxy.golang.org: github.com/cont-limno/LAGOSNE
- Documentation: https://pkg.go.dev/github.com/cont-limno/LAGOSNE#section-documentation
-
Latest release: v2.0.3+incompatible
published over 2 years ago
Rankings
Dependent packages count: 5.4%
Average: 5.6%
Dependent repos count: 5.8%
Last synced:
6 months ago
cran.r-project.org: LAGOSNE
Interface to the Lake Multi-Scaled Geospatial and Temporal Database
- Homepage: https://github.com/cont-limno/LAGOSNE
- Documentation: http://cran.r-project.org/web/packages/LAGOSNE/LAGOSNE.pdf
- License: GPL-2 | GPL-3 [expanded from: GPL]
-
Latest release: 2.0.3
published over 2 years ago
Rankings
Forks count: 8.8%
Stargazers count: 14.6%
Average: 21.7%
Dependent repos count: 24.3%
Dependent packages count: 27.8%
Downloads: 33.0%
Maintainers (1)
Last synced:
6 months ago
Dependencies
DESCRIPTION
cran
- R >= 3.5.0 depends
- curl >= 2.7.0 imports
- dplyr >= 0.7.0 imports
- lazyeval >= 0.2 imports
- magrittr >= 1.5 imports
- memoise * imports
- progress * imports
- purrr >= 0.2.2.2 imports
- qs * imports
- rappdirs >= 0.3.1 imports
- rlang * imports
- sf * imports
- stringr >= 1.2.0 imports
- tibble * imports
- tidyr * imports
- R.rsp * suggests
- devtools * suggests
- ggplot2 * suggests
- knitr * suggests
- printr * suggests
- rmarkdown * suggests
- testthat * suggests
.github/workflows/R-CMD-check.yml
actions
- actions/cache v3 composite
- actions/checkout v3 composite
- actions/upload-artifact main composite
- r-lib/actions/setup-pandoc v2 composite
- r-lib/actions/setup-r v2 composite
.github/workflows/pkgdown.yaml
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