stormsewer 0.9.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- stormsewer-0.9.3/.gitignore +11 -0
- stormsewer-0.9.3/Cargo.lock +4163 -0
- stormsewer-0.9.3/Cargo.toml +57 -0
- stormsewer-0.9.3/DISTRIBUTION.md +88 -0
- stormsewer-0.9.3/LICENSE +674 -0
- stormsewer-0.9.3/PKG-INFO +107 -0
- stormsewer-0.9.3/PROVENANCE.md +87 -0
- stormsewer-0.9.3/READINESS.md +164 -0
- stormsewer-0.9.3/README.md +186 -0
- stormsewer-0.9.3/RELEASE_NOTES.md +73 -0
- stormsewer-0.9.3/ROADMAP.md +116 -0
- stormsewer-0.9.3/VALIDATION.md +213 -0
- stormsewer-0.9.3/WORKED_EXAMPLE.md +97 -0
- stormsewer-0.9.3/assets/screenshot.png +0 -0
- stormsewer-0.9.3/examples/export_demo.rs +46 -0
- stormsewer-0.9.3/examples/hydraflow-sample.stm +105 -0
- stormsewer-0.9.3/examples/sample.ssn +18 -0
- stormsewer-0.9.3/examples/validation_dump.rs +59 -0
- stormsewer-0.9.3/examples/worked_example.rs +54 -0
- stormsewer-0.9.3/pyproject.toml +32 -0
- stormsewer-0.9.3/python/.gitignore +6 -0
- stormsewer-0.9.3/python/Cargo.lock +224 -0
- stormsewer-0.9.3/python/Cargo.toml +29 -0
- stormsewer-0.9.3/python/README.md +87 -0
- stormsewer-0.9.3/python/src/lib.rs +227 -0
- stormsewer-0.9.3/python/tests/test_stormsewer.py +112 -0
- stormsewer-0.9.3/src/access_hole.rs +189 -0
- stormsewer-0.9.3/src/bin/stormsewer-cli.rs +69 -0
- stormsewer-0.9.3/src/catchment.rs +112 -0
- stormsewer-0.9.3/src/design/cost.rs +158 -0
- stormsewer-0.9.3/src/design/criteria.rs +68 -0
- stormsewer-0.9.3/src/design/inlets.rs +683 -0
- stormsewer-0.9.3/src/design/mod.rs +15 -0
- stormsewer-0.9.3/src/design/review.rs +362 -0
- stormsewer-0.9.3/src/design/sizing.rs +364 -0
- stormsewer-0.9.3/src/diagnostics.rs +180 -0
- stormsewer-0.9.3/src/drawing.rs +544 -0
- stormsewer-0.9.3/src/hydraulics.rs +547 -0
- stormsewer-0.9.3/src/hydrology/idf_set.rs +101 -0
- stormsewer-0.9.3/src/hydrology/mod.rs +11 -0
- stormsewer-0.9.3/src/hydrology/noaa.rs +340 -0
- stormsewer-0.9.3/src/hydrology/tc.rs +96 -0
- stormsewer-0.9.3/src/hydrology/tr55.rs +152 -0
- stormsewer-0.9.3/src/idf.rs +53 -0
- stormsewer-0.9.3/src/io/dxf.rs +684 -0
- stormsewer-0.9.3/src/io/html.rs +39 -0
- stormsewer-0.9.3/src/io/landxml.rs +592 -0
- stormsewer-0.9.3/src/io/mod.rs +19 -0
- stormsewer-0.9.3/src/io/pdf.rs +933 -0
- stormsewer-0.9.3/src/io/project.rs +1154 -0
- stormsewer-0.9.3/src/io/report_template.rs +348 -0
- stormsewer-0.9.3/src/io/stm.rs +729 -0
- stormsewer-0.9.3/src/lib.rs +65 -0
- stormsewer-0.9.3/src/network.rs +1065 -0
- stormsewer-0.9.3/src/params.rs +96 -0
- stormsewer-0.9.3/src/parse.rs +129 -0
- stormsewer-0.9.3/src/report.rs +99 -0
- stormsewer-0.9.3/src/report_html.rs +428 -0
- stormsewer-0.9.3/src/units.rs +296 -0
- stormsewer-0.9.3/tests/bend_loss.rs +76 -0
- stormsewer-0.9.3/tests/cli_headless.rs +71 -0
- stormsewer-0.9.3/tests/fixtures/legacy-0.9-project.ssproj +43 -0
- stormsewer-0.9.3/tests/headless_suite.rs +608 -0
- stormsewer-0.9.3/tests/hgl_validation.rs +256 -0
- stormsewer-0.9.3/tests/integration_network.rs +142 -0
- stormsewer-0.9.3/tests/landxml_import.rs +62 -0
- stormsewer-0.9.3/tests/published_examples.rs +53 -0
- stormsewer-0.9.3/tests/robustness.rs +107 -0
- stormsewer-0.9.3/tests/sections.rs +99 -0
- stormsewer-0.9.3/tests/stm_import.rs +57 -0
- stormsewer-0.9.3/tests/units_si.rs +70 -0
- stormsewer-0.9.3/tests/validation.rs +136 -0
- stormsewer-0.9.3/tests/worked_example.rs +73 -0