-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhydro_quebec.rb
53 lines (48 loc) · 1.14 KB
/
hydro_quebec.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
require 'httparty'
module HydroQuebec
class Base
def self.source_id
"hydroquebec"
end
end
class Generation < Base
include SemanticLogger::Loggable
include Out::Generation
def initialize()
url = "https://www.hydroquebec.com/data/documents-donnees/donnees-ouvertes/json/production.json"
res = logger.benchmark_info(url) do
HTTParty.get(
url,
#debug_output: $stdout
)
end
@json = JSON.parse(res.body)
@from = Time.parse(@json["dateStart"])
@to = Time.parse(@json["dateEnd"])
end
ENGLISH = {
"hydraulique" => :hydro,
"thermique" => :thermal,
"solaire" => :solar,
"eolien" => :wind,
"autres" => :biomass
}
def points_generation
r=[]
@json["details"].each do |row|
time = Time.parse(row["date"])
row["valeurs"].each do |k,v|
next unless ENGLISH[k]
r << {
time: time,
country: "CA-QC",
production_type: ENGLISH[k],
value: v*1000
}
end
end
#require 'pry' ; binding.pry
r
end
end
end