-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathDemand.php
executable file
·79 lines (72 loc) · 1.84 KB
/
Demand.php
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
<?php
namespace KateMorley\Grid\Data;
use KateMorley\Grid\Database;
/** Updates data from the National Grid ESO Demand Data Update. */
class Demand {
public const KEYS = [
'embedded_wind',
'embedded_solar'
];
/**
* Updates the demand data.
*
* @param Database $database The database instance
*
* @throws DataException If the data was invalid
*/
public static function update(Database $database): void {
$rows = Csv::parse(
'https://data.nationalgrideso.com/backend/dataset/7a12172a-939c-404c-b581-a6128b74f588/resource/177f6fa4-ae49-4182-81ea-0c6b35f26ca6/download/demanddataupdate.csv',
[
'SETTLEMENT_DATE',
'SETTLEMENT_PERIOD',
'EMBEDDED_WIND_GENERATION',
'EMBEDDED_SOLAR_GENERATION'
],
[
'ND',
'FORECAST_ACTUAL_INDICATOR',
'TSD',
'ENGLAND_WALES_DEMAND',
'EMBEDDED_WIND_CAPACITY',
'EMBEDDED_SOLAR_CAPACITY',
'NON_BM_STOR',
'PUMP_STORAGE_PUMPING',
'SCOTTISH_TRANSFER',
'IFA_FLOW',
'IFA2_FLOW',
'BRITNED_FLOW',
'MOYLE_FLOW',
'EAST_WEST_FLOW',
'NEMO_FLOW',
'NSL_FLOW',
'ELECLINK_FLOW',
'VIKING_FLOW',
'GREENLINK_FLOW'
]
);
$database->update(
self::KEYS,
array_map(fn ($item) => self::getDatum($item), $rows)
);
}
/**
* Returns the datum for an item.
*
* @param array $item The item
*
* @throws DataException If the data was invalid
*/
private static function getDatum(array $item): array {
for ($i = 2; $i <= 3; $i ++) {
if (!ctype_digit($item[$i])) {
throw new DataException('Non-integer value: ' . $item[$i]);
}
}
return [
Time::getSettlementTime($item[0], $item[1]),
(int)$item[2] / 1000,
(int)$item[3] / 1000
];
}
}