-
Notifications
You must be signed in to change notification settings - Fork 43
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
Add an IIDM import post-processor to fill geographical extensions from ODRE data #2998
Conversation
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
iidm/iidm-geodata/src/main/java/com/powsybl/iidm/geodata/OdreGeoDataAdder.java
Outdated
Show resolved
Hide resolved
iidm/iidm-geodata/src/main/java/com/powsybl/iidm/geodata/OdreGeoDataAdder.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Olivier Perrin <olivier.perrin@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think it would be nice to distinguish the generic classes from the ODRE-dependent ones.
The following classes could be shared:
- the 3 classes of the
dto
package; - in the
utils
package:DistanceCalculator
;GeoShapeDeserializer
;InputUtils
;LineGraph
.
OdreGeoDataAdder
could be split in 2: the 2 first methods could be shared, while the 2 others are really ODRE-dependent.
Could you introduce an odre
subpackage to isolate ODRE-dependent classes and let the other in their current package?
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
iidm/iidm-geodata/src/main/java/com/powsybl/iidm/geodata/odre/FileValidator.java
Outdated
Show resolved
Hide resolved
iidm/iidm-geodata/src/main/java/com/powsybl/iidm/geodata/odre/FileValidator.java
Outdated
Show resolved
Hide resolved
.../iidm-geodata/src/main/java/com/powsybl/iidm/geodata/odre/OdreGeoDataAdderPostProcessor.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
.../iidm-geodata/src/main/java/com/powsybl/iidm/geodata/odre/OdreGeoDataAdderPostProcessor.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
…ssage Signed-off-by: Olivier Perrin <olivier.perrin@rte-france.com>
iidm/iidm-geodata/src/main/java/com/powsybl/iidm/geodata/dto/GeoShape.java
Outdated
Show resolved
Hide resolved
Signed-off-by: Hugo KULESZA <hugo.kulesza@rte-france.com>
Quality Gate passedIssues Measures |
Please check if the PR fulfills these requirements
What kind of change does this PR introduce?
This PR adds a new ImportPostProcessor that can be used to add geographical data of substations and lines to IIDM network automaticly at the import.
To get the information needed, it uses CSV files that are formatted like the ones that can be obtained on OpenData Réseaux-Energies website for RTE network.
See the documentation: https://powsybl.readthedocs.io/projects/powsybl-core/en/v6.4.0-rc1/grid_features/import_post_processor.html#geographical-data-import-post-processor
Does this PR introduce a breaking change or deprecate an API?