Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bcgov/bcgroundwater
An R package to facilitate analysis and visualization of groundwater data from the British Columbia groundwater observation well network
https://github.com/bcgov/bcgroundwater
data-science env r rstats
Last synced: 3 months ago
JSON representation
An R package to facilitate analysis and visualization of groundwater data from the British Columbia groundwater observation well network
- Host: GitHub
- URL: https://github.com/bcgov/bcgroundwater
- Owner: bcgov
- License: apache-2.0
- Created: 2015-03-13T20:46:25.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2024-03-13T23:59:08.000Z (8 months ago)
- Last Synced: 2024-04-27T01:31:28.215Z (7 months ago)
- Topics: data-science, env, r, rstats
- Language: R
- Homepage:
- Size: 1.41 MB
- Stars: 19
- Watchers: 9
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- open-sustainable-technology - bcgroundwater - An R package to facilitate analysis and visualization of groundwater data from the British Columbia groundwater observation well network. (Natural Resources / Water Supply and Quality)
README
# bcgroundwater
[![img](https://img.shields.io/badge/Lifecycle-Dormant-ff7f2a)](https://github.com/bcgov/repomountie/blob/master/doc/lifecycle-badges.md)
[![Travis-CI Build Status](https://travis-ci.org/bcgov/bcgroundwater.svg?branch=master)](https://travis-ci.org/bcgov/bcgroundwater)
[![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)## Overview
An [R](http://www.r-project.org) package to facilitate analysis and
visualisation of groundwater data from the [British Columbia Provincial Groundwater
Observation Well Network](https://www2.gov.bc.ca/gov/content?id=B03D0994BB5C4F98B6F7D4FD8610C836).The package provides functions for importing, cleaning, and summarising groundwater data, analysing long-term trends in groundwater levels, and visualising analysis results. The package was developed by [Environmental Reporting BC](http://www2.gov.bc.ca/gov/content?id=FF80E0B985F245CEA62808414D78C41B)
to support our water indicator on [long-term trends in groundwater levels](http://www.env.gov.bc.ca/soe/indicators/water/groundwater-levels.html).
The code behind that analysis is available in its own GitHub [repository](https:/github.com/bcgov/groundwater-levels-indicator/).## Features
Core functions include:
- Import data downloaded from the [B.C. Data Catalogue](https://catalogue.data.gov.bc.ca/dataset/57c55f10-cf8e-40bb-aae0-2eff311f1685) distributed under the [Open Government Licence-British Columbia](https://www2.gov.bc.ca/gov/content?id=A519A56BC2BF44E4A008B33FCF527F61)
- Summarise and plot monthly groundwater levels
- Interpolate missing values
- Perform Mann-Kendall trend tests with pre-whitening on multiple datasets using
methods implemented in the
[zyp](http://cran.r-project.org/web/packages/zyp/index.html) package
- Plot trends in groundwater levels## Installation
You can install the package directly from this repository. To do so, you will
need the [remotes](https://cran.r-project.org/web/packages/remotes/index.html) package:```R
install.packages("remotes")
```Next, install the `bcgroundwater` package using `remotes::install_github()`:
```R
library("remotes")
install_github("bcgov/bcgroundwater")
```## Usage
See the package [vignette](https://htmlpreview.github.com/?https://github.com/bcgov/bcgroundwater/master/inst/doc/bcgroundwater.html)
for a simple demonstration. Or, after installing the package, use:```R
browseVignettes("bcgroundwater")
```## Project Status
The package works as is for the intended purpose, which was to provide a set of
functions required for the analysis underlying the
[Environmental Reporting BC indicator](http://www.env.gov.bc.ca/soe/indicators/water/groundwater-levels.html).
We are actively updating the package at this time, you can check the
[issues](https://github.com/bcgov/bcgroundwater/issues/) for things we are fixing or working on.## Getting Help or Reporting an Issue
To report bugs/issues/feature requests, please file an [issue](https://github.com/bcgov/bcgroundwater/issues/).
## How to Contribute
If you would like to contribute to the package, please see our
[CONTRIBUTING](CONTRIBUTING.md) guidelines.Please note that this project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By participating in this project you agree to abide by its terms.
## License
Copyright 2015 Province of British Columbia
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License athttp://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.This repository is maintained by [Environmental Reporting BC](http://www2.gov.bc.ca/gov/content?id=FF80E0B985F245CEA62808414D78C41B). Click [here](https://github.com/bcgov/EnvReportBC) for a complete list of our repositories on GitHub.