plotInpLinks {epanetReader} | R Documentation |
Add lines for pipes, pumps and valves from an epanet.inp object to an existing plot
plotInpLinks(x, lwd = 3, col = "black")
x |
epanet.inp object |
lwd |
width of lines |
col |
color of lines |
Helper function for building up a plot of the network by adding links to an existing plot.
## make a new blank plot plot( range(Net1$Coordinates$X), range(Net1$Coordinates$Y), type = 'n') ## add the links plotInpLinks(Net1)