Metadata-Version: 2.1
Name: SWMM-xsections-shape-generator
Version: 0.3.2
Summary: US-EPA SWMM Cross-Section curve shape generator
Home-page: https://github.com/MarkusPic/SWMM_xsections_shape_generator
Author: Markus Pichler
Author-email: markus.pichler@tugraz.at
License: MIT
Keywords: swmm environment civil engineering api
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Science/Research
Classifier: Natural Language :: English
Requires-Python: >= 3.5
Description-Content-Type: text/markdown
Requires-Dist: matplotlib
Requires-Dist: numpy
Requires-Dist: pandas
Requires-Dist: swmm-api
Requires-Dist: sympy

© [Institute of Urban Water Management and Landscape Water Engineering](https://www.tugraz.at), [Graz University of Technology](https://www.tugraz.at/home/) and [Markus Pichler](mailto:markus.pichler@tugraz.at)

# SWMM CrossSection shape Generator

Generate cross-section shapes for SWMM using fundamental shapes (like straight lines and cyrcles).

This application should help you to generate cross-sections for the US-EPA Storm Water Management Model (SWMM).

To understand the general usage of shape curves in context to cross-sections,
read the documentation of SWMM provided on the [official website of EPA](https://www.epa.gov/water-research/storm-water-management-model-swmm).

[![license](https://img.shields.io/github/license/markuspic/SWMM_xsections_shape_generator.svg?style=flat)](https://github.com/MarkusPic/SWMM_xsections_shape_generator/blob/master/LICENSE)
[![docs ](https://img.shields.io/badge/docs-good-brightgreen.svg?style=flat)](https://MarkusPic.github.io/SWMM_xsections_shape_generator)
[![PyPI](https://img.shields.io/pypi/v/SWMM-xsections-shape-generator.svg)](https://pypi.python.org/pypi/SWMM-xsections-shape-generator)

[![PyPI - Downloads](https://img.shields.io/pypi/dd/SWMM-xsections-shape-generator)](https://pypi.python.org/pypi/SWMM-xsections-shape-generator)
[![PyPI - Downloads](https://img.shields.io/pypi/dw/SWMM-xsections-shape-generator)](https://pypi.python.org/pypi/SWMM-xsections-shape-generator)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/SWMM-xsections-shape-generator)](https://pypi.python.org/pypi/SWMM-xsections-shape-generator)

## Install

The script is written in Python3.

### python Packages

Packages required for this program will be installed with pip during the installation process and can be seen in the 'requirements.txt' file.

### Fresh install


```
pip install SWMM-xsections-shape-generator
```

To install the package only for the local user account (without admin rights), add ```--user``` to the install command.

### Update package

To update the package, add ```--upgrade``` to the install command.

```
pip install SWMM-xsections-shape-generator --upgrade
```

**Have a look into the [Docoumentations](https://MarkusPic.github.io/SWMM_xsections_shape_generator) for more info and to see some examples and example code!**

