https://github.com/pygsflow/pygsflow
Python package to Create, Read, Write, Edit, and Visualize GSFLOW models
https://github.com/pygsflow/pygsflow
groundwater groundwater-modelling gsflow integrated-modelling modflow prms pygsflow python surface-water usgs
Last synced: 5 months ago
JSON representation
Python package to Create, Read, Write, Edit, and Visualize GSFLOW models
- Host: GitHub
- URL: https://github.com/pygsflow/pygsflow
- Owner: pygsflow
- License: unlicense
- Created: 2019-02-14T18:00:24.000Z (about 6 years ago)
- Default Branch: develop
- Last Pushed: 2024-10-07T23:43:16.000Z (7 months ago)
- Last Synced: 2024-10-29T21:01:10.594Z (6 months ago)
- Topics: groundwater, groundwater-modelling, gsflow, integrated-modelling, modflow, prms, pygsflow, python, surface-water, usgs
- Language: Python
- Homepage: https://pygsflow.github.io/pygsflowdocs/
- Size: 63.2 MB
- Stars: 32
- Watchers: 2
- Forks: 18
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: HISTORY.rst
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
- open-sustainable-technology - pyGSFLOW - A set of Python modules to run the GSFLOW integrated hydrologic model program. (Natural Resources / Water Supply and Quality)
README
![]()
[](https://github.com/pygsflow/pygsflow/actions/workflows/ci.yml)
[](https://codecov.io/gh/pygsflow/pygsflow)
[](https://pypi.org/project/pygsflow/)
[](https://doi.org/10.21105/joss.03852)
[](https://doi.org/10.3389/feart.2022.907533)# pygsflow
pyGSFLOW is a python package to Create, Read, Write, Edit, and Visualize GSFLOW modelsGSFLOW model development has previously been a piecemeal approach that required multiple software tools to build, edit, postprocess, and visualize models. pyGSFLOW changes this by being a tightly coupled scripting library that provides support for GSFLOW, PRMS, and MODFLOW. Custom modules for both GSFLOW and PRMS are included in this library. MODFLOW support is provided by wrapping the [Flopy](https://github.com/modflowpy/flopy) package (Bakker and others, 2021) with GSFLOW specific code. Together, these three pieces create a single integrated scripting package that helps to standardize and streamline model development and calibration.
This is the development repository for pyGSFLOW. Official USGS releases can be found [here](https://code.usgs.gov/water/pyGSFLOW)
## API Documentation
pyGSFLOW API documentation can be found @https://pygsflow.github.io/pygsflowdocs/
## Examples
Basic examples can be found in the Tutorial Examples tab of the pyGSFLOW API
documentation at https://pygsflow.github.io/pygsflowdocs/tutorials.html#Interactive jupyter notebook example problems can be found in the examples directory.
https://github.com/pygsflow/pygsflow/tree/master/examples## Requirements
**Version 1.1.0** (Master branch and from pypi)
1) Windows or Linux operating system (GSFLOW is not currently compiled for MacOS)
2) Python 3.6 or greater
3) FloPy 3.3.4 or greater, *note* for Python 3.6 use (`pip install flopy==3.3.4`)
4) NetCdf4 (optional, required for netcdf exporting and autotesting) (`pip install netcdf4`)**Version 1.1.1** (Develop branch)
1) Windows or Linux operating system (GSFLOW is not currently compiled for MacOS)
2) Python 3.6 or greater
3) Flopy 3.3.6 or greater (`pip install flopy`) *note* for Python 3.6 use (`pip install flopy==3.3.4`)
4) NetCdf4 (optional, required for netcdf exporting and autotesting) (`pip install netcdf4`)
5) Rasterio and rasterstats (optional, required for raster resampling and model building methods)(`pip install rasterio rasterstats`)
## Installation
**Version 1.1.0** (Master branch and from pypi)
The pygsflow repository can be installed using pip.
To install the release version, open a terminal, command prompt, or anaconda prompt and type:`pip install pygsflow`
**Version 1.1.1** (Develop version with most recent updates)
To install the development version, open a terminal, command prompt or anaconda promt and type:
`pip install https://github.com/pygsflow/pygsflow/zipball/develop`
Alternatively the user can download a copy of the repository, open a command prompt or anaconda promt terminal, cd into the trunk directory and type:
`pip install . `
**Additional Linux installation instructions**
To use the default version of GSFLOW for Linux that is distributed with pyGSFLOW the user
needs to set the permissions of the GSFLOW binary program to execute. From
a terminal window cd into the trunk/bin directory of the pyGSFLOW repository and
write:
```
chmod u+x gsflow
chmod u+x mfnwt
chmod u+x CRT_1.3.1
```In some cases symbolic links to gfortran-10 must be set up this can be done with
```
sudo ln -fs /usr/bin/gfortran-10 /usr/bin/gfortran
sudo ln -fs /usr/bin/gcc-10 /usr/bin/gcc
sudo ln -fs /usr/bin/g++-10 /usr/bin/g++
```## Authors
Ayman Alzraiee, Joshua Larsen, Donald Martin, Rich Niswonger## How to Cite
**pyGSFLOW builder methods citation**
[Larsen, J. D., Alzraiee, A. H., Martin, D. Niswonger, R. G., 2022, Rapid model development for
GSFLOW with Python and pyGSFLOW. Frontiers in Earth Science, 10.](https://doi.org/10.3389/feart.2022.907533)**General pyGSFLOW citation**
[Larsen, J. D., Alzraiee, A., Niswonger, R. G., 2022, Integrated hydrologic model development
and postprocessing for GSFLOW using pyGSFLOW. Journal of Open Source Software, 7(72), 3852.
](https://doi.org/10.21105/joss.03852)**Code citation**
[Larsen, J. D., Alzraiee, A., Niswonger, R., 2021, pyGSFLOW v1.0.0: U.S. Geological
Survey Software Release, 2 July 2021, https://doi.org/10.5066/P9NPZ5AD](https://doi.org/10.5066/P9NPZ5AD)## IPDS number
IP-128405## Contributing
Please see [Contributing.md](https://github.com/pygsflow/pygsflow/blob/develop/CONTRIBUTING.md)## Running Autotests Locally
pyGSFLOW uses github actions CI to automatically test code for each commit and pull request. These tests can also be run locally.
To run tests locally, navigate to pygsflow's root directory, open a command prompt, anaconda prompt, or terminal window:with nosetests:
```
cd autotest
nosetests -v
```with pytest:
```
cd autotest
pytest
```*How to find pygsflow's root directory:*
Open a python terminal and type:
```python
import gsflow
print(gsflow.__file__)
```## Project History
This project is a refinement and continuation of the original pygsflow repository at:https://github.com/aymanalz/pygsflow
## Disclaimer
This software is preliminary or provisional and is subject to revision. It is being provided to meet
the need for timely best science. The software has not received final approval by the U.S. Geological
Survey (USGS). No warranty, expressed or implied, is made by the USGS or the U.S. Government as to the
functionality of the software and related material nor shall the fact of release constitute any such
warranty. The software is provided on the condition that neither the USGS nor the U.S. Government shall
be held liable for any damages resulting from the authorized or unauthorized use of the software