-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathaeso.rb
249 lines (219 loc) · 6.9 KB
/
aeso.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
require 'fastest_csv'
require 'fast_jsonparser'
require 'chronic'
require 'zip'
module Aeso
class Base
TZ = TZInfo::Timezone.get('America/Edmonton')
def self.source_id
"aeso"
end
PT_MAP = {
"ENERGY STORAGE" => :battery,
"GAS" => :fossil_gas,
"COGENERATION" => :fossil_gas,
"COMBINED CYCLE" => :fossil_gas,
"GAS FIRED STEAM" => :fossil_gas,
"SIMPLE CYCLE" => :fossil_gas,
"COAL" => :fossil_hard_coal
}
end
class Generation < Base
include SemanticLogger::Loggable
def self.cli(args)
if args.empty?
each &:process
else
args.each do |f|
#puts f
self.new(f).process
end
end
end
MAX_RUNTIME = 15.minutes.to_i
QUEUE_URL = ENV['AESO_QUEUE_URL']
QUEUE_REGION = 'us-east-2'
include AwsSqs
def initialize(file_or_body)
@file_or_body = file_or_body
end
def process
if @file_or_body.start_with? 'Current Supply Demand Report'
chunks = @file_or_body.split("\r\n\r\n")
elsif File.exist? @file_or_body
chunks = File.read(@file_or_body).split("\r\n\r\n")
else
logger.error("Failed processing #{@file_or_body}")
return
end
time = Time.strptime(chunks[1].strip, '"Last Update : %B %d, %Y %H:%M"')
time = TZ.local_to_utc(time)
@from = time
@to = time + 1.minute
# summary
csv = FastestCSV.parse(chunks[2])
raise unless csv[2][0] == 'Alberta Internal Load (AIL)'
value = csv[2][1].to_f*1000
r_load = [
{time:, country: 'CA-AB', value:}
]
r_gen = {}
csv = FastestCSV.parse(chunks[3])
csv.each do |row|
production_type = PT_MAP[row[0]] || row[0].downcase.gsub(/ /, '_')
next if production_type == 'total'
value = row[2].to_f*1000
r_gen[production_type] ||= {
time:,
country: 'CA-AB',
production_type: production_type,
value: 0
}
r_gen[production_type][:value] += value
end
#transmission
csv = FastestCSV.parse(chunks[4])
r_tran = []
csv.each do |row|
next if row[0] == 'TOTAL'
#0: PATH
#1: ACTUAL FLOW
value = -row[1].to_f*1000
r_tran << {time:, from_area: 'CA-AB', to_area: row[0], value:}
end
#units
r_unit = process_units(time, :fossil_gas, chunks[5]) +
process_units(time, :hydro, chunks[6]) +
process_units(time, :battery, chunks[7]) +
process_units(time, :solar, chunks[8]) +
process_units(time, :wind, chunks[9]) +
process_units(time, :other, chunks[10]) +
process_units(time, :dual_fuel, chunks[11]) +
process_units(time, :fossil_coal, chunks[12])
#require 'pry' ; binding.pry
::Out2::Load.run(r_load, @from, @to, self.class.source_id)
::Out2::Generation.run(r_gen.values, @from, @to, self.class.source_id)
::Out2::Unit.run(r_unit, @from, @to, self.class.source_id)
::Out2::Transmission.run(r_tran, @from, @to, self.class.source_id)
end
def process_units time, production_type, chunk
return [] if chunk.blank?
r = []
csv = FastestCSV.parse chunk
csv.each do |row|
next if row.length == 1
next if row[0] == 'ASSET'
#0: ASSET
unit = row[0]
unit.sub! /.*\((.*)\).*/, '\1'
#1: MC - Maximum Capability
#2: TNG - Total Net Generation
value = row[2].to_f*1000
#3: DCR - Dispatched (and Accepted) Contingency Reserve
r << {time:, country: 'CA-AB', production_type:, unit:, value:}
end
r
end
end
class GenerationHistory < Base
def self.cli args
args.each do |file|
self.new(file).process
end
end
def initialize file
@file = file
end
def process
if @file =~ /\.zip$/
zip = Zip::InputStream.new(@file)
while zip.get_next_entry
body = zip.read
process_file(body)
end
end
end
TZ_MST = TZInfo::Timezone.get('MST')
def process_file body
r = []
r_cap = []
csv = FastestCSV.parse body, row_sep: "\r\n"
country = 'CA-AB'
csv.shift
csv.each do |row|
#0: Date (MST)
time = Time.strptime(row[0], '%Y-%m-%d %H:%M')
time = TZ_MST.local_to_utc(time)
#1: Date (MPT)
#2: Asset Short Name
unit = row[2]
#3: Asset Name
#4: Asset Grouping
#5: Volume
value = (row[5].to_f*1000).round
#6: Maximum Capability
cap = (row[6].to_f*1000).round
#7: System Capability
#8: Fuel Type
production_type = PT_MAP[row[8]] || row[8].downcase.gsub(/ /, '_')
#9: Sub Fuel Type
#10: Planning Area
#11: Region
r << {time:, country:, production_type:, unit:, value:}
r_cap << {time:, country:, production_type:, unit:, value: cap}
end
#require 'pry' ; binding.pry
from = r.first[:time]
to = r.last[:time]
::Out2::Unit.run(r, from, to, self.class.source_id)
::Out2::UnitCapacity.run(r_cap, from, to, self.class.source_id)
end
end
class Price < Base
include SemanticLogger::Loggable
def self.cli args
if args.length == 0 || args.length > 2
$stderr.puts "#{$0}: <from> [to]"
exit
end
from = Chronic.parse(args[0]).to_date
to = Chronic.parse(args[1]).to_date if args[1]
self.new(from, to).process
end
def self.each
from = ::Price.joins(:area).where(areas: {source: self.source_id, code: 'CA-AB'}).where("time > ?", 2.month.ago).pluck(Arel.sql("LAST(time, time)")).first
return unless from
from = TZ.utc_to_local(from).to_date
to = Time.now.in_time_zone(TZ).to_date
self.new(from, to).process
end
def initialize from, to
@from = from
@to = to
end
URL = 'https://api.aeso.ca/report/v1.1/price/poolPrice'
def process
from = @from.strftime('%Y-%m-%d')
to = @to.strftime('%Y-%m-%d') if @to.present?
res = logger.benchmark_info("#{URL} #{from} #{to}") do
Faraday.get(URL, startDate: from, endDate: to) do |req|
req.headers['X-API-Key'] = ENV['AESO_TOKEN']
end
end
json = FastJsonparser.parse(res.body, symbolize_keys: false)
raise json['message'] if json['message']
unless json['return'] && json['return']['Pool Price Report'].present?
require 'pry' ; binding.pry
end
r = []
json['return']['Pool Price Report'].each do |row|
next if row['pool_price'].blank?
time = Time.strptime(row['begin_datetime_utc'], '%Y-%m-%d %H:%M')
value = row['pool_price'].to_f*100
r << {time:, country: 'CA-AB', value:}
end
#require 'pry' ; binding.pry
Out2::Price.run(r, r.first[:time], r.last[:time], self.class.source_id)
end
end
end