-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
252 changed files
with
2,730 additions
and
4,273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
^NEWS\.md$ | ||
^inst/code/ | ||
^data-raw$ | ||
^README\.Rmd$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
# RMODFLOW 0.5.0 [WIP] | ||
|
||
# RMODFLOW 0.5.0 | ||
|
||
* Version presented by [Neyens and Rogiers (2021)](https://drive.google.com/file/d/1KC1geIZ4PoauFP00fkcxtEqD3jxAfP4L/). | ||
* New functionality for converting between {[RMODFLOW](https://rogiersbart.github.io/RMODFLOW/)} and {[sf](https://rspatial.github.io/sf/)}, {[stars](https://rspatial.github.io/stars/)} and {[raster](https://rspatial.github.io/raster/)} objects ([#20](https://github.com/rogiersbart/RMODFLOW/pull/20)). | ||
* New model-level functionality with `rmf_read()`, `rmf_write()`, `rmf_create()` ([#8](https://github.com/rogiersbart/RMODFLOW/pull/8)). | ||
* Reworked model execution UI, resulting in the new `rmf_execute()`, `rmf_analyze()` and `rmf_optimize()` ([#7](https://github.com/rogiersbart/RMODFLOW/issues/7)). | ||
* Updated input data processing and representation ([#8](https://github.com/rogiersbart/RMODFLOW/pull/8)). | ||
* Extended MODFLOW package support for the `rmf_read_*()`, `rmf_write_*()` and `rmf_create_*()` families of functions ([#3](https://github.com/rogiersbart/RMODFLOW/pull/3)). | ||
* Added automatic installation of MODFLOW variants ([#2](https://github.com/rogiersbart/RMODFLOW/issues/2)). | ||
* Added automatic finding of paths to MODFLOW executables. | ||
* Added function prefixes `rmf_`, and `rmfi_` for internal functions. | ||
* Added a [pkgdown site](https://rogiersbart.github.io/RMODFLOW/). | ||
* Added example models for function documentation examples and vignettes. | ||
* First developments presented by [Rogiers (2017)](https://drive.google.com/file/d/0B4xr2UZeAf_mZVJHSGhYek52bm8/). | ||
|
||
# RMODFLOW 0.4.0 | ||
|
||
* Version used by [Neyens (2016)](https://rogiersbart.github.io/science-output.html#13416953). | ||
* Version used by [Neyens (2016)](https://drive.google.com/file/d/0B4xr2UZeAf_mY2lzLU1xbDBWeHc/). | ||
|
||
# RMODFLOW 0.3.0 | ||
|
||
* Version presented by [Rogiers (2015)](https://rogiersbart.github.io/science-output.html#26516586). | ||
* Version presented by [Rogiers (2015)](https://drive.google.com/file/d/0B4xr2UZeAf_mUEJuRUhCM3JtQlE/). | ||
|
||
# RMODFLOW 0.2.0 | ||
|
||
* Version presented by [Rogiers (2015)](https://rogiersbart.github.io/science-output.html#25516537). | ||
* Version presented by [Rogiers (2015)](https://drive.google.com/file/d/1-UlcwQzaSI-VIrp7A5KpYjM9WLOmuMZT/). | ||
|
||
# RMODFLOW 0.1.0 | ||
|
||
* Different modifications to the code for use in reproducible reporting. | ||
* Different modifications to the code for use in reproducible reporting. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
--- | ||
output: github_document | ||
--- | ||
|
||
<!-- README.md is generated from README.Rmd. Please edit that file --> | ||
|
||
```{r, include = FALSE} | ||
knitr::opts_chunk$set( | ||
collapse = TRUE, | ||
comment = "#>", | ||
fig.path = "man/figures/README-", | ||
out.width = "100%" | ||
) | ||
``` | ||
|
||
# The {RMODFLOW} R package<br><small><font color="#999">Pre- and post-processing of MODFLOW files</font></small> | ||
|
||
<!-- badges: start --> | ||
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) | ||
[![CRAN status](https://www.r-pkg.org/badges/version/RMODFLOW.svg)](https://CRAN.R-project.org/package=RMODFLOW) | ||
<!-- badges: end --> | ||
|
||
The {[RMODFLOW](https://rogiersbart.github.io/RMODFLOW/)} R package provides a set | ||
of tools for groundwater flow modelling with | ||
[MODFLOW](https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs). | ||
The functionality is targeted at feature-parity with that of the | ||
[ModelMuse](https://www.usgs.gov/software/modelmuse-a-graphical-user-interface-groundwater-models) | ||
GUI and friends, albeit restricted to the | ||
[MODFLOW-2005](https://www.usgs.gov/software/modflow-2005-usgs-three-dimensional-finite-difference-ground-water-model) | ||
family of codes. Related developments are the | ||
{[RMT3DMS](https://rogiersbart.github.io/RMT3DMS/)} package for solute transport | ||
modelling, and {[RMODPATH](https://github.com/cneyens/RMODPATH)} for particle | ||
tracking. | ||
|
||
# Install | ||
|
||
You can install the latest version of | ||
{[RMODFLOW](https://rogiersbart.github.io/RMODFLOW/)} with any of the following: | ||
|
||
```{r eval = FALSE} | ||
renv::install("rogiersbart/RMODFLOW") | ||
pak::pkg_install("rogiersbart/RMODFLOW") | ||
remotes::install_github("rogiersbart/RMODFLOW") | ||
``` | ||
|
||
If you don't have {[renv](https://rstudio.github.io/renv/)}, | ||
{[pak](https://pak.r-lib.org/)}, or {[remotes](https://remotes.r-lib.org/)} | ||
installed, try this instead: | ||
|
||
```{r eval = FALSE} | ||
install.packages("remotes") | ||
remotes::install_github("rogiersbart/RMODFLOW") | ||
``` | ||
|
||
# Use | ||
|
||
To get started, have a look at the [introduction to | ||
{RMODFLOW}](https://rogiersbart.github.io/RMODFLOW/docs/articles/RMODFLOW.html). | ||
A series of articles is available if you want to dive deeper into the {RMODFLOW} | ||
functionality: | ||
|
||
- [Boundary conditions](https://rogiersbart.github.io/RMODFLOW/articles/boundary_conditions.html) | ||
- [Structure of input data](https://rogiersbart.github.io/RMODFLOW/articles/input_data_structure.html) | ||
- [Handling MODFLOW output](https://rogiersbart.github.io/RMODFLOW/articles/output.html) | ||
- [MODFLOW parameters](https://rogiersbart.github.io/RMODFLOW/articles/parameters.html) | ||
- [Plotting in RMODFLOW](https://rogiersbart.github.io/RMODFLOW/articles/plotting.html) | ||
- [Spatial functions](https://rogiersbart.github.io/RMODFLOW/articles/spatial.html) | ||
- [Top-level functions](https://rogiersbart.github.io/RMODFLOW/articles/top_level.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,67 @@ | ||
RMODFLOW<br><small><font color="#333333">Pre- and post-processing of MODFLOW files in R</font></small> | ||
====================================================================================================== | ||
|
||
[![Travis-CI Build Status](https://travis-ci.org/rogiersbart/RMODFLOW.svg?branch=master)](https://travis-ci.org/rogiersbart/RMODFLOW) | ||
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/RMODFLOW)](https://cran.r-project.org/package=RMODFLOW) | ||
[![Coverage Status](https://img.shields.io/codecov/c/github/rogiersbart/RMODFLOW/master.svg)](https://codecov.io/github/rogiersbart/RMODFLOW?branch=master) | ||
<!-- README.md is generated from README.Rmd. Please edit that file --> | ||
|
||
The [RMODFLOW](https://rogiersbart.github.io/RMODFLOW/) package provides a set of tools for groundwater flow modelling with [MODFLOW](https://water.usgs.gov/ogw/modflow/). A related package is the [RMT3DMS](https://rogiersbart.github.io/RMT3DMS/) package for solute transport modelling. The latest development version can be installed as follows: `devtools::install_github("rogiersbart/RMODFLOW")`. For more information, visit the [RMODFLOW website](https://rogiersbart.github.io/RMODFLOW). | ||
# The {RMODFLOW} R package<br><small><font color="#999">Pre- and post-processing of MODFLOW files</font></small> | ||
|
||
<!-- badges: start --> | ||
|
||
[![Lifecycle: | ||
experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://www.tidyverse.org/lifecycle/#experimental) | ||
[![CRAN | ||
status](https://www.r-pkg.org/badges/version/RMODFLOW.svg)](https://CRAN.R-project.org/package=RMODFLOW) | ||
<!-- badges: end --> | ||
|
||
The {[RMODFLOW](https://rogiersbart.github.io/RMODFLOW/)} R package | ||
provides a set of tools for groundwater flow modelling with | ||
[MODFLOW](https://www.usgs.gov/mission-areas/water-resources/science/modflow-and-related-programs). | ||
The functionality is targeted at feature-parity with that of the | ||
[ModelMuse](https://www.usgs.gov/software/modelmuse-a-graphical-user-interface-groundwater-models) | ||
GUI and friends, albeit restricted to the | ||
[MODFLOW-2005](https://www.usgs.gov/software/modflow-2005-usgs-three-dimensional-finite-difference-ground-water-model) | ||
family of codes. Related developments are the | ||
{[RMT3DMS](https://rogiersbart.github.io/RMT3DMS/)} package for solute | ||
transport modelling, and | ||
{[RMODPATH](https://github.com/cneyens/RMODPATH)} for particle tracking. | ||
|
||
# Install | ||
|
||
You can install the latest version of | ||
{[RMODFLOW](https://rogiersbart.github.io/RMODFLOW/)} with any of the | ||
following: | ||
|
||
``` r | ||
renv::install("rogiersbart/RMODFLOW") | ||
pak::pkg_install("rogiersbart/RMODFLOW") | ||
remotes::install_github("rogiersbart/RMODFLOW") | ||
``` | ||
|
||
If you don’t have {[renv](https://rstudio.github.io/renv/)}, | ||
{[pak](https://pak.r-lib.org/)}, or | ||
{[remotes](https://remotes.r-lib.org/)} installed, try this instead: | ||
|
||
``` r | ||
install.packages("remotes") | ||
remotes::install_github("rogiersbart/RMODFLOW") | ||
``` | ||
|
||
# Use | ||
|
||
To get started, have a look at the [introduction to | ||
{RMODFLOW}](https://rogiersbart.github.io/RMODFLOW/docs/articles/RMODFLOW.html). | ||
A series of articles is available if you want to dive deeper into the | ||
{RMODFLOW} functionality: | ||
|
||
- [Boundary | ||
conditions](https://rogiersbart.github.io/RMODFLOW/articles/boundary_conditions.html) | ||
- [Structure of input | ||
data](https://rogiersbart.github.io/RMODFLOW/articles/input_data_structure.html) | ||
- [Handling MODFLOW | ||
output](https://rogiersbart.github.io/RMODFLOW/articles/output.html) | ||
- [MODFLOW | ||
parameters](https://rogiersbart.github.io/RMODFLOW/articles/parameters.html) | ||
- [Plotting in | ||
RMODFLOW](https://rogiersbart.github.io/RMODFLOW/articles/plotting.html) | ||
- [Spatial | ||
functions](https://rogiersbart.github.io/RMODFLOW/articles/spatial.html) | ||
- [Top-level | ||
functions](https://rogiersbart.github.io/RMODFLOW/articles/top_level.html) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.