boreholeforensicspumpingtest
This dataset contains borehole forensic pumping test data, capturing key parameters related to groundwater extraction, borehole performance, and water quality assessments in Malawi.
https://github.com/openwashdata/boreholeforensicspumpingtest
Science Score: 67.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
Found 2 DOI reference(s) in README -
✓Academic publication links
Links to: zenodo.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (15.8%) to scientific vocabulary
Last synced: 6 months ago
·
JSON representation
·
Repository
This dataset contains borehole forensic pumping test data, capturing key parameters related to groundwater extraction, borehole performance, and water quality assessments in Malawi.
Basic Info
- Host: GitHub
- Owner: openwashdata
- License: cc-by-4.0
- Language: R
- Default Branch: main
- Homepage: https://openwashdata.github.io/boreholeforensicspumpingtest/
- Size: 1.43 MB
Statistics
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
- Releases: 1
Created about 1 year ago
· Last pushed 8 months ago
Metadata Files
Readme
License
Citation
README.Rmd
---
output: github_document
always_allow_html: true
editor_options:
markdown:
wrap: 72
chunk_output_type: console
---
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%",
message = FALSE,
warning = FALSE,
fig.retina = 2,
fig.align = 'center'
)
```
# Borehole Forensics 4 - Pumping Test 2018 - 2024
[](https://creativecommons.org/licenses/by/4.0/)
[](https://zenodo.org/doi/10.5281/zenodo.15800110)
This dataset contains borehole forensic pumping test data, capturing key
parameters related to groundwater extraction, borehole performance, and
water quality assessments. It includes information on the test
conditions, water levels, pumping rates, flow measurement methods, and
water quality indicators such as pH, turbidity, and electrical
conductivity.
The dataset also documents permissions granted for testing, equipment
used, and observations on borehole performance, such as whether the
water level stabilized during pumping and whether the borehole passed
the test.
Potential Uses of the Dataset
1. Hydrogeological Analysis: Evaluating groundwater availability and borehole efficiency.
2. Environmental Studies: Assessing water quality parameters.
3. Infrastructure Planning: Supporting water resource management and borehole maintenance decisions.
4. Regulatory Compliance: Ensuring boreholes meet required operational standards.
The data was collected by BASEFlow with funding from the [Open Research Data Program of the ETH Board](https://ethrat.ch/en/eth-domain/open-research-data/).
## Installation
You can install the development version of boreholeforensicspumpingtest from
[GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("openwashdata/boreholeforensicspumpingtest")
```
```{r}
## Run the following code in console if you don't have the packages
## install.packages(c("dplyr", "knitr", "readr", "stringr", "gt", "kableExtra"))
library(dplyr)
library(knitr)
library(readr)
library(stringr)
library(gt)
library(kableExtra)
library(ggplot2)
library(lubridate)
```
Alternatively, you can download the individual datasets as a CSV or XLSX
file from the table below.
1. Click Download CSV. A window opens that displays the CSV in
your browser.
2. Right-click anywhere inside the window and select "Save Page As...".
3. Save the file in a folder of your choice.
```{r, echo=FALSE, message=FALSE, warning=FALSE}
extdata_path <- "https://github.com/openwashdata/boreholeforensicspumpingtest/raw/main/inst/extdata/"
read_csv("data-raw/dictionary.csv") |>
distinct(file_name) |>
dplyr::mutate(file_name = str_remove(file_name, ".rda")) |>
dplyr::rename(dataset = file_name) |>
mutate(
CSV = paste0("[Download CSV](", extdata_path, dataset, ".csv)"),
XLSX = paste0("[Download XLSX](", extdata_path, dataset, ".xlsx)")
) |>
knitr::kable()
```
## Data
The package provides access to the Borehole Forensics 4 - Pumping Test conducted between 2018 and 2024
```{r}
library(boreholeforensicspumpingtest)
```
### boreholeforensicspumpingtest
The dataset `boreholeforensicspumpingtest` has
`r nrow(boreholeforensicspumpingtest)` observations and `r ncol(boreholeforensicspumpingtest)`
variables
```{r}
boreholeforensicspumpingtest |>
head(3) |>
gt::gt() |>
gt::as_raw_html()
```
For an overview of the variable names, see the following table.
```{r echo=FALSE, message=FALSE, warning=FALSE}
readr::read_csv("data-raw/dictionary.csv") |>
dplyr::filter(file_name == "boreholeforensicspumpingtest.rda") |>
dplyr::select(variable_name:description) |>
knitr::kable() |>
kableExtra::kable_styling("striped") |>
kableExtra::scroll_box(height = "200px")
```
## Example
```{r}
# Create the plot
library(boreholeforensicspumpingtest)
# Extract distinct year
year <- year(boreholeforensicspumpingtest$date_of_test)
# Create the plot
ggplot(boreholeforensicspumpingtest, aes(x = year, y = static_water_level)) +
geom_point() +
theme_minimal() +
labs(
title = "Static Water Level by Year",
x = "Year",
y = "Static Water Level (m below reference point)"
)
```
## License
Data are available as
[CC-BY](https://github.com/openwashdata/%7B%7B%7Bpackagename%7D%7D%7D/blob/main/LICENSE.md).
## Citation
Please cite this package using:
```{r}
citation("boreholeforensicspumpingtest")
```
Owner
- Name: openwashdata
- Login: openwashdata
- Kind: organization
- Repositories: 1
- Profile: https://github.com/openwashdata
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 "boreholeforensicspumpingtest" in publications use:'
type: software
license: CC-BY-4.0
title: 'boreholeforensicspumpingtest: Borehole Forensics 4 - Pumping Test Data 2018-2024'
version: 0.1.0
doi: 10.5281/zenodo.15800110
abstract: This dataset contains borehole forensic pumping test data, capturing key
parameters related to groundwater extraction, borehole performance, and water quality
assessments. It includes information on the test conditions, water levels, pumping
rates, flow measurement methods, and water quality indicators such as pH, turbidity,
and electrical conductivity. The dataset also documents permissions granted for
testing, equipment used, and observations on borehole performance.
authors:
- family-names: Mhango
given-names: Emmanuel
email: emmanuellmhango@gmail.com
orcid: https://orcid.org/0000-0003-3197-6244
- family-names: Paterson
given-names: Finlay
- family-names: Kumpukwe
given-names: Paul
repository-code: https://github.com/openwashdata/boreholeforensicspumpingtest
url: https://github.com/openwashdata/boreholeforensicspumpingtest
date-released: '2025-03-05'
contact:
- family-names: Mhango
given-names: Emmanuel
email: emmanuellmhango@gmail.com
orcid: https://orcid.org/0000-0003-3197-6244
GitHub Events
Total
- Create event: 4
- Issues event: 1
- Release event: 2
- Issue comment event: 3
- Member event: 1
- Push event: 21
- Pull request event: 3
Last Year
- Create event: 4
- Issues event: 1
- Release event: 2
- Issue comment event: 3
- Member event: 1
- Push event: 21
- Pull request event: 3
Dependencies
DESCRIPTION
cran
- R >= 3.5 depends