You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| c | An energy price (e.g. in €/MWh; c stands for charge). <br> Permissible head line: ``uuid,time,price``|
68
-
| p | Active power <br> Permissible head line: ``uuid,time,p``|
69
-
| pq | Active and reactive power <br> Permissible head line: ``uuid,time,p,q``|
70
-
| h | Heat power demand <br> Permissible head line: ``uuid,time,h``|
71
-
| ph | Active and heat power <br> Permissible head line: ``uuid,time,p,h``|
72
-
| pqh | Active, reactive and heat power <br> Permissible head line: ``uuid,time,p,q,h``|
73
-
| weather | Weather information <br> Permissible head line: ``uuid,time,coordinate,direct_irradiation,diffuse_irradiation,temperature,wind_velocity,wind_direction``|
105
+
For example, you have an IndividualTimeSeries CSV file for energy prices, then you use the key `c` from the table below
106
+
for columnScheme `its_c_2fcb3e53-b94a-4b96-bea4-c469e499f1a1.csv`.
107
+
The CSV file must then have the appropriate format for the key `c` :
74
108
109
+
```text
110
+
time,price
111
+
2020-01-01T00:00:00Z,100.0
112
+
```
75
113
76
-
As the ``uuid`` and ``time`` field are mandatory, they are not mentioned explicitly, here.
114
+
The CSV file requires a unique identification number.
115
+
The UUID (Universally Unique Identifier) can be created [here](https://www.uuidgenerator.net/).
116
+
You can also use the Method `java.util.UUID#randomUUID` to create a UUID.
117
+
This is the UUID from the example above `2fcb3e53-b94a-4b96-bea4-c469e499f1a1`.
77
118
78
-
### Results
119
+
The following keys are supported until now:
120
+
```{eval-rst}
121
+
.. list-table::
122
+
:widths: auto
123
+
:header-rows: 1
124
+
125
+
* - Key
126
+
- Information and supported head line
127
+
* - c
128
+
- | An energy price (e.g. in €/MWh; c stands for charge).
129
+
| Permissible head line: ``time,price``
130
+
* - p
131
+
- | Active power
132
+
| Permissible head line: ``time,p``
133
+
* - pq
134
+
- | Active and reactive power
135
+
| Permissible head line: ``time,p,q``
136
+
* - h
137
+
- | Heat power demand
138
+
| Permissible head line: ``time,h``
139
+
* - ph
140
+
- | Active and heat power
141
+
| Permissible head line: ``time,p,h``
142
+
* - pqh
143
+
- | Active, reactive and heat power
144
+
| Permissible head line: ``time,p,q,h``
145
+
* - weather
146
+
- | Weather information
147
+
| Permissible head line: ``time,coordinate,direct_irradiation,diffuse_irradiation,temperature,wind_velocity,wind_direction``
0 commit comments