com.powsybl.sld.cgmes.dl.conversion.BusDiagramDataExporter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of powsybl-single-line-diagram-cgmes-dl-conversion Show documentation
Show all versions of powsybl-single-line-diagram-cgmes-dl-conversion Show documentation
A converter between CGMES-DL and IIDM
The newest version!
/**
* Copyright (c) 2019, RTE (http://www.rte-france.com)
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
package com.powsybl.sld.cgmes.dl.conversion;
import java.util.Objects;
import com.powsybl.sld.cgmes.dl.iidm.extensions.NodeDiagramData;
import com.powsybl.iidm.network.Bus;
import com.powsybl.iidm.network.TopologyKind;
import com.powsybl.triplestore.api.TripleStore;
/**
*
* @author Massimo Ferraro {@literal }
*/
public class BusDiagramDataExporter extends AbstractNodeDiagramDataExporter {
public BusDiagramDataExporter(TripleStore tripleStore, ExportContext context) {
super(tripleStore, context);
}
public void exportDiagramData(Bus bus) {
Objects.requireNonNull(bus);
NodeDiagramData busDiagramData = bus.getExtension(NodeDiagramData.class);
String diagramObjectStyleId = addDiagramObjectStyle(TopologyKind.BUS_BREAKER);
addDiagramData(bus.getId(), bus.getNameOrId(), busDiagramData, diagramObjectStyleId);
}
}