4.8 KiB
Unofficial ENTSO-E dataset processed by GridKit
This dataset was generated based on a map extract from March 2022. This is an unofficial extract of the ENTSO-E interactive map of the European power system (including to a limited extent North Africa and the Middle East). The dataset has been processed by GridKit to form complete topological connections. This dataset is neither approved nor endorsed by ENTSO-E.
This dataset may be inaccurate in several ways, notably:
- Geographical coordinates are transfered from the ENTSO-E map, which is known to choose topological clarity over geographical accuracy. Hence coordinates will not correspond exactly to reality.
- Voltage levels are typically provided as ranges by ENTSO-E, of which the lower bound has been reported in this dataset.
- Line structure conflicts are resolved by picking the first structure in the set
- Transformers are not present in the original ENTSO-E dataset, their presence has been derived from the different voltages from connected lines.
- The connection between generators and busses is derived as the geographically nearest station at the lowest voltage level. This information is again not present in the ENTSO-E dataset.
All users are advised to exercise caution in the use of this dataset. No liability is taken for inaccuracies.
Contents of dataset
This dataset is provided as set of CSV files that describe the ENTSO-E
network. These files use the comma (,
) as field separator, single
newlines (\n
) as record separator, and single quotes ('
) as string
quote characters. The CSV files have headers.
Example code for reading the files:
# R
buses <- read.csv("buses.csv", header=TRUE, quote="'")
# python
import io, csv
class dialect(csv.excel):
quotechar = "'"
with io.open('buses.csv', 'rb') as handle:
buses = list(csv.DictReader(handle, dialect))
buses.csv:
Describes terminals, vertices, or 'nodes' of the system
bus_id
: the unique identifier for the busstation_id
: unique identifier of its substation; a station may have multiple buses, which are typically connected by transformersvoltage
: the operating voltage of this busdc
: boolean ('t' or 'f'), describes whether the bus is a HVDC terminal (t) or a regular AC terminal (f)symbol
: type of station of this bus.under_construction
: boolean ('t' if station is currently under construction, 'f' otherwise)tags
: hstore encoded dictionary of 'extra' properties for this busx
: longitude of its locationy
: latitude of its location
NOTA BENE: During the processing of the network, so called
'synthetic' stations may be inserted on locations where lines are
apparantly connected. Such synthetic stations can be recognised
because their symbol is always joint
.
lines.csv:
Buses are connected by AC-lines:
line_id
: unique identifier for the linebus0
: first of the two connected busesbus1
: second of two connected busesvoltage
: operating voltage of the line (identical to operating voltage of the bus)circuits
: number of (independent) circuits in this link, each of which typically has 3 cables.length
: length of line in kmunderground
: boolean,t
if this is an underground cable,f
for an overhead lineunder_construction
: boolean,t
for lines that are currently under constructiontags
: hstore encoded dictionary of extra properties for this linkgeometry
: extent of this line in well-known-text format (WGS84)
links.csv:
Connections between buses:
link_id
: unique identifier for the linkbus0
: first of the two connected busesbus1
: second of two connected buseslength
: length of line in kmunder_construction
: boolean,t
for lines that are currently under constructiontags
: hstore encoded dictionary of extra properties for this linkgeometry
: extent of this line in well-known-text format (WGS84)
generators.csv
Generators attached to the network.
generator_id
: unique identifier for the generatorbus_id
: the bus to which this generator is connectedtechnology
: type of generatorcapacity
: capacity of this generator in MWtags
: hstore encoded dictionary of extra attributesgeometry
: location of generator in well-known text format (WGS84)
transformers.csv
A transformer connects buses which operate at distinct voltages. NOTA BENE: Transformers are not represented in the original dataset, but instead have been added at substations to connect AC transmission lines of distinct voltage levels.
transformer_id
: unique identifierbus0
: Bus at lower voltage levelbus1
: Bus at higher voltage level
converters.csv
Back-to-back converters connecting non-synchronized buses.
converter_id
: unique identifierbus0
: First busbus1
: Second bus