We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Searched the issues page for similar reports
Read the relevant sections of the documentation
Browse the tutorials and tests for usefull code snippets and examples of use
Reproduced the issue after updating with pip install --upgrade pandapower (or git pull)
pip install --upgrade pandapower
git pull
Tried basic troubleshooting (if a bug/error) like restarting the interpreter and checking the pythonpath
import pandapower as pp net = pp.create_empty_network("test") coords = [(1,2),(4,5)] pp.create_bus(net,0.4, index = 1, geodata=(1,2)) pp.create_bus(net,0.4, index = 2, geodata=(1,7)) pp.create_bus(net,0.4, index = 3, geodata=(1,7)) pp.create_bus(net,0.4, index = 4, geodata=(1,7)) pp.to_excel(net, "test.xlsx") modify any geodata in the xlsx to `"{\"coordinates\":[[1,2], [2,3]], \"type\":\"LineString\"}"` net = pp.from_excel("test.xlsx") print(net.bus)
When loading from excel file invalid geodata is not flaged for at least bus. Most likely for all types of elements that allow geodata.
A Warning or log message similar to using deprecated coords keyword on create_bus
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug report checklis
Searched the issues page for similar reports
Read the relevant sections of the documentation
Browse the tutorials and tests for usefull code snippets and examples of use
Reproduced the issue after updating with
pip install --upgrade pandapower
(orgit pull
)Tried basic troubleshooting (if a bug/error) like restarting the interpreter and checking the pythonpath
Reproducible Example
Issue Description and Traceback
When loading from excel file invalid geodata is not flaged for at least bus. Most likely for all types of elements that allow geodata.
Expected Behavior
A Warning or log message similar to using deprecated coords keyword on create_bus
Installed Versions
Label
The text was updated successfully, but these errors were encountered: