-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
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
Features/#276 improve simple example #292
base: dev
Are you sure you want to change the base?
Conversation
…me series object Time series object is resampled from hourly to quarter hourly resolution. Three possible methods to fill missing values * ffill (see: https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.ffill.html) * bfill (see: https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.bfill.html) * interpolate (see: https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.interpolate.html)
Added input parameter `freq` to the function and added wrapper function in `EDisGo` class
…prove-simple-example
…mprove-simple-example
…mprove-simple-example
…mprove-simple-example
Updated tests for new test grid. Test still fails for following assertion: `assert len(self.edisgo.electromobility.integrated_charging_parks_df) == 14`
…nego/eDisGo into features/#276-improve-simple-example # Conflicts: # examples/edisgo_simple_emob_example.ipynb
…ple.ipynb Also replaced simBEV and tracBEV example_scenario data for testing by example_scenario_2 data (`conftest.py`). Adjusted `test_import_electromobility` to match new data. Length of charging_processes_df, potential_charging_parks_gdf and integrated_charging_parks_df changed compared to test without kwagrs. Needs to be checked if that is correct.
…ty.py and test_generators_import.py Moved the test for import_electromobility from `network.test_electromobility` to `io.test_electromobility_import`
Added doc for Electromobility
Added electromobility-integration-label
Added information on electromobility integration: * allocation of charging processes to charging stations * charging strategies
Thank you @maike93he for your work! I have a few remarks:
|
…nego/eDisGo into features/#276-improve-simple-example
@birgits: The dash plot also doesn't compile correctly when the notebook is executed regularly. I get the following error message:
|
@mltja can you have a look at the error @maike93he posted? |
Hey @birgits and @maike93he , I got the same Error with an existing env yesterday, but with a new conda env everything worked fine. But I will try it again with this branch. https://community.plotly.com/t/typeerror-init-got-multiple-values-for-argument-marks/61367/3 |
Description
Fixes #276 (#274)
Type of change
Checklist:
pre-commit
hooks