Skip to main content

a package for hydrological methods in enviromental engineering

Project description

hydrocivil: a package for hydrological methods in civil and enviromental engineering

Typical tasks related to water resources and engineering require quick calculations of hydrological phenomena such as: storm hyetographs, soil infiltration, flood hydrographs, flood routing through channels or reservoirs, etc. With this purpose in mind, the package is presented as an alternative to perform calculations that are usually done in tedious spreadsheets in a fast pythonic way. The purpose is to give tools to the engineer to calculate hydrologic processes with methods and techniques he/she deems convenient, such as different varieties of synthetic unit hydrographs, synthetic storms or basin geomorphometric parameters. The package isnt intended to be a replacement of larger hydrological models (e.g. HEC-HMS), but rather a fast customizable and automatic alternative for multi-basin calculations.

The package is largely oriented to Chilean national standards, however many methods originally come from the USA NCRS National Engineering Handbook.

Dependencies

Before installing, check your environment for the following packages:

  • numpy, pandas, scipy, matplotlib
  • xarray, rasterio, rioxarray
  • shapely, geopandas
  • networkx
  • whitebox_workflows

Installation

Currently the package can only be installed via pip:

pip install --force-reinstall --no-deps hydrocivil

Example Use

from hydrocivil import RainStorm, RiverBasin
from hydrocivil.resources import load_example_data
import matplotlib.pyplot as plt

Compute basin properties

# ---------------------- Load example data (or your own) --------------------- #

# dem = rxr.open_rasterio('/path/to/dem.tif')
# curvenumber = rxr.open_rasterio('path/to/cn.tif')
# rivernetwork = gpd.read_file('path/to/rivers.shp')
# basin_polygon = gpd.read_file('path/to/basin.shp')
basin, rnetwork, dem, cn = load_example_data()

# Create RiverBasin object and compute properties
wshed = RiverBasin(fid='Example', basin=basin, dem=dem, rivers=rnetwork, lulc=cn, amc='wet')
wshed.compute_params()  # <- compute geomorphological parameters (SI units)
wshed.plot() # Check results (e.g basin polygon, identified main river, etc)
<Axes: title={'left': 'Example'}>

png

Create an hypothetical storm

# Create a 100 milimeter, 24 hours duration, SCS type I storm with pulses every half an hour
storm = RainStorm('SCS_I24', timestep=0.5, rain24=100)
storm.fit(ref_pgauge='Grunsky')
storm.compute(target_duration=24)
# Use SCS method for abstractions with the watershed average curve number
pr_eff, infr = wshed.infiltrate(pr = storm.pr, method = 'SCS')

storm.pr.to_series().plot(kind='bar', width=1, ec='k')
infr.to_series().plot(kind='bar', width=1, color='tab:purple', ec='k')
<Axes: >

png

Estimate the basin response (flood hydrograph)

# Compute the basin SCS unit hydrograph for the storm (UH related to the storm timestep)
wshed.SynthUnitHydro(method='SCS', timestep=storm.timestep) # By default this uses the 484 SCS unit hydrograph and SCS lagtime formula. 

# Compute the flood hydrograph as the convolution of the effective precipitation depth with the unit hydrograph
wshed.UnitHydro.convolve(pr_eff).plot()
<Axes: >

png

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

hydrocivil-1.2.0.tar.gz (13.6 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

hydrocivil-1.2.0-py3-none-any.whl (13.6 MB view details)

Uploaded Python 3

File details

Details for the file hydrocivil-1.2.0.tar.gz.

File metadata

  • Download URL: hydrocivil-1.2.0.tar.gz
  • Upload date:
  • Size: 13.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for hydrocivil-1.2.0.tar.gz
Algorithm Hash digest
SHA256 83b024b1a22d112deab6e7c7d2d2d6c76d225463265b4062a2541c4773b30c18
MD5 f491f21dc99869d4934f4e8ca87ab530
BLAKE2b-256 f9398f5cf48c6b7bad5b5e4a77a544c101768c59d795239bca4e020f6a1d4b69

See more details on using hashes here.

File details

Details for the file hydrocivil-1.2.0-py3-none-any.whl.

File metadata

  • Download URL: hydrocivil-1.2.0-py3-none-any.whl
  • Upload date:
  • Size: 13.6 MB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.4

File hashes

Hashes for hydrocivil-1.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 fffcf1c716b715c18f658b949a70a83da44a44f132460a41a63b7ca448067a6b
MD5 d18c28e6318b1d1a7f604d1822499330
BLAKE2b-256 44d7ba8d61cdecd8ed8f78fbd088784105276f353e8134250c3cfec339aa1fbb

See more details on using hashes here.

Supported by

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