Skip to content

Latest commit

 

History

History
52 lines (40 loc) · 1.92 KB

README.md

File metadata and controls

52 lines (40 loc) · 1.92 KB

Convert SSA results to DSS

This project converts SSA results tables into DSS files. The resulting DSS file will inherit the basename of the table file but with a ".dss" extension code.

🧑🏽‍💻 Author

Ned Santiago 📞+63 (917) 890 5173 ✉️ nedsantiago@tutanota.com

🎯 Purpose

This github project was made for Hydrologists working with SSA. Specifically, for acquaintances needing to move data from Autodesk Storm and Sanitary Analysis (SSA) to Hydrologic Engineering Center's River Analysis System (HEC-RAS).

⚡Usage

For exporting flooding flow rate data

  1. While results are displayed in SSA, export data to a table file: In SSA, Output > Time Series Table by Variable
View Table
  1. Select the appropriate data, then press ok. Right-click on the table and export as table.
Export Table
  1. Provide the name for the table.
Provide Name
  1. Run the executable file.
  2. Select the table file.
  3. It's done! The result should be in the same folder as the executable.
Run Executable

📖 Documentation

How to create the executable

This package requires PyInstaller and a terminal. PyInstaller is used to create an executable of convert_table_to_dss.py. First, install PyInstaller

py -m pip install pyinstaller

Second, locate the PyInstaller script. Using PyInstaller requires using the package itself (and not as a module). Thus, to compile the code:

pyinstaller ./src/convert_table_to_dss.py

The executable is located at

./dist/convert_table_to_dss/convert_table_to_dss.exe