Skip to main content

A library for fitting multi-segment stage-discharge rating curves.

Project description

ratingcurve

A Python package for fitting hydrologic rating curves.

In hydrology, a rating curve is a mathematical relationship between streamflow and water surface elevation (stage). Because stage is much easier to measure than streamflow, almost all streamflow timeseries are generated from rating curves. For the most part, those rating curves are still fit manually by drawing a curve to the data, which can be time consuming and subjective. To improve that process, the U.S. Geological Survey (USGS), among others, is evaluating methods for automating that fitting. Several automated methods currently exist, but each parameterizes the rating curve slightly differently, and because of the nature of the problem, those slight differences can greatly affect performance. To help the community evaluate different parameterizations, we created the ratingcurve package, which implements our best parameterization for others to try. Furthermore, the implementation uses PyMC, a general purpose library for probabilistic modeling, which makes it easier for others to modify the model to test different parameterizations or fitting algorithms. If you can improve upon our parameterization, USGS might use your algorithm to generate streamflow timeseries at thousands of locations around the United States. The package includes simple demonstrations and test datasets to get you started.

Please report any bugs, suggest enhancements, or ask questions by creating an issue.

Installation

Install using pip

pip install ratingcurve

or conda

conda install -c conda-forge ratingcurve

Basic Usage

This tutorial demonstrates basic usage of fitting and plottig a rating curve

Open In Colab Binder

from ratingcurve.ratings import PowerLawRating
from ratingcurve import data

# load tutorial data
df = data.load('green channel')

# initialize the model
powerrating = PowerLawRating(segments=2)
                                   
# fit the model
trace = powerrating.fit(q=df['q'],
                        h=df['stage'], 
                        q_sigma=df['q_sigma'])
powerrating.plot()

example plot

Once fit, easily generate a rating table that can be imported into other applications.

powerrating.table()

For more, see the documentation.

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ratingcurve-1.0.1.tar.gz (90.4 kB view hashes)

Uploaded Source

Built Distribution

ratingcurve-1.0.1-py3-none-any.whl (46.4 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page