-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcaiso.rb
202 lines (177 loc) · 5.68 KB
/
caiso.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
require 'faraday/net_http_persistent'
#require 'faraday/gzip'
require 'fastest_csv'
require 'chronic'
module Caiso
class Base
TZ = TZInfo::Timezone.get('US/Pacific')
def self.source_id
"caiso"
end
@@faraday = Faraday.new do |f|
f.adapter :net_http_persistent
#f.request :gzip
#f.response :logger #, logger
end
HTTP_DATE_FORMAT = '%a, %d %b %Y %H:%M:%S GMT'
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 = self.new(time)
e.process
rescue EmptyError
logger.warn "EmptyError #{time}"
end
end
def initialize(date)
@date = date
@time = @date.to_time
@from = TZ.local_to_utc(@time) { |periods| periods.first }
@to = @from + 1.day
end
def fetch
@filedate = DataFile.where(path: @url, source: self.class.source_id).pluck(:updated_at).first
@csv = logger.benchmark_info(@url) do
@res = @@faraday.get(@url) do |req|
if @filedate
req.headers['If-Modified-Since'] = @filedate.strftime(HTTP_DATE_FORMAT)
end
end
FastestCSV.parse(@res.body, row_sep: "\r\n")
end
if @res.status == 304 || @res.headers['content-type'] =~ /^text\/html/
raise EmptyError
end
#require 'pry' ; binding.pry
@filedate = Time.strptime(@res.headers['Last-Modified'], HTTP_DATE_FORMAT)
@fields = @csv.shift
raise EmptyError unless @fields.first
end
def parse_time(row)
time = @date.to_time + Time.strptime(row[0], '%H:%M').seconds_since_midnight.seconds
TZ.local_to_utc(time) { |periods| periods.first }
end
def done!
DataFile.upsert({path: @url, source: self.class.source_id, updated_at: @filedate}, unique_by: [:source, :path])
logger.info "done! #{@url}"
end
end
class FuelSource < Base
include SemanticLogger::Loggable
include Out::Generation
def self.parsers_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 date
end
end
FUELS = {
'Time' => nil,
'Solar' => 'solar',
'Wind' => 'wind_onshore',
'Geothermal' => 'geothermal',
'Biomass' => 'biomass',
'Biogas' => 'biogas',
'Small hydro' => 'hydro_small',
'Coal' => 'fossil_hard_coal',
'Nuclear' => 'nuclear',
'Natural Gas' => 'fossil_gas',
'Large Hydro' => 'hydro_large',
'Batteries' => 'battery',
'Imports' => 'import',
'Other' => 'other',
}
FUEL_KEYS = FUELS.keys
FUEL_VALUES = FUELS.values
def initialize(date)
super
#current: /outlook/current/fuelsource.csv
@url = "https://www.caiso.com/outlook/history/#{date.strftime('%Y%m%d')}/fuelsource.csv"
end
def process
from_area_id = Area.where(source: self.class.source_id, code: 'CAISO').pluck(:id).first
to_area_id = Area.where(source: self.class.source_id, code: 'other').pluck(:id).first
fetch
raise @fields.inspect unless @fields.map(&:downcase) == FUEL_KEYS.map(&:downcase)
r_gen = []
r_trans = []
last_time = @from
@csv.each do |row|
next if row[1..].compact.blank?
time = parse_time(row)
next if time < last_time
last_time = time
row.each_with_index do |value, i|
next if i == 0
raise i.to_s unless FUEL_VALUES[i]
production_type = FUEL_VALUES[i]
value = (value.to_f*1000).to_i
if production_type == 'import'
r_trans << {
time:,
from_area_id:,
to_area_id:,
value:
}
else
r_gen << {
time:,
production_type:,
value:,
country: 'CAISO'
}
end
end
end
#require 'pry' ; binding.pry
r_gen = Validate.validate_generation(r_gen, self.class.source_id)
::Out2::Generation.run(r_gen, @from, @to, self.class.source_id)
::Out2::Transmission.run(r_trans, @from, @to, self.class.source_id)
end
end
class Load < Base
include SemanticLogger::Loggable
include Out::Load
FIELDS = ["Time", "Hour ahead forecast", "Current demand", "Net demand"]
def self.parsers_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 date
end
end
def initialize(date)
super
#current: /outlook/current/netdemand.csv
@url = "https://www.caiso.com/outlook/history/#{date.strftime('%Y%m%d')}/netdemand.csv"
end
def points_load
fetch
raise @fields.inspect unless @fields[0, FIELDS.length].map(&:downcase) == FIELDS.map(&:downcase)
r = []
last_time = @from
@csv.each do |row|
next if row[1..].compact.blank?
time = parse_time(row)
next if time < last_time
last_time = time
value = (row[2].to_f*1000).to_i
r << {
time:,
value:,
country: 'CAISO'
}
end
#require 'pry' ; binding.pry
Validate::validate_load(r, self.class.source_id)
end
end
end