-
Notifications
You must be signed in to change notification settings - Fork 43
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
add docs to Profile Plotter #176
Comments
I can create an example to include in the docs, I just need to figure out how to deal with an error in |
@wraseman are you using one of the examples on the PySWMM website? |
@bemcdonnell, I used the import matplotlib.pyplot as plt
import copy
from swmmio import find_network_trace, build_profile_plot
from swmmio.examples import jersey
# Load in simple model
model = copy.deepcopy(jersey)
fig, ax = plt.subplots(figsize=(8, 4))
path_selection = find_network_trace(model, 'J1', 'J3')
profile_config = build_profile_plot(ax, model, path_selection)
add_node_labels_plot(ax, model, profile_config)
leg = ax.legend()
ax.grid(False) The caveat is that I am using a modified version of |
@wraseman any chance you be keen to submit a PR to fix this problem? |
This can be completed after #174 and #155 (planning)
The text was updated successfully, but these errors were encountered: