-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Document parsing Delwaq results. (#1845)
And plot some, including: - Utility to add tracers to existing models - Adds default Initial (basin state) and UserDemand tracers - Make some fancy plots ![fraction_example](https://github.com/user-attachments/assets/9341bcb0-3f18-4c78-9951-55c8674de1a1) ![fraction_spatial_example](https://github.com/user-attachments/assets/7f146ddd-7c8a-4440-925b-b2bc660ace1a) --------- Co-authored-by: Martijn Visser <[email protected]>
- Loading branch information
Showing
11 changed files
with
353 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,14 @@ | ||
from .generate import generate | ||
from .generate import add_tracer, generate | ||
from .parse import parse | ||
from .plot import plot | ||
from .plot import plot_fraction, plot_spatial | ||
from .util import run_delwaq | ||
|
||
__all__ = ["generate", "parse", "run_delwaq", "plot"] | ||
__all__ = [ | ||
"generate", | ||
"parse", | ||
"run_delwaq", | ||
"plot", | ||
"add_tracer", | ||
"plot_fraction", | ||
"plot_spatial", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.