You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Was looking for a method to parse a SWMM inp model and return a list of assets that specifies all inflow points in the system. Tried running the commands below, and noticed that a subportion of the inflow points are missed (4 out of 297). Just wanted to raise the issue here -
m = swmmio.Model('path-to-the-model.inp')
# dataframe of inflows nodes
df_inflows = m.inp.inflows
# inflow names
inflow_names = df_inflows.index
The text was updated successfully, but these errors were encountered:
Was looking for a method to parse a SWMM inp model and return a list of assets that specifies all inflow points in the system. Tried running the commands below, and noticed that a subportion of the inflow points are missed (4 out of 297). Just wanted to raise the issue here -
The text was updated successfully, but these errors were encountered: