Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Reference Lines, Reference Points + Summary Output, Timeseries Output #56

Merged
merged 10 commits into from
Jul 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
os: ["ubuntu-latest"]

runs-on: ${{ matrix.os }}
environment: ci-env

steps:
- uses: actions/checkout@v4
Expand Down
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ jobs:
release:
name: release
runs-on: ubuntu-latest
environment: release-env
steps:
- uses: actions/checkout@v4
- name: Set up Python
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ Also, methods to extract certain HDF group attributes as dictionaries:
```python
>>> from rashdf import RasPlanHdf
>>> with RasPlanHdf("path/to/rasmodel/Muncie.p04.hdf") as plan_hdf:
>>> results_unsteady_summary = plan_hdf.get_results_unsteady_summary()
>>> results_unsteady_summary
>>> results_unsteady_summary_attrs = plan_hdf.get_results_unsteady_summary_attrs()
>>> results_unsteady_summary_attrs
{'Computation Time DSS': datetime.timedelta(0),
'Computation Time Total': datetime.timedelta(seconds=23),
'Maximum WSEL Error': 0.0099277812987566,
Expand Down
4 changes: 4 additions & 0 deletions docs/source/RasGeomHdf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,10 @@ RasGeomHdf
bc_lines,
breaklines,
refinement_regions,
reference_lines,
reference_lines_names,
reference_points,
reference_points_names,
structures,
get_geom_attrs,
get_geom_structures_attrs,
Expand Down
4 changes: 4 additions & 0 deletions docs/source/RasPlanHdf.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ RasPlanHdf
mesh_max_ws_err,
mesh_max_iter,
mesh_last_iter,
reference_lines,
reference_lines_names,
reference_points,
reference_points_names,
get_plan_info_attrs,
get_plan_param_attrs,
get_meteorology_precip_attrs,
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
version = "0.4.0"
version = "0.5.0"
dependencies = ["h5py", "geopandas>=0.14,<0.15", "pyarrow", "xarray"]

[project.optional-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions src/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@
"refinement_regions",
"bc_lines",
"breaklines",
"reference_lines",
"reference_points",
"structures",
]

Expand Down
Loading