-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathentsoe.rb
422 lines (384 loc) · 12.6 KB
/
entsoe.rb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
# coding: utf-8
require 'faraday/gzip'
require 'ox'
module Entsoe
DEFAULT_START = DateTime.parse('2014-01-01')
class Base
TZ = TZInfo::Timezone.get('UTC')
def self.source_id
"entsoe"
end
def initialize from: DateTime.now.beginning_of_day, to: DateTime.now.beginning_of_hour, psr_type: nil
from = from.strftime('%Y-%m-%d') unless from.is_a? String
to = to.strftime('%Y-%m-%d') unless to.is_a? String
@from = from
@to = to
@options = {
#psrType: 'B16',
#in_Domain: '10YCZ-CEPS-----N',
#periodStart:'202109200000',
#periodEnd: '202109220000',
securityToken: ENV['ENTSOE_TOKEN']
}
@options[:psrType] = psr_type if psr_type.present?
#@options[:periodStart] = options[:start] || '202109202300'
#@options[:periodEnd] = options[:end] || '202109222300'
@options[:TimeInterval] = "#{from}/#{to}"
end
def fetch
res = logger.benchmark_info("https://web-api.tp.entsoe.eu/api #{@from} #{@to}") do
faraday = Faraday.new(request: {timeout: 600}) do |f|
#f.request :gzip
#f.response :logger, logger
end
faraday.get('https://web-api.tp.entsoe.eu/api', @options)
end
#puts res.body
@doc = logger.benchmark_info("xml parse") do
Ox.parse(res.body)
end
code, reason = @doc.locate("*/Reason/*/^String")
if reason.present?
raise EmptyError if reason =~ /No matching data found/
raise reason
end
end
def points_selector
@doc.locate('*/TimeSeries').each do |ts|
@country = ts.locate('outBiddingZone_Domain.mRID').first.text
yield ts
end
end
def points
r=[]
points_selector do |ts|
#unless ts.locate('inBiddingZone_Domain.mRID').first
# require 'pry' ; binding.pry
#end
#2020-12-31T23:00Z
start = Time.strptime(ts.locate('Period/timeInterval/start/^String').first, '%Y-%m-%dT%H:%M%z')
resolution = ts.locate('Period/resolution/^String').first.match(/^PT(\d+)M$/) { |m| m[1].to_i }
gapfill = ts.locate('curveType/^String').first == 'A03'
psr = ts.locate('MktPSRType/psrType/^String').first
@production_type = PARAMETER_DESC[psr.to_sym].downcase.tr_s(' ', '_') if psr
data = ts.locate('Period/Point').each do |p|
@position = (p.locate('position/^String').first.to_i - 1)
@time = start + (@position * resolution).minutes
if gapfill && @last_position && @last_position + 1 != @position
((@last_position+1)...@position).each do |gap_position|
time = start + (gap_position * resolution).minutes
gap_point = r.last.dup
gap_point[:time] = time
r << gap_point
end
end
@last_position = @position
@last_time = @time
r << point(p)
end
end
#require 'pry' ; binding.pry
r
end
def point(p)
{
country: @country,
production_type: @production_type,
time: @time,
value: p.locate('quantity/^String').first.to_i*1000
}
end
def last_time
unless @last_time
require 'pry' ; binding.pry
end
@last_time
end
end
#4.4.5. Current Generation Forecasts for Wind and Solar [14.1.D]
#GET /api?documentType=A69&processType=A18&psrType=B16&in_Domain=10YCZ-CEPS-----N&periodStart=201512312300&periodEnd=201612312300
class WindSolar < Base
def initialize(country: nil, **kwargs)
super(**kwargs)
@country = country
@options[:documentType] = 'A69'
@options[:processType] = PROCESS_TYPES[:current]
@options[:in_Domain] = COUNTRIES[country.to_sym]
fetch
end
def points
data = super
data.each { |p| p.slice!(:country) }
data
end
end
#4.4.8. Aggregated Generation per Type [16.1.B&C]
#GET /api?documentType=A75&processType=A16&psrType=B02&in_Domain=10YCZ-CEPS-----N&periodStart=201512312300&periodEnd=201612312300
class Generation < Base
include SemanticLogger::Loggable
include Out::Generation
def initialize(country: nil, **kwargs)
super(**kwargs)
@country = country
@process_type = :realised
@options[:documentType] = 'A75'
@options[:processType] = PROCESS_TYPES[:realised]
@options[:in_Domain] = COUNTRIES[country.to_sym]
fetch
end
def points_selector
@doc.locate('*/TimeSeries').each do |ts|
next if ts.locate('outBiddingZone_Domain.mRID').first
@country = ts.locate('inBiddingZone_Domain.mRID').first.text
yield ts
end
end
def points_generation
Validate.validate_generation(points, self.class.source_id)
end
end
class Unit < Base
include SemanticLogger::Loggable
include Out::Unit
def initialize(area, **kwargs)
super(**kwargs)
@area = area
@options[:documentType] = 'A73'
@options[:processType] = PROCESS_TYPES[:realised]
@options[:in_Domain] = area.internal_id
fetch
end
def points
r=[]
points_selector do |ts|
next if ts.locate('outBiddingZone_Domain.mRID').first
start = Time.strptime(ts.locate('Period/timeInterval/start/^String').first, '%Y-%m-%dT%H:%M%z')
resolution = ts.locate('Period/resolution/^String').first.match(/^PT(\d+)M$/) { |m| m[1].to_i }
psr = ts.locate('MktPSRType/psrType/^String').first
@production_type = PARAMETER_DESC[psr.to_sym].downcase.tr_s(' ', '_') if psr
production_type = ProductionType.find_by!(name: @production_type)
unit_name = ts.locate('MktPSRType/PowerSystemResources/name/^String').first
unit_eic = ts.locate('MktPSRType/PowerSystemResources/mRID/^String').first
@unit = ::Unit.find_or_create_by!(production_type:, internal_id: unit_eic, name: unit_name)
@unit.area ||= @area
@unit.save
data = ts.locate('Period/Point').each do |p|
@time = start + ((p.locate('position/^String').first.to_i - 1) * resolution).minutes
@last_time = @time
r << point(p)
end
end
#require 'pry' ; binding.pry
r
end
def point(p)
{
time: @time,
unit_id: @unit.id,
value: p.locate('quantity/^String').first.to_i*1000
}
end
end
#4.1.1. Actual Total Load [6.1.A]
#GET /api?documentType=A65&processType=A16&outBiddingZone_Domain=10YCZ-CEPS-----N&periodStart=201512312300&periodEnd=201612312300
class Load < Base
include SemanticLogger::Loggable
include Out::Load
def initialize(country:, **kwargs)
super(**kwargs)
@country = country
@process_type = :realised
@options[:documentType] = 'A65'
@options[:processType] = PROCESS_TYPES[:realised]
@options[:outBiddingZone_Domain] = COUNTRIES[country.to_sym]
fetch
end
def points_load
data = points
data.each { |p| p.except!(:process_type, :production_type) }
Validate.validate_load(data, self.class.source_id)
end
def point(p)
{
country: @country,
time: @time,
value: p.locate('quantity/^String').first.to_i*1000
}
end
end
#4.2.10. Day Ahead Prices [12.1.D]
#12.1.D Energy Prices
#GET /api?documentType=A44&in_Domain=10YCZ-CEPS-----N&out_Domain=10YCZ-CEPS-----N&periodStart=201512312300&periodEnd=201612312300
class Price < Base
include SemanticLogger::Loggable
include Out::Price
def initialize(country:, **kwargs)
super(**kwargs)
@country = country
@options[:documentType] = 'A44'
#@options['contract_MarketAgreement.type'] = 'A01'
internal_id = Area.where(source: self.class.source_id, code: country).pluck(:internal_id).first
@options[:in_domain] = @options[:out_Domain] = internal_id
fetch
end
def points_price
points
end
def points_selector
@doc.locate('*/TimeSeries').each do |ts|
next unless ts.locate('Period/resolution/^String') == ['PT60M']
yield ts
end
end
def point(p)
{
country: @country,
time: @time,
value: p.locate('price.amount/^String').first.to_f*100
}
end
end
#4.2.15. Physical Flows [12.1.G]
#GET /api?documentType=A11&in_Domain=10YCZ-CEPS-----N&out_Domain=10YSK-SEPS-----K&periodStart=201512312300&periodEnd=201612312300
class Transmission < Base
include SemanticLogger::Loggable
include Out::Transmission
def initialize(from_area:, to_area:, **kwargs)
super(**kwargs)
@from_area, @to_area = from_area, to_area
@options[:documentType] = 'A11'
@options[:out_Domain] = COUNTRIES[from_area.to_sym]
@options[:in_Domain] = COUNTRIES[to_area.to_sym]
#puts @options.inspect
fetch
end
def points_selector
@doc.locate('*/TimeSeries').each do |ts|
@from_area = ts.locate('out_Domain.mRID').first.text
@to_area = ts.locate('in_Domain.mRID').first.text
yield ts
end
end
# def points
# r=[]
# points_selector do |ts|
# start = DateTime.strptime(ts.locate('Period/timeInterval/start/^String').first, '%Y-%m-%dT%H:%M%z')
# resolution = ts.locate('Period/resolution/^String').first.match(/^PT(\d+)M$/) { |m| m[1].to_i }
# data = ts.locate('Period/Point') do |p|
# @time = start + ((p.locate('position/^String').first.to_i - 1) * resolution).minutes
# @last_time = @time
# r << point(p)
# end
# end
# r
# end
def point(p)
{
time: @time,
from_area: @from_area,
to_area: @to_area,
value: p.locate('quantity/^String').first.to_i*1000
}
end
end
PROCESS_TYPES = {
current: 'A18',
intraday: 'A40',
dayahead: 'A01',
realised: 'A16',
}
COUNTRIES = {
'AL': '10YAL-KESH-----5',
'AT': '10YAT-APG------L',
#'AX': '10Y1001A1001A46L', # for price only; Åland has SE-SE3 area price
'BA': '10YBA-JPCC-----D',
'BE': '10YBE----------2',
'BG': '10YCA-BULGARIA-R',
#'BY': '10Y1001A1001A51S',
'CH': '10YCH-SWISSGRIDZ',
'CZ': '10YCZ-CEPS-----N',
'CY': '10YCY-1001A0003J',
'DE': '10Y1001A1001A83F',
'DE-LU': '10Y1001A1001A82H', # DE-Luxembourg
'DK': '10Y1001A1001A65H',
'DK1': '10YDK-1--------W',
'DK2': '10YDK-2--------M',
'EE': '10Y1001A1001A39I',
'ES': '10YES-REE------0',
'FI': '10YFI-1--------U',
'FR': '10YFR-RTE------C',
#'GB': '10Y1001A1001A92E',
'GB': '10YGB----------A', # exited dataset in 2021
#'GB-NIR': '10Y1001A1001A016',
'GE': '10Y1001A1001B012',
'GR': '10YGR-HTSO-----Y',
'HR': '10YHR-HEP------M',
'HU': '10YHU-MAVIR----U',
'IE': '10YIE-1001A00010',
'IE(SEM)': '10Y1001A1001A59C',
'IT': '10YIT-GRTN-----B',
'IT-BR': '10Y1001A1001A699',
'IT-CA': '10Y1001C--00096J',
'IT-CNO': '10Y1001A1001A70O',
'IT-CSO': '10Y1001A1001A71M',
'IT-FO': '10Y1001A1001A72K',
'IT-NO': '10Y1001A1001A73I',
'IT-PR': '10Y1001A1001A76C',
'IT-SAR': '10Y1001A1001A74G',
'IT-SIC': '10Y1001A1001A75E',
'IT-SO': '10Y1001A1001A788',
'LT': '10YLT-1001A0008Q',
'LU': '10YLU-CEGEDEL-NQ',
'LV': '10YLV-1001A00074',
'MD': '10Y1001A1001A990',
'ME': '10YCS-CG-TSO---S',
'MK': '10YMK-MEPSO----8', # has bad load data
#'MT': '10Y1001A1001A93C',
'NL': '10YNL----------L',
'NO': '10YNO-0--------C',
'NO1': '10YNO-1--------2',
'NO2': '10YNO-2--------T',
'NO3': '10YNO-3--------J',
'NO4': '10YNO-4--------9',
'NO5': '10Y1001A1001A48H',
'PL': '10YPL-AREA-----S',
'PT': '10YPT-REN------W',
'RO': '10YRO-TEL------P',
'RS': '10YCS-SERBIATSOV',
#'RU': '10Y1001A1001A49F',
#'RU-KGD': '10Y1001A1001A50U',
'SE': '10YSE-1--------K',
'SE1': '10Y1001A1001A44P',
'SE2': '10Y1001A1001A45N',
'SE3': '10Y1001A1001A46L',
'SE4': '10Y1001A1001A47J',
'SI': '10YSI-ELES-----O',
'SK': '10YSK-SEPS-----K',
#'TR': '10YTR-TEIAS----W',
'UA': '10YUA-WEPS-----0',
'XK': '10Y1001C--00100H'
}
PARAMETER_DESC = {
'B01': 'Biomass',
'B02': 'Fossil Brown coal/Lignite',
'B03': 'Fossil Coal-derived gas',
'B04': 'Fossil Gas',
'B05': 'Fossil Hard coal',
'B06': 'Fossil Oil',
'B07': 'Fossil Oil shale',
'B08': 'Fossil Peat',
'B09': 'Geothermal',
'B10': 'Hydro Pumped Storage',
'B11': 'Hydro Run-of-river and poundage',
'B12': 'Hydro Water Reservoir',
'B13': 'Marine',
'B14': 'Nuclear',
'B15': 'Other renewable',
'B16': 'Solar',
'B17': 'Waste',
'B18': 'Wind Offshore',
'B19': 'Wind Onshore',
'B20': 'Other',
}
DOMAIN_MAPPINGS = COUNTRIES
end