Closed mihagrabner closed 6 years ago
The plot is correct, i suspect that only the labels are set incorrectly.
This was just a small bug with incorrectly ordered bus_geodata. It is fixed in commit f316742fc15f6162fc29c4d0aff9ad63ad963913
I went to a link you provided me with, clicked on the view, copied all the code, save it and it still doesn't work.
So if I understand it right there is a problem with the network, not the plotting? So I expect it will work on the new network?
You can install the current version from github by uninstall pandapower:
pip uninstall pandapower
And then installing the newest develop version of pandapower from github:
pip install git+https://github.com/lthurner/pandapower.git@develop
It will take a while to install because the repo is cloned into, but in the end you should have the newest version.
I uninstalled it, then when I try to install it I get this:
Error [WinError 2] The system cannot find the file specified while executing command git clone -q https://github.com/lthurner/pandapower.git C:\Users\Miha\AppData\Local\Temp\pip-7s8t_zo7-build Cannot find command 'git'
you have to install git: https://git-scm.com/
I 've installed, buses are now OK but lines are still wrong. Switch table also doesn't correspond to the plot.
I checked it again and you are correct. Maybe the author @jkrstulo can identify the problem the fastest?
The error is now fixed I assume. See https://github.com/lthurner/pandapower/commit/f14386ceccd21ae24a2e51962767aced7a8fd80e
@mihagibson would you confirm that, please?
Also note that the legend in simple_plotly is a little bit strange atm. We'll have a look into that soon.
Hi! I use Jupyter notebooks. The code below is from the website and it is supposed to plot the MV network. But when I run the code below the network that is plotted is not the same as the one that I wanted to plot (from the website). And also the network plotted with simple_plotly() does not correspond to the bus, line and trafos matrices. So the plotted network is not plotted as it is supposed to be. Please see the attached picture.
net_mv = pn.create_cigre_network_mv(with_der=False) simple_plotly(net_mv)