-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy patheia.rb
329 lines (299 loc) · 9.65 KB
/
eia.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
require 'faraday/retry'
require 'fast_jsonparser'
require 'chronic'
module Eia
class Base
TZ = TZInfo::Timezone.get('UTC')
def self.source_id
"eia"
end
FUEL_MAP = {
'BAT' => 'battery',
'COL' => 'fossil_hard_coal',
'GEO' => 'geothermal',
'NG' => 'fossil_gas',
'NUC' => 'nuclear',
'OIL' => 'fossil_oil',
'OES' => 'storage',
'OTH' => 'other',
'PS' => 'hydro_pumped_storage',
'SNB' => 'solar_with_battery',
'SUN' => 'solar',
'UES' => 'unknown_storage',
'WAT' => 'hydro',
'WND' => 'wind',
'UNK' => 'unknown'
}
@@faraday = Faraday.new do |f|
f.request :retry, {
retry_statuses: [500, 502],
interval: 1,
backoff_factor: 2,
max: 5
}
end
def parse_time(time)
Time.strptime(time, '%Y-%m-%dT%H') - 1.hour
end
end
class Load < Base
include SemanticLogger::Loggable
include Out::Load
URL = "https://api.eia.gov/v2/electricity/rto/region-data/data/"
QUERY_PARAMS = {}
def self.cli args
if args.length != 2
$stderr.puts "#{$0} <from> <to>"
exit 1
end
from = Chronic.parse(args.shift).to_date
to = Chronic.parse(args.shift).to_date
(from...to).each do |time|
e = Eia::Load.new from: time, to: time + 1.day
e.process
end
end
def self.each
from = ::Load.joins(:area).where("time > ?", 2.months.ago).where(area: {source: self.source_id}).maximum(:time).in_time_zone(self::TZ)
to = Time.now.in_time_zone(self::TZ)
logger.info("Refresh from #{from}")
(from.to_date..to.to_date).each do |date|
yield self.new from: date, to: date + 1.day
end
end
def initialize(country: nil, from: nil, to: nil)
query = {
api_key: ENV['EIA_TOKEN'],
frequency: 'hourly',
start: from.strftime("%Y-%m-%d"),
end: to.strftime("%Y-%m-%d"),
offset: 0,
'data[]': 'value',
'facets[type][]': 'D'
}
query['facets[respondent][]'] = country if country
@res = []
loop do
res = logger.benchmark_info("#{URL} #{query[:start]} #{query[:end]}") do
@@faraday.get(URL, query)
end
res = logger.benchmark_info("json parse") do
FastJsonparser.parse(res.body, symbolize_keys: false)
end
logger.info "eia.gov query execution: #{res['response']['query execution']}"
logger.info "eia.gov count query execution: #{res['response']['count query execution']}"
@res << res
if query[:offset] + res['response']['data'].length >= res['response']['total'].to_i
break
end
query[:offset] += res['response']['data'].length
end
end
def points_load
r = []
@res.each do |res|
res['response']['data'].each do |row|
next if row['value'].nil?
time = parse_time(row['period'])
r << {
time:,
country: row['respondent'],
value: row['value'].to_f*1000
}
end
end
@from = r.min { |a,b| a[:time]<=>b[:time] }[:time]
@to = r.max { |a,b| a[:time]<=>b[:time] }[:time]
#require 'pry' ; binding.pry
Validate.validate_load(r, self.class.source_id)
end
end
class Generation < Base
include SemanticLogger::Loggable
include Out::Generation
URL = "https://api.eia.gov/v2/electricity/rto/fuel-type-data/data/"
def self.cli args
if args.length < 2
$stderr.puts "#{$0} <from> <to> [country ...]"
exit 1
end
from = Chronic.parse(args.shift).to_date
to = Chronic.parse(args.shift).to_date
areas = {}
production_types = {}
#countries = args.present? ? args : Area.where(source: Eia::Generation.source_id).pluck(:internal_id)
(from...to).each do |time|
if args.present?
args.each do |country|
SemanticLogger.tagged(country) do
Eia::Generation.new(from: time, to: time + 1.day, country: country).process
end
end
else
Eia::Generation.new(from: time, to: time + 1.day).process
end
end
end
def self.each
from = ::Generation.joins(:areas_production_type => :area).where("time > ?", 2.months.ago).where(area: {source: self.source_id}).maximum(:time).in_time_zone(self::TZ)
to = Time.now.in_time_zone(self::TZ)
logger.info("Refresh from #{from}")
(from.to_date..to.to_date).each do |date|
yield self.new from: date, to: date + 1.day
end
end
def initialize(country: nil, from: nil, to: nil)
query = {
api_key: ENV['EIA_TOKEN'],
frequency: 'hourly',
start: from.strftime("%Y-%m-%d"),
end: to.strftime("%Y-%m-%d"),
'data[]': 'value',
#'facets[fueltype][]': '{}',
}
query['facets[respondent][]'] = country if country
query[:offset] = 0
@res = []
loop do
res = logger.benchmark_info("#{URL} #{query[:start]} #{query[:end]}") do
@@faraday.get(URL, query)
end
res = logger.benchmark_info("json parse") do
FastJsonparser.parse(res.body, symbolize_keys: false)
rescue
logger.error "Response body: #{res.body}"
raise
end
unless res['response']['data']
logger.error "Response body (missing response.data): #{res.body}"
end
@res << res
if query[:offset] + res['response']['data'].length >= res['response']['total'].to_i
break
end
query[:offset] += res['response']['data'].length
end
end
def points_generation
r = {}
@res.each do |res|
res['response']['data'].each do |row|
raise "Unknown fueltype: #{row['fueltype']}" if FUEL_MAP[row['fueltype']].nil?
next if row['value'].nil?
time = parse_time(row['period'])
country = row['respondent']
production_type = FUEL_MAP[row['fueltype']]
value = row['value'].to_f*1000
k = [time,country,production_type]
if r[k] && r[k][:value] != value
logger.warn("#{country} different values #{r[k][:value]} != #{value}")
end
r[k] = {
time:,
country:,
production_type:,
value:
}
end
end
@from = r.values.min { |a,b| a[:time]<=>b[:time] }[:time]
@to = r.values.max { |a,b| a[:time]<=>b[:time] }[:time]
#require 'pry' ; binding.pry
Validate.validate_generation(r.values, self.class.source_id)
end
end
class Interchange < Base
include SemanticLogger::Loggable
include Out::Transmission
URL = "https://api.eia.gov/v2/electricity/rto/interchange-data/data/"
def self.cli args
if args.length < 2
$stderr.puts "#{$0} <from> <to> [country ...]"
exit 1
end
from = Chronic.parse(args.shift).to_date
to = Chronic.parse(args.shift).to_date
areas = {}
production_types = {}
(from...to).each do |time|
if args.present?
args.each do |country|
SemanticLogger.tagged(country) do
new(from: time, to: time + 1.day, country: country).process
end
end
else
new(from: time, to: time + 1.day).process
end
end
end
def self.each
from = ::Transmission.joins(areas_area: :from_area).where("time > ?", 2.months.ago).where(from_area: {source: self.source_id}).maximum(:time).in_time_zone(self::TZ)
to = Time.now.in_time_zone(self::TZ)
logger.info("Refresh from #{from}")
(from.to_date..to.to_date).each do |date|
yield self.new from: date, to: date + 1.day
end
end
def initialize(country: nil, from: nil, to: nil)
query = {
api_key: ENV['EIA_TOKEN'],
frequency: 'hourly',
start: from.strftime("%Y-%m-%d"),
end: to.strftime("%Y-%m-%d"),
'data[]': 'value',
}
query['facets[fromba][]'] = country if country
query[:offset] = 0
@res = []
loop do
res = logger.benchmark_info("#{URL} #{query[:start]} #{query[:end]}") do
@@faraday.get(URL, query)
end
res = logger.benchmark_info("json parse") do
FastJsonparser.parse(res.body, symbolize_keys: false)
rescue
logger.error "Response body: #{res.body}"
raise
end
unless res['response']['data']
logger.error "Response body (missing response.data): #{res.body}"
end
@res << res
if query[:offset] + res['response']['data'].length >= res['response']['total'].to_i
break
end
query[:offset] += res['response']['data'].length
end
end
def points
r = {}
@res.each do |res|
res['response']['data'].each do |row|
next if row['value'].nil?
time = parse_time(row['period'])
from_area = row['fromba']
to_area = row['toba']
# invert value. export need to be measured as drain on from_area, but EIA measures output to to_area
value = -row['value'].to_f*1000
k = [time,from_area,to_area]
if r[k] && r[k][:value] != value
logger.warn("#{row.inspect} different values #{r[k]} != #{value}")
end
#r << {
r[k] = {
time:,
from_area:,
to_area:,
value:
}
end
end
return [] if r.empty?
@from = r.values.min { |a,b| a[:time]<=>b[:time] }[:time]
@to = r.values.max { |a,b| a[:time]<=>b[:time] }[:time]
#require 'pry' ; binding.pry
r.values
end
end
end