-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaemo_wem.rb
498 lines (424 loc) · 13.6 KB
/
aemo_wem.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
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
require 'chronic'
require 'fast_jsonparser'
module AemoWem
class Base < ::Aemo::Base
TZ = TZInfo::Timezone.get('Etc/GMT-8')
URL_BASE = "https://data.wa.aemo.com.au"
INDEX_TIME_FORMAT = "%m/%d/%Y %I:%M %p"
def self.cli(args)
if args.length == 2
from = Chronic.parse(args.shift).to_date
to = Chronic.parse(args.shift).to_date
cli_range(from...to).each do |date|
self.new(date).process
end
elsif args.present?
args.each do |path|
self.new(path).process
end
else
self.each &:process
end
end
def self.cli_range(range)
range.select { |d| d.month==1 && d.day==1 }
end
def self.select_file? url
url =~ /.csv$/i
end
def initialize(file_or_date)
if file_or_date.is_a? Date
super(file_or_date.strftime(self.class::URL_FORMAT))
elsif file_or_date =~ /^https?:/
super(file_or_date)
else
super(File.open(file_or_date, 'r'), file_or_date)
end
end
def parse_time_from_filename
end
def parse_time(s)
return @last_t if @last_s == s
@last_s = s
@last_t = TZ.local_to_utc(Time.strptime(s, "%Y-%m-%d %H:%M:%S"))
end
end
class ScadaReform < Base
include SemanticLogger::Loggable
include Out::Unit
URL = 'http://data.wa.aemo.com.au/public/market-data/wemde/facilityScada/previous/'
FILE_FORMAT = 'FacilityScada_%Y%m%d.zip'
TIME_FORMAT = '%Y-%m-%dT%H:%M:%S%:z'
def initialize(file_or_date)
@from = parse_time_from_filename(file_or_date)
@to = @from + 1.day
@units = {}
@default_production_type_id = ProductionType.where(name: 'other').pluck(:id).first
@area_id = Area.where(code: 'WEM', type: 'region', source: self.class.source_id).pluck(:id).first
super
end
def self.select_file? url
url =~ /.zip$/i
end
def parse_time_from_filename(file)
time = Time.strptime(File.basename(file), FILE_FORMAT)
TZ.local_to_utc(time)
end
def parse_unit(unit_internal_id)
@units[unit_internal_id] ||= ::Unit.
create_with(area_id: @area_id,
production_type_id: @default_production_type_id).
find_or_create_by!(internal_id: unit_internal_id)
end
def process_file(body)
json = FastJsonparser.parse(body, symbolize_keys: false)
r = json['data']['facilityScadaDispatchIntervals'].map do |row|
time = Time.strptime(row['dispatchInterval'], TIME_FORMAT)
time = TZ.local_to_utc(time)
unit = parse_unit(row['code'])
# seems to be MWh per 5 minutes
value = row['quantity']*1000*12
{time:, unit_id: unit.id, value:}
end
r
end
def done!
GenerationUnit.aggregate_to_generation(@from, @to, "a.source='aemo' AND a.id=#{@area_id}")
super
end
end
class Scada < Base
include SemanticLogger::Loggable
include Out::Unit
URL = "https://data.wa.aemo.com.au/public/public-data/datafiles/facility-scada/"
# MANIFEST: https://data.wa.aemo.com.au/public/public-data/manifests/facility-scada.yaml
FILE_FORMAT = "facility-scada-%Y-%m.csv"
URL_FORMAT = "https://data.wa.aemo.com.au/public/public-data/datafiles/facility-scada/#{FILE_FORMAT}"
def self.cli_range(range)
range.select { |d| d.day==1 }
end
def initialize(file_or_date)
if file_or_date.is_a? Date
@from = file_or_date.to_time
@from = TZ.local_to_utc(@from)
else
@from = parse_time_from_filename(file_or_date)
end
@to = @from + 1.month if @from
@units = {}
@default_production_type_id = ProductionType.where(name: 'other').pluck(:id).first
@area_id = Area.where(code: 'WEM', type: 'region', source: self.class.source_id).pluck(:id).first
super
end
def parse_time_from_filename(file)
time = Time.strptime(File.basename(file), FILE_FORMAT)
TZ.local_to_utc(time)
end
def parse_unit(unit_internal_id)
@units[unit_internal_id] ||= ::Unit.
create_with(area_id: @area_id,
production_type_id: @default_production_type_id).
find_or_create_by!(internal_id: unit_internal_id)
end
def process_rows(all)
all.shift
dups = Set.new
r = logger.benchmark_info("parse csv") do
all.map do |row|
# Trading Date
# Interval Number
# Trading Interval
time = parse_time(row[2])
# Participant Code
# Facility Code
unit = parse_unit(row[4])
unit_id = unit.id
# Energy Generated (MWh)
# EOI Quantity (MW)
value = row[6].to_f*1000
# Extracted At
#puts row.inspect if row[7].blank?
next if row[2] == '2018-10-12 08:00:00' && row[3] == 'WPGENER' && row[4] == 'ALBANY_WF1'
next if row[2] == '2018-10-12 08:00:00' && row[3] == 'WPGENER' && row[4] == 'GRASMERE_WF1'
k = [time,unit_id]
binding.pry if dups.include? k
dups << k
{time:, unit_id:, value:}
end
end
r.compact!
#require 'pry' ; binding.pry
r
end
def done!
GenerationUnit.aggregate_to_generation(@from, @to, "a.source='aemo' AND a.id=#{@area_id}")
super
end
end
class ScadaLive < Scada
include SemanticLogger::Loggable
URL = "https://wa.aemo.com.au/aemo/data/wa/infographic/facility-intervals-last96.csv"
def self.cli(args)
if args.length > 1
$stderr.puts "#{$0} [file.csv]"
exit 1
end
self.new(*args).process
end
def initialize(url_or_path = URL)
super(url_or_path)
end
def parse_time_from_filename(file)
end
def process_rows(all)
all.shift
r = all.map do |row|
#PERIOD
time = parse_time(row[0])
#PARTICIPANT_CODE
#FACILITY_CODE
unit = parse_unit(row[2])
unit_id = unit.id
#ACTUAL_MW
value = row[3].to_f*1000
#PCT_ALT_FUEL
#PEAK_MW
#OUTAGE_MW
#PEAK_OUTAGE_MW
#POTENTIAL_MWH
#INTERVALS_GENERATING
#TOTAL_INTERVALS
#PCT_GENERATING
#AS_AT
{time:, unit_id:, value:}
end
@from = r.first[:time]
@to = r.last[:time]
#require 'pry' ; binding.pry
r
end
end
class OperationalDemand < Base
include SemanticLogger::Loggable
include Out::Load
URL = 'http://data.wa.aemo.com.au/public/market-data/wemde/operationalDemandWithdrawal/dailyFiles/'
FILE_FORMAT = 'OperationalDemandAndWithdrawal_%Y-%m-%d.json'
URL_FORMAT = URL+FILE_FORMAT
TIME_FORMAT = '%Y-%m-%dT%H:%M:%S%:z'
def self.select_file? url
url =~ /.json$/i
end
def process_file(body)
#require 'pry';binding.pry
area_id = Area.where(code: 'WEM', type: 'region', source: self.class.source_id).pluck(:id).first
json = FastJsonparser.parse(body.read, symbolize_keys: false)
r = json['data']['data'].map do |row|
time = Time.strptime(row['dispatchInterval'], TIME_FORMAT)
time = TZ.local_to_utc(time)
value = row['operationalDemand']*1000
{time:, area_id:, value:}
end
end
end
class ReferenceTradingPrice < Base
include SemanticLogger::Loggable
include Out::Price
URL = 'http://data.wa.aemo.com.au/public/market-data/wemde/referenceTradingPrice/previous/'
FILE_FORMAT = 'ReferenceTradingPrice_%Y%m%d.zip'
URL_FORMAT = URL+FILE_FORMAT
TIME_FORMAT = '%Y-%m-%dT%H:%M:%S%:z'
def self.select_file? url
url =~ /.zip$/i
end
def process_file(body)
area_id = Area.where(code: 'WEM', type: 'region', source: self.class.source_id).pluck(:id).first
json = FastJsonparser.parse(body, symbolize_keys: false)
r = json['data']['referenceTradingPrices'].map do |row|
time = Time.strptime(row['tradingInterval'], TIME_FORMAT)
time = TZ.local_to_utc(time)
value = row['referenceTradingPrice']*100
{time:, area_id:, value:}
end
end
end
#pre-reform price and load
class Balancing < Base
include SemanticLogger::Loggable
URL = 'https://data.wa.aemo.com.au/datafiles/balancing-summary/'
URL_FORMAT = 'https://data.wa.aemo.com.au/datafiles/balancing-summary/balancing-summary-%Y.csv'
# FIXME: set @from and @to
def process_rows(all)
area_id = Area.where(code: 'WEM', type: 'region', source: self.class.source_id).pluck(:id).first
all.shift
load_r = []
price_r = []
all.each do |row|
#Trading Date
#Interval Number
#Trading Interval
time = parse_time(row[2])
#Load Forecast (MW)
#Forecast As At
#Scheduled Generation (MW)
#Non-Scheduled Generation (MW)
#Total Generation (MW)
load = row[7].to_f*1000
#Final Price ($/MWh)
price = row[8].to_f*100
#Extracted At
load_r << {time:, area_id:, value: load}
price_r << {time:, area_id:, value: price}
end
#require 'pry' ; binding.pry
Out2::Load.run(load_r, @from, @to, self.class.source_id)
Out2::Price.run(price_r, @from, @to, self.class.source_id)
end
end
class BalancingLive < Balancing
include SemanticLogger::Loggable
URL = "https://data.wa.aemo.com.au/public/infographic/neartime/pulse.csv"
def self.cli(args)
if args.length > 1
$stderr.puts "#{$0} [file.csv]"
exit 1
end
self.new(*args).process
end
def initialize(url_or_path = URL)
super(url_or_path)
end
#def parse_time s
# TZ.local_to_utc(Time.strptime(s, "%m/%d/%Y %H:%M:%S"))
#end
def process_rows(all)
area_id = Area.where(code: 'WEM', type: 'region', source: self.class.source_id).pluck(:id).first
load_r = []
price_r = []
all.shift
all.each do |row|
# TRADING_DAY_INTERVAL
time = parse_time(row[0])
# FORECAST_EOI_MW
#FORECAST_MW
#PRICE
price = row[3].to_f*100
#FORECAST_NSG_MW
#ACTUAL_NSG_MW
#ACTUAL_TOTAL_GENERATION
load = row[6].to_f*1000
#RTD_TOTAL_GENERATION
#RTD_TOTAL_SPINNING_RESERVE
#LFAS_UP_REQUIREMENT_MW
#TOTAL_OUTAGE_MW
#PLANNED_OUTAGE_MW
#FORCED_OUTAGE_MW
#CONS_OUTAGE_MW
#AS_AT
load_r << {time:, area_id:, value: load}
price_r << {time:, area_id:, value: price}
end
#require 'pry' ; binding.pry
Out2::Load.run(load_r, @from, @to, self.class.source_id)
Out2::Price.run(price_r, @from, @to, self.class.source_id)
end
end
class DistributedPv < Base
include SemanticLogger::Loggable
include Out::Generation
URL = 'https://data.wa.aemo.com.au/public/public-data/datafiles/distributed-pv/'
FILE_FORMAT = 'distributed-pv-%Y.csv'
URL_FORMAT = URL+FILE_FORMAT
def initialize(file_or_date)
if file_or_date.is_a? Date
@from = file_or_date.to_time
else
@from = Time.strptime(File.basename(file_or_date), FILE_FORMAT)
end
@from = TZ.local_to_utc(@from)
@to = @from + 1.year
super
end
def process_rows(all)
all.shift
r = all.map do |row|
#Trading Date
#Interval Number
#Trading Interval
time = parse_time(row[2])
#Estimated DPV Generation (MW)
value = row[3].to_f*1000
#Extracted At
{time:, country: 'WEM', production_type: 'solar_rooftop', value:}
end
#require 'pry' ; binding.pry
r
end
def done!
Generation.aggregate_rooftoppv_to_capture(@from, @to, "a.code='WEM'")
super
end
end
class DistributedPvLive < Base
include SemanticLogger::Loggable
include Out::Generation
URL = 'https://wa.aemo.com.au/aemo/data/wa/infographic/dpvopdemand/distributed-pv_opdemand.csv'
def self.cli(args)
if args.length > 1
$stderr.puts "#{$0} [file.csv]"
exit 1
end
self.new(*args).process
end
def initialize(url_or_path = URL)
super(url_or_path)
end
def process_rows(all)
r = []
all.shift
all.each do |row|
#Trading Interval
time = parse_time(row[0])
#Interval Number
#Estimated DPV Generation (MW)
value = row[2].to_f*1000
#Operational Demand (MW)
#Extracted At
r << {time:, country: 'WEM', production_type: 'solar_rooftop', value:}
end
@from = r.first[:time]
@to = r.last[:time]
#require 'pry' ; binding.pry
r
end
def done!
Generation.aggregate_rooftoppv_to_capture(@from, @to, "a.code='WEM'")
super
end
end
class BalancingHistoric < Base
include SemanticLogger::Loggable
include Out::Price
URL = 'https://data.wa.aemo.com.au/datafiles/historical-balancing-prices/pre-balancing-market-data.csv'
def process_rows(all)
area_id = Area.where(code: 'WEM', type: 'region', source: self.class.source_id).pluck(:id).first
all.shift
r = all.map do |row|
#Trade Date
#Delivery Date
#Delivery Hour
time = Time.strptime("#{row[1]} #{row[2]}", '%Y-%m-%d %k')
time = TZ.local_to_utc(time)
#Delivery Interval
time += 30.minutes if row[3] == '2'
#MCAP Price Per MWh
value = row[4]
#UDAP Price Per MWh
#DDAP Price Per MWh
#Extracted At
{area_id:, time:, value:}
end
#require 'pry' ; binding.pry
r
end
end
end