openenergyid 0.1.13__tar.gz → 0.1.14__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of openenergyid might be problematic. Click here for more details.
- openenergyid-0.1.14/.pre-commit-config.yaml +18 -0
- openenergyid-0.1.14/DEVELOPERS.md +48 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/PKG-INFO +4 -1
- {openenergyid-0.1.13 → openenergyid-0.1.14}/README.md +3 -0
- openenergyid-0.1.14/data/capacity/capacity_output.json +327 -0
- openenergyid-0.1.14/data/capacity/power_sample.json +3473 -0
- openenergyid-0.1.14/data/dyntar/sample_output.json +209165 -0
- openenergyid-0.1.14/data/energiedelen/sample_input.json +1 -0
- openenergyid-0.1.14/demo_capacity_analysis.ipynb +476 -0
- openenergyid-0.1.14/demo_dyntar_analysis.ipynb +1034 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/demo_energiedelen.ipynb +109 -262
- {openenergyid-0.1.13 → openenergyid-0.1.14}/demo_energyid_download.ipynb +11 -14
- {openenergyid-0.1.13 → openenergyid-0.1.14}/demo_mvlr.ipynb +1 -1
- {openenergyid-0.1.13 → openenergyid-0.1.14}/download_prices.ipynb +10 -12
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/__init__.py +1 -1
- openenergyid-0.1.14/openenergyid/capacity/PowerAnalysis.py +34 -0
- openenergyid-0.1.14/openenergyid/capacity/__init__.py +6 -0
- openenergyid-0.1.14/openenergyid/capacity/main.py +90 -0
- openenergyid-0.1.14/openenergyid/capacity/models.py +29 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/dyntar/main.py +5 -8
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/energysharing/data_formatting.py +0 -1
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/energysharing/main.py +9 -8
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/energysharing/models.py +1 -1
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/models.py +8 -11
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/mvlr/models.py +10 -11
- openenergyid-0.1.14/poetry.lock +3100 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/pyproject.toml +30 -7
- openenergyid-0.1.14/requirements-dev.txt +122 -0
- openenergyid-0.1.14/requirements.txt +14 -0
- openenergyid-0.1.14/tests/nb.py +38 -0
- openenergyid-0.1.13/.pre-commit-config.yaml +0 -11
- openenergyid-0.1.13/data/dyntar/sample_output.json +0 -162195
- openenergyid-0.1.13/demo_dyntar_analysis.ipynb +0 -332
- openenergyid-0.1.13/requirements-dev.txt +0 -3
- openenergyid-0.1.13/requirements.txt +0 -3
- {openenergyid-0.1.13 → openenergyid-0.1.14}/.devcontainer/devcontainer.json +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/.github/workflows/python-publish.yml +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/.github/workflows/ruff.yml +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/.gitignore +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/LICENSE +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/da_prices_be.json +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/dyntar/demo_dyntar_analysis.html +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/dyntar/sample.json +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/energiedelen/Optimaal_1.png +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/energiedelen/Optimaal_2.png +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/energiedelen/Relatief.png +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/energiedelen/Vast.png +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/mvlr/sample_gas.json +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/data/mvlr/sample_solar.json +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/const.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/dyntar/__init__.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/dyntar/const.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/dyntar/models.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/energysharing/__init__.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/energysharing/const.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/enums.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/mvlr/__init__.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/mvlr/helpers.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/mvlr/main.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/openenergyid/mvlr/mvlr.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/tests/__init__.py +0 -0
- {openenergyid-0.1.13 → openenergyid-0.1.14}/tests/data/mvlr/sample.dat +0 -0
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
repos:
|
|
2
|
+
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
3
|
+
# Ruff version.
|
|
4
|
+
rev: v0.5.5
|
|
5
|
+
hooks:
|
|
6
|
+
# Run the linter.
|
|
7
|
+
- id: ruff
|
|
8
|
+
types_or: [python, pyi, jupyter]
|
|
9
|
+
args: [--fix]
|
|
10
|
+
# Run the formatter.
|
|
11
|
+
- id: ruff-format
|
|
12
|
+
types_or: [python, pyi, jupyter]
|
|
13
|
+
|
|
14
|
+
- repo: https://github.com/asottile/pyupgrade
|
|
15
|
+
rev: v3.16.0
|
|
16
|
+
hooks:
|
|
17
|
+
- id: pyupgrade
|
|
18
|
+
args: [--py311-plus]
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
# Development Environment Setup
|
|
2
|
+
|
|
3
|
+
This guide outlines the setup process for our development environment, focusing on packaging and dependency management.
|
|
4
|
+
## Info on dev setup
|
|
5
|
+
### Commit practices (pre-commit)
|
|
6
|
+
we use [pre-commit ](https://pre-commit.com/)to run RUFF.
|
|
7
|
+
### Poetry for Packaging and Dependency Management
|
|
8
|
+
|
|
9
|
+
We use [Poetry](https://python-poetry.org/docs/main/#installation) as our primary tool for packaging and managing dependencies. Poetry provides a simple yet powerful way to manage project dependencies and publish packages.
|
|
10
|
+
|
|
11
|
+
For the most detailed and up-to-date information, please refer to the [official Poetry 📚](https://python-poetry.org/docs/main/#installation).
|
|
12
|
+
|
|
13
|
+
### Installing Python CLI Applications Globally with pipx
|
|
14
|
+
|
|
15
|
+
To ensure that Python CLI applications are installed globally on your system while being isolated in their own virtual environments, we utilize `pipx`.
|
|
16
|
+
|
|
17
|
+
## Steps to Install pipx and Poetry
|
|
18
|
+
|
|
19
|
+
1. First, [install pipx](https://pipx.pypa.io/stable/installation/) following the instructions on the official website.
|
|
20
|
+
2. Once pipx is installed, you can easily install Poetry by running the following command in your terminal:
|
|
21
|
+
```pipx install poetry```
|
|
22
|
+
3. (*optional*) [install](vscode:extension/zeshuaro.vscode-python-poetry) vscode extension for poetry
|
|
23
|
+
### Setup with Poetry
|
|
24
|
+
```shell
|
|
25
|
+
poetry install
|
|
26
|
+
```
|
|
27
|
+
### publishing with poetry
|
|
28
|
+
https://python-poetry.org/docs/repositories/
|
|
29
|
+
## Remarks for devcontainer
|
|
30
|
+
|
|
31
|
+
You can also work inside a docker container(devcontainer).
|
|
32
|
+
To make sure you have access/permissions inside the devcontainer.
|
|
33
|
+
From inside the devcontainer after launch, check user and take ownership:
|
|
34
|
+
|
|
35
|
+
```bash
|
|
36
|
+
whoami
|
|
37
|
+
sudo chown -R $USER:$USER /workspaces/ -R
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
other option is to run as root from within the `devcontainer.json` `"remoteUser": "root"`
|
|
41
|
+
|
|
42
|
+
# Useful commands for dev work
|
|
43
|
+
## clean up
|
|
44
|
+
[vulture](https://github.com/jendrikseipp/vulture) for finding dead python 🐍
|
|
45
|
+
```pipx run vulture . --exclude venv```
|
|
46
|
+
|
|
47
|
+
[deptry](https://github.com/fpgmaas/deptry) for checking dependencies
|
|
48
|
+
```pipx run deptry . --ignore-notebooks```
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: openenergyid
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.14
|
|
4
4
|
Summary: Open Source Python library for energy analytics and simulations
|
|
5
5
|
Project-URL: Homepage, https://energyid.eu
|
|
6
6
|
Project-URL: Repository, https://github.com/EnergieID/OpenEnergyID
|
|
@@ -44,4 +44,7 @@ Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
|
44
44
|
Description-Content-Type: text/markdown
|
|
45
45
|
|
|
46
46
|
# OpenEnergyID
|
|
47
|
+
|
|
47
48
|
Open Source Python library for energy data analytics and simulations
|
|
49
|
+
|
|
50
|
+
[*more info for developers*](DEVELOPERS.md)
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
{
|
|
2
|
+
"peaks": {
|
|
3
|
+
"index": [
|
|
4
|
+
"2024-05-31T19:15:00+02:00",
|
|
5
|
+
"2024-06-13T17:30:00+02:00",
|
|
6
|
+
"2024-07-02T11:00:00+02:00"
|
|
7
|
+
],
|
|
8
|
+
"name": null,
|
|
9
|
+
"data": [
|
|
10
|
+
2.32,
|
|
11
|
+
3.596,
|
|
12
|
+
2.852
|
|
13
|
+
]
|
|
14
|
+
},
|
|
15
|
+
"peak_details": [
|
|
16
|
+
{
|
|
17
|
+
"peak_time": "2024-06-13T17:30:00+02:00",
|
|
18
|
+
"peak_value": 3.596,
|
|
19
|
+
"surrounding_data": {
|
|
20
|
+
"index": [
|
|
21
|
+
"2024-06-13T16:30:00+02:00",
|
|
22
|
+
"2024-06-13T16:45:00+02:00",
|
|
23
|
+
"2024-06-13T17:00:00+02:00",
|
|
24
|
+
"2024-06-13T17:15:00+02:00",
|
|
25
|
+
"2024-06-13T17:30:00+02:00",
|
|
26
|
+
"2024-06-13T17:45:00+02:00",
|
|
27
|
+
"2024-06-13T18:00:00+02:00",
|
|
28
|
+
"2024-06-13T18:15:00+02:00",
|
|
29
|
+
"2024-06-13T18:30:00+02:00",
|
|
30
|
+
"2024-06-13T18:45:00+02:00"
|
|
31
|
+
],
|
|
32
|
+
"name": null,
|
|
33
|
+
"data": [
|
|
34
|
+
2.104,
|
|
35
|
+
0.9,
|
|
36
|
+
2.628,
|
|
37
|
+
1.352,
|
|
38
|
+
3.596,
|
|
39
|
+
3.316,
|
|
40
|
+
2.216,
|
|
41
|
+
1.412,
|
|
42
|
+
0.768,
|
|
43
|
+
0.544
|
|
44
|
+
]
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
{
|
|
48
|
+
"peak_time": "2024-06-13T17:45:00+02:00",
|
|
49
|
+
"peak_value": 3.316,
|
|
50
|
+
"surrounding_data": {
|
|
51
|
+
"index": [
|
|
52
|
+
"2024-06-13T16:45:00+02:00",
|
|
53
|
+
"2024-06-13T17:00:00+02:00",
|
|
54
|
+
"2024-06-13T17:15:00+02:00",
|
|
55
|
+
"2024-06-13T17:30:00+02:00",
|
|
56
|
+
"2024-06-13T17:45:00+02:00",
|
|
57
|
+
"2024-06-13T18:00:00+02:00",
|
|
58
|
+
"2024-06-13T18:15:00+02:00",
|
|
59
|
+
"2024-06-13T18:30:00+02:00",
|
|
60
|
+
"2024-06-13T18:45:00+02:00",
|
|
61
|
+
"2024-06-13T19:00:00+02:00"
|
|
62
|
+
],
|
|
63
|
+
"name": null,
|
|
64
|
+
"data": [
|
|
65
|
+
0.9,
|
|
66
|
+
2.628,
|
|
67
|
+
1.352,
|
|
68
|
+
3.596,
|
|
69
|
+
3.316,
|
|
70
|
+
2.216,
|
|
71
|
+
1.412,
|
|
72
|
+
0.768,
|
|
73
|
+
0.544,
|
|
74
|
+
0.564
|
|
75
|
+
]
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"peak_time": "2024-06-24T18:00:00+02:00",
|
|
80
|
+
"peak_value": 3.048,
|
|
81
|
+
"surrounding_data": {
|
|
82
|
+
"index": [
|
|
83
|
+
"2024-06-24T17:00:00+02:00",
|
|
84
|
+
"2024-06-24T17:15:00+02:00",
|
|
85
|
+
"2024-06-24T17:30:00+02:00",
|
|
86
|
+
"2024-06-24T17:45:00+02:00",
|
|
87
|
+
"2024-06-24T18:00:00+02:00",
|
|
88
|
+
"2024-06-24T18:15:00+02:00",
|
|
89
|
+
"2024-06-24T18:30:00+02:00",
|
|
90
|
+
"2024-06-24T18:45:00+02:00",
|
|
91
|
+
"2024-06-24T19:00:00+02:00",
|
|
92
|
+
"2024-06-24T19:15:00+02:00"
|
|
93
|
+
],
|
|
94
|
+
"name": null,
|
|
95
|
+
"data": [
|
|
96
|
+
0.628,
|
|
97
|
+
0.724,
|
|
98
|
+
2.492,
|
|
99
|
+
1.72,
|
|
100
|
+
3.048,
|
|
101
|
+
1.208,
|
|
102
|
+
0.584,
|
|
103
|
+
0.416,
|
|
104
|
+
0.472,
|
|
105
|
+
0.56
|
|
106
|
+
]
|
|
107
|
+
}
|
|
108
|
+
},
|
|
109
|
+
{
|
|
110
|
+
"peak_time": "2024-06-06T00:15:00+02:00",
|
|
111
|
+
"peak_value": 2.888,
|
|
112
|
+
"surrounding_data": {
|
|
113
|
+
"index": [
|
|
114
|
+
"2024-06-05T23:15:00+02:00",
|
|
115
|
+
"2024-06-05T23:30:00+02:00",
|
|
116
|
+
"2024-06-05T23:45:00+02:00",
|
|
117
|
+
"2024-06-06T00:00:00+02:00",
|
|
118
|
+
"2024-06-06T00:15:00+02:00",
|
|
119
|
+
"2024-06-06T00:30:00+02:00",
|
|
120
|
+
"2024-06-06T00:45:00+02:00",
|
|
121
|
+
"2024-06-06T01:00:00+02:00",
|
|
122
|
+
"2024-06-06T01:15:00+02:00",
|
|
123
|
+
"2024-06-06T01:30:00+02:00"
|
|
124
|
+
],
|
|
125
|
+
"name": null,
|
|
126
|
+
"data": [
|
|
127
|
+
1.324,
|
|
128
|
+
1.384,
|
|
129
|
+
1.348,
|
|
130
|
+
1.696,
|
|
131
|
+
2.888,
|
|
132
|
+
2.548,
|
|
133
|
+
1.536,
|
|
134
|
+
0.512,
|
|
135
|
+
0.328,
|
|
136
|
+
0.32
|
|
137
|
+
]
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"peak_time": "2024-07-02T11:00:00+02:00",
|
|
142
|
+
"peak_value": 2.852,
|
|
143
|
+
"surrounding_data": {
|
|
144
|
+
"index": [
|
|
145
|
+
"2024-07-02T10:00:00+02:00",
|
|
146
|
+
"2024-07-02T10:15:00+02:00",
|
|
147
|
+
"2024-07-02T10:30:00+02:00",
|
|
148
|
+
"2024-07-02T10:45:00+02:00",
|
|
149
|
+
"2024-07-02T11:00:00+02:00",
|
|
150
|
+
"2024-07-02T11:15:00+02:00",
|
|
151
|
+
"2024-07-02T11:30:00+02:00",
|
|
152
|
+
"2024-07-02T11:45:00+02:00",
|
|
153
|
+
"2024-07-02T12:00:00+02:00",
|
|
154
|
+
"2024-07-02T12:15:00+02:00"
|
|
155
|
+
],
|
|
156
|
+
"name": null,
|
|
157
|
+
"data": [
|
|
158
|
+
0.508,
|
|
159
|
+
0.7,
|
|
160
|
+
0.564,
|
|
161
|
+
0.824,
|
|
162
|
+
2.852,
|
|
163
|
+
2.56,
|
|
164
|
+
2.216,
|
|
165
|
+
1.392,
|
|
166
|
+
0.604,
|
|
167
|
+
0.672
|
|
168
|
+
]
|
|
169
|
+
}
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"peak_time": "2024-06-13T17:00:00+02:00",
|
|
173
|
+
"peak_value": 2.628,
|
|
174
|
+
"surrounding_data": {
|
|
175
|
+
"index": [
|
|
176
|
+
"2024-06-13T16:00:00+02:00",
|
|
177
|
+
"2024-06-13T16:15:00+02:00",
|
|
178
|
+
"2024-06-13T16:30:00+02:00",
|
|
179
|
+
"2024-06-13T16:45:00+02:00",
|
|
180
|
+
"2024-06-13T17:00:00+02:00",
|
|
181
|
+
"2024-06-13T17:15:00+02:00",
|
|
182
|
+
"2024-06-13T17:30:00+02:00",
|
|
183
|
+
"2024-06-13T17:45:00+02:00",
|
|
184
|
+
"2024-06-13T18:00:00+02:00",
|
|
185
|
+
"2024-06-13T18:15:00+02:00"
|
|
186
|
+
],
|
|
187
|
+
"name": null,
|
|
188
|
+
"data": [
|
|
189
|
+
0.728,
|
|
190
|
+
1.468,
|
|
191
|
+
2.104,
|
|
192
|
+
0.9,
|
|
193
|
+
2.628,
|
|
194
|
+
1.352,
|
|
195
|
+
3.596,
|
|
196
|
+
3.316,
|
|
197
|
+
2.216,
|
|
198
|
+
1.412
|
|
199
|
+
]
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"peak_time": "2024-06-27T23:00:00+02:00",
|
|
204
|
+
"peak_value": 2.612,
|
|
205
|
+
"surrounding_data": {
|
|
206
|
+
"index": [
|
|
207
|
+
"2024-06-27T22:00:00+02:00",
|
|
208
|
+
"2024-06-27T22:15:00+02:00",
|
|
209
|
+
"2024-06-27T22:30:00+02:00",
|
|
210
|
+
"2024-06-27T22:45:00+02:00",
|
|
211
|
+
"2024-06-27T23:00:00+02:00",
|
|
212
|
+
"2024-06-27T23:15:00+02:00",
|
|
213
|
+
"2024-06-27T23:30:00+02:00",
|
|
214
|
+
"2024-06-27T23:45:00+02:00",
|
|
215
|
+
"2024-06-28T00:00:00+02:00",
|
|
216
|
+
"2024-06-28T00:15:00+02:00"
|
|
217
|
+
],
|
|
218
|
+
"name": null,
|
|
219
|
+
"data": [
|
|
220
|
+
0.74,
|
|
221
|
+
0.724,
|
|
222
|
+
0.744,
|
|
223
|
+
0.932,
|
|
224
|
+
2.612,
|
|
225
|
+
2.196,
|
|
226
|
+
2.076,
|
|
227
|
+
1.252,
|
|
228
|
+
1.172,
|
|
229
|
+
1.052
|
|
230
|
+
]
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
"peak_time": "2024-06-02T19:15:00+02:00",
|
|
235
|
+
"peak_value": 2.584,
|
|
236
|
+
"surrounding_data": {
|
|
237
|
+
"index": [
|
|
238
|
+
"2024-06-02T18:15:00+02:00",
|
|
239
|
+
"2024-06-02T18:30:00+02:00",
|
|
240
|
+
"2024-06-02T18:45:00+02:00",
|
|
241
|
+
"2024-06-02T19:00:00+02:00",
|
|
242
|
+
"2024-06-02T19:15:00+02:00",
|
|
243
|
+
"2024-06-02T19:30:00+02:00",
|
|
244
|
+
"2024-06-02T19:45:00+02:00",
|
|
245
|
+
"2024-06-02T20:00:00+02:00",
|
|
246
|
+
"2024-06-02T20:15:00+02:00",
|
|
247
|
+
"2024-06-02T20:30:00+02:00"
|
|
248
|
+
],
|
|
249
|
+
"name": null,
|
|
250
|
+
"data": [
|
|
251
|
+
0.872,
|
|
252
|
+
0.888,
|
|
253
|
+
0.896,
|
|
254
|
+
0.944,
|
|
255
|
+
2.584,
|
|
256
|
+
1.812,
|
|
257
|
+
1.632,
|
|
258
|
+
1.432,
|
|
259
|
+
0.664,
|
|
260
|
+
0.824
|
|
261
|
+
]
|
|
262
|
+
}
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
"peak_time": "2024-07-02T11:15:00+02:00",
|
|
266
|
+
"peak_value": 2.56,
|
|
267
|
+
"surrounding_data": {
|
|
268
|
+
"index": [
|
|
269
|
+
"2024-07-02T10:15:00+02:00",
|
|
270
|
+
"2024-07-02T10:30:00+02:00",
|
|
271
|
+
"2024-07-02T10:45:00+02:00",
|
|
272
|
+
"2024-07-02T11:00:00+02:00",
|
|
273
|
+
"2024-07-02T11:15:00+02:00",
|
|
274
|
+
"2024-07-02T11:30:00+02:00",
|
|
275
|
+
"2024-07-02T11:45:00+02:00",
|
|
276
|
+
"2024-07-02T12:00:00+02:00",
|
|
277
|
+
"2024-07-02T12:15:00+02:00",
|
|
278
|
+
"2024-07-02T12:30:00+02:00"
|
|
279
|
+
],
|
|
280
|
+
"name": null,
|
|
281
|
+
"data": [
|
|
282
|
+
0.7,
|
|
283
|
+
0.564,
|
|
284
|
+
0.824,
|
|
285
|
+
2.852,
|
|
286
|
+
2.56,
|
|
287
|
+
2.216,
|
|
288
|
+
1.392,
|
|
289
|
+
0.604,
|
|
290
|
+
0.672,
|
|
291
|
+
0.62
|
|
292
|
+
]
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"peak_time": "2024-06-06T00:30:00+02:00",
|
|
297
|
+
"peak_value": 2.548,
|
|
298
|
+
"surrounding_data": {
|
|
299
|
+
"index": [
|
|
300
|
+
"2024-06-05T23:30:00+02:00",
|
|
301
|
+
"2024-06-05T23:45:00+02:00",
|
|
302
|
+
"2024-06-06T00:00:00+02:00",
|
|
303
|
+
"2024-06-06T00:15:00+02:00",
|
|
304
|
+
"2024-06-06T00:30:00+02:00",
|
|
305
|
+
"2024-06-06T00:45:00+02:00",
|
|
306
|
+
"2024-06-06T01:00:00+02:00",
|
|
307
|
+
"2024-06-06T01:15:00+02:00",
|
|
308
|
+
"2024-06-06T01:30:00+02:00",
|
|
309
|
+
"2024-06-06T01:45:00+02:00"
|
|
310
|
+
],
|
|
311
|
+
"name": null,
|
|
312
|
+
"data": [
|
|
313
|
+
1.384,
|
|
314
|
+
1.348,
|
|
315
|
+
1.696,
|
|
316
|
+
2.888,
|
|
317
|
+
2.548,
|
|
318
|
+
1.536,
|
|
319
|
+
0.512,
|
|
320
|
+
0.328,
|
|
321
|
+
0.32,
|
|
322
|
+
0.296
|
|
323
|
+
]
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
]
|
|
327
|
+
}
|