draw_model, create_map error #185
Unanswered
jerry11011
asked this question in
Q&A
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
i'm trying to visualize the input file, and due to a same error i cannot implement both 'draw_model()' and 'create_map()' method.
Following screenshot is the error i get.
I assume it to be a flaws of my input file, If so would there be any way i can fix it?
import swmmio
from swmmio.graphics import swmm_graphics
import pandas as pd
Load the SWMM input file
model = swmmio.Model('./test_0708.inp',crs='epsg:3728')
Draw model
figs = swmm_graphics.draw_model(model)
for fig in figs:
fig.show()
Create the map
swmm_graphics.create_map(model,filename='MAP.html')
Beta Was this translation helpful? Give feedback.
All reactions