All platforms: |
Name | Downloads | Version | Platforms |
---|---|---|---|
serapis is an open-source Python Framework for building raster-based conceptual distributed hydrological models using HBV96 lumped model & Muskingum routing method at a catchment scale (Farrag & Corzo, 2021), serapis gives a high degree of flexibility to all components of the model (spatial discretization - cell size, temporal resolution, parameterization approaches and calibration (Farrag et al., 2021)).
serapis
Installing serapis
from the conda-forge
channel can be achieved by:
conda install -c conda-forge serapis
It is possible to list all of the versions of serapis
available on your platform with:
conda search serapis --channel conda-forge
to install the last development to time you can install the library from github
pip install git+https://github.com/MAfarrag/serapis
to install the last release you can easly use pip
pip install serapis==0.1.0
>>> import serapis
- module names: lower case word, preferably one word if not, separate words with underscores (module.py, my_module.py).
- class names: PascalCase (Model, MyClass).
- class method/function: CamelCase(getFile, readConfig).should have a verb one them, because they perform some action