cloudnet-api-client 0.9.2__tar.gz → 0.10.0__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.
- cloudnet_api_client-0.10.0/.github/dataportal.env +29 -0
- cloudnet_api_client-0.10.0/.github/db.env +4 -0
- cloudnet_api_client-0.10.0/.github/docker-compose.yml +45 -0
- cloudnet_api_client-0.10.0/.github/initdb.d/init-dbs.sh +9 -0
- cloudnet_api_client-0.10.0/.github/ss.env +12 -0
- cloudnet_api_client-0.10.0/.github/workflows/test.yml +64 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/.gitignore +1 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/.pre-commit-config.yaml +2 -2
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/CHANGELOG.md +5 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/PKG-INFO +2 -1
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/README.md +1 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/cloudnet_api_client/containers.py +1 -0
- cloudnet_api_client-0.10.0/cloudnet_api_client/version.py +1 -0
- cloudnet_api_client-0.10.0/tests/data/20250801_Magurele_CHM170137_000.nc +0 -0
- cloudnet_api_client-0.10.0/tests/data/20250803_JOYCE_WST_01m.dat +525 -0
- cloudnet_api_client-0.10.0/tests/data/20250808_Granada_CHM170119_0045_000.nc +0 -0
- cloudnet_api_client-0.10.0/tests/test_client.py +139 -0
- cloudnet_api_client-0.9.2/.github/workflows/test.yml +0 -27
- cloudnet_api_client-0.9.2/cloudnet_api_client/version.py +0 -1
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/.github/workflows/publish.yml +0 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/LICENSE +0 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/cloudnet_api_client/__init__.py +0 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/cloudnet_api_client/client.py +0 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/cloudnet_api_client/dl.py +0 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/cloudnet_api_client/py.typed +0 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/cloudnet_api_client/utils.py +0 -0
- {cloudnet_api_client-0.9.2 → cloudnet_api_client-0.10.0}/pyproject.toml +0 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
NODE_ENV=test
|
|
2
|
+
SS_MODE=remote
|
|
3
|
+
TYPEORM_HOST=db
|
|
4
|
+
TYPEORM_USERNAME=dataportal
|
|
5
|
+
TYPEORM_PASSWORD=dev
|
|
6
|
+
TYPEORM_DATABASE=dataportal
|
|
7
|
+
TYPEORM_PORT=5432
|
|
8
|
+
TYPEORM_SYNCHRONIZE=false
|
|
9
|
+
TYPEORM_MIGRATIONS_RUN=true
|
|
10
|
+
TYPEORM_LOGGING=false
|
|
11
|
+
TYPEORM_ENTITIES=build/entity/*.js
|
|
12
|
+
TYPEORM_MIGRATIONS=build/migration/*.js
|
|
13
|
+
DP_SS_URL=http://storage-service:5900
|
|
14
|
+
DP_SS_USER=test
|
|
15
|
+
DP_SS_PASSWORD=test
|
|
16
|
+
DP_BACKEND_URL=http://localhost:3000/api
|
|
17
|
+
DP_FRONTEND_URL=http://localhost:8080
|
|
18
|
+
GEOLITE2_COUNTRY_PATH=tests/data/GeoLite2-Country-Test.mmdb
|
|
19
|
+
CITATION_SERVICE_URL=http://citation-service
|
|
20
|
+
DATACITE_API_URL=http://localhost:5802
|
|
21
|
+
DATACITE_API_USERNAME=XXX
|
|
22
|
+
DATACITE_API_PASSWORD=XXX
|
|
23
|
+
DATACITE_API_TIMEOUT_MS=2000
|
|
24
|
+
DATACITE_DOI_SERVER=http://handle.datacite.test
|
|
25
|
+
DATACITE_DOI_PREFIX=XXX
|
|
26
|
+
LABELLING_URL=http://localhost:5803
|
|
27
|
+
HANDLE_API_URL=http://localhost:5804
|
|
28
|
+
DVAS_URL=https://dvas.test
|
|
29
|
+
DC_URL=https://dc.test
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
services:
|
|
2
|
+
dataportal-backend:
|
|
3
|
+
image: ghcr.io/actris-cloudnet/dataportal-backend
|
|
4
|
+
ports:
|
|
5
|
+
- "3000:3000"
|
|
6
|
+
depends_on:
|
|
7
|
+
db:
|
|
8
|
+
condition: service_healthy
|
|
9
|
+
volumes:
|
|
10
|
+
- ../dataportal-fixtures:/dataportal-fixtures
|
|
11
|
+
- ../backend-fixtures:/backend-fixtures
|
|
12
|
+
env_file:
|
|
13
|
+
- dataportal.env
|
|
14
|
+
command:
|
|
15
|
+
[
|
|
16
|
+
"sh",
|
|
17
|
+
"-c",
|
|
18
|
+
"node build/fixtures.js /backend-fixtures/backend/fixtures TRUNCATE && node build/fixtures.js /dataportal-fixtures APPEND && npm run start",
|
|
19
|
+
]
|
|
20
|
+
db:
|
|
21
|
+
image: "postgres:16"
|
|
22
|
+
volumes:
|
|
23
|
+
- ./initdb.d:/docker-entrypoint-initdb.d
|
|
24
|
+
ports:
|
|
25
|
+
- "54321:54321"
|
|
26
|
+
env_file:
|
|
27
|
+
- db.env
|
|
28
|
+
healthcheck:
|
|
29
|
+
test: ["CMD", "psql", "-c", "select 1"]
|
|
30
|
+
interval: 1s
|
|
31
|
+
retries: 120
|
|
32
|
+
moto-server:
|
|
33
|
+
image: "motoserver/moto:3.0.1"
|
|
34
|
+
storage-service:
|
|
35
|
+
image: ghcr.io/actris-cloudnet/storage-service
|
|
36
|
+
ports:
|
|
37
|
+
- "5900:5900"
|
|
38
|
+
depends_on:
|
|
39
|
+
db:
|
|
40
|
+
condition: service_healthy
|
|
41
|
+
moto-server:
|
|
42
|
+
condition: service_started
|
|
43
|
+
env_file:
|
|
44
|
+
- ss.env
|
|
45
|
+
command: ["sh", "-c", "node build/init.js && npm start"]
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
#!/bin/bash
|
|
2
|
+
set -e
|
|
3
|
+
|
|
4
|
+
psql -v ON_ERROR_STOP=1 --username "$POSTGRES_USER" --dbname "$POSTGRES_DB" <<-EOSQL
|
|
5
|
+
CREATE USER ss WITH PASSWORD 'dev';
|
|
6
|
+
CREATE DATABASE ss OWNER ss;
|
|
7
|
+
CREATE USER dataportal WITH PASSWORD 'dev';
|
|
8
|
+
CREATE DATABASE dataportal OWNER dataportal;
|
|
9
|
+
EOSQL
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
NODE_ENV=test
|
|
2
|
+
SS_USER=test
|
|
3
|
+
SS_PWHASH=9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08
|
|
4
|
+
SS_MAXOBJECTSPERBUCKET=10000
|
|
5
|
+
PGHOST=db
|
|
6
|
+
PGDATABASE=ss
|
|
7
|
+
PGUSER=ss
|
|
8
|
+
PGPASSWORD=dev
|
|
9
|
+
S3_ENDPOINT=http://moto-server:5000
|
|
10
|
+
S3_ACCESSKEYID=dev
|
|
11
|
+
S3_SECRETACCESSKEY=dev
|
|
12
|
+
S3_FORCE_PATH_STYLE=true
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
name: Test against dataportal backend
|
|
2
|
+
|
|
3
|
+
on: [push, pull_request]
|
|
4
|
+
|
|
5
|
+
jobs:
|
|
6
|
+
test:
|
|
7
|
+
timeout-minutes: 5
|
|
8
|
+
strategy:
|
|
9
|
+
matrix:
|
|
10
|
+
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
|
11
|
+
runs-on: ubuntu-latest
|
|
12
|
+
steps:
|
|
13
|
+
- name: Set up Python
|
|
14
|
+
uses: actions/setup-python@v5
|
|
15
|
+
with:
|
|
16
|
+
python-version: ${{ matrix.python-version }}
|
|
17
|
+
|
|
18
|
+
- name: Checkout code
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
|
+
|
|
21
|
+
- name: Cache Python dependencies
|
|
22
|
+
uses: actions/cache@v4
|
|
23
|
+
with:
|
|
24
|
+
path: ~/.cache/pip
|
|
25
|
+
key: ${{ runner.os }}-pip-${{ matrix.python-version }}-${{ hashFiles('**/pyproject.toml') }}
|
|
26
|
+
restore-keys: |
|
|
27
|
+
${{ runner.os }}-pip-${{ matrix.python-version }}-
|
|
28
|
+
${{ runner.os }}-pip-
|
|
29
|
+
|
|
30
|
+
- name: Checkout fixtures
|
|
31
|
+
uses: actions/checkout@v4
|
|
32
|
+
with:
|
|
33
|
+
repository: actris-cloudnet/dataportal
|
|
34
|
+
sparse-checkout: backend/fixtures/
|
|
35
|
+
sparse-checkout-cone-mode: false
|
|
36
|
+
path: backend-fixtures
|
|
37
|
+
|
|
38
|
+
- name: Checkout production fixtures
|
|
39
|
+
uses: actions/checkout@v4
|
|
40
|
+
with:
|
|
41
|
+
repository: actris-cloudnet/dataportal-fixtures
|
|
42
|
+
path: dataportal-fixtures
|
|
43
|
+
|
|
44
|
+
- name: Set up Docker Buildx
|
|
45
|
+
uses: docker/setup-buildx-action@v3
|
|
46
|
+
|
|
47
|
+
- name: Start dataportal
|
|
48
|
+
run: docker compose -f .github/docker-compose.yml up -d --wait
|
|
49
|
+
|
|
50
|
+
- name: Install dependencies
|
|
51
|
+
run: |
|
|
52
|
+
pip install --upgrade pip
|
|
53
|
+
pip install .[dev,test]
|
|
54
|
+
|
|
55
|
+
- name: Run pre-commit checks
|
|
56
|
+
if: matrix.python-version == '3.13'
|
|
57
|
+
run: pre-commit run --all-files --show-diff-on-failure
|
|
58
|
+
|
|
59
|
+
- name: Run tests
|
|
60
|
+
run: pytest -s -vv
|
|
61
|
+
|
|
62
|
+
- name: Shutdown backend
|
|
63
|
+
if: always()
|
|
64
|
+
run: docker compose -f .github/docker-compose.yml down
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
exclude: ^tests/data/
|
|
2
2
|
repos:
|
|
3
3
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
4
|
-
rev:
|
|
4
|
+
rev: v6.0.0
|
|
5
5
|
hooks:
|
|
6
6
|
- id: check-case-conflict
|
|
7
7
|
- id: check-executables-have-shebangs
|
|
@@ -13,7 +13,7 @@ repos:
|
|
|
13
13
|
args: ["--fix", "lf"]
|
|
14
14
|
- id: trailing-whitespace
|
|
15
15
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
16
|
-
rev: v0.
|
|
16
|
+
rev: v0.12.8
|
|
17
17
|
hooks:
|
|
18
18
|
- id: ruff
|
|
19
19
|
args: ["--fix"]
|
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 0.10.0 – 2025-08-13
|
|
9
|
+
|
|
10
|
+
- Add `volatile` to metadata response
|
|
11
|
+
- Run CI tests against true dataportal backend
|
|
12
|
+
|
|
8
13
|
## 0.9.2 – 2025-08-04
|
|
9
14
|
|
|
10
15
|
- Use updated Cloudnet API
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: cloudnet-api-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.0
|
|
4
4
|
Summary: Cloudnet API client
|
|
5
5
|
Author-email: Simo Tukiainen <simo.tukiainen@fmi.fi>
|
|
6
6
|
License-File: LICENSE
|
|
@@ -80,6 +80,7 @@ Parameters:
|
|
|
80
80
|
| updated_at_to | `str`, `date` or `datetime` | `None` | "2025-01-01T12:00:00" |
|
|
81
81
|
| instrument_id | `str` or `list[str]` | `None` | "rpg-fmcw-94" |
|
|
82
82
|
| instrument_pid | `str` or `list[str]` | `None` | "https://hdl.handle.net/21.12132/3.191564170f8a4686" |
|
|
83
|
+
| model_id | `str` or `list[str]` | `None` | "gdas1" |
|
|
83
84
|
| product\* | `str` or `list[str]` | `None` | "classification" |
|
|
84
85
|
| show_legacy\* | `bool` | `False` | |
|
|
85
86
|
| filename_prefix\*\* | `str` or `list[str]` | `None` | "stare" |
|
|
@@ -53,6 +53,7 @@ Parameters:
|
|
|
53
53
|
| updated_at_to | `str`, `date` or `datetime` | `None` | "2025-01-01T12:00:00" |
|
|
54
54
|
| instrument_id | `str` or `list[str]` | `None` | "rpg-fmcw-94" |
|
|
55
55
|
| instrument_pid | `str` or `list[str]` | `None` | "https://hdl.handle.net/21.12132/3.191564170f8a4686" |
|
|
56
|
+
| model_id | `str` or `list[str]` | `None` | "gdas1" |
|
|
56
57
|
| product\* | `str` or `list[str]` | `None` | "classification" |
|
|
57
58
|
| show_legacy\* | `bool` | `False` | |
|
|
58
59
|
| filename_prefix\*\* | `str` or `list[str]` | `None` | "stare" |
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.10.0"
|
|
Binary file
|
|
@@ -0,0 +1,525 @@
|
|
|
1
|
+
"TOA5","JOYCE_WST","CR300","16480","CR310.Std.11.02","CPU:joyce_20240403.CR300","19693","JOYCE_WST_01m"
|
|
2
|
+
"TIMESTAMP","AirTC_Avg","RH","WS_ms_S_WVT","WindDir_D1_WVT","WS_ms_Max","WSDiag","BV_BP_Avg","BV_Temp_Avg","BV_Qual_Min","BattV_Avg","PTemp_C_Avg","BV_BP_SL_Avg"
|
|
3
|
+
"TS","Deg C","%","meters/Second","Deg","meters/Second","unitless","hPa","deg C","unitless","Volts","Deg C","hPa"
|
|
4
|
+
"","Avg","Smp","WVc","WVc","Max","Smp","Avg","Avg","Min","Avg","Avg","Avg"
|
|
5
|
+
"2025-08-03 00:01:00",14.44,85.3,1.033,274.6,1.39,0,1005.267,13.99,6.87,13.66,21.36,1018.531
|
|
6
|
+
"2025-08-03 00:02:00",14.43,85.4,1.455,288.1,2.55,0,1005.2,13.99,6.86,13.69,21.37,1018.464
|
|
7
|
+
"2025-08-03 00:03:00",14.43,85.3,1.338,277.9,2.44,0,1005.2,13.99,6.86,13.65,21.37,1018.464
|
|
8
|
+
"2025-08-03 00:04:00",14.43,85.3,1.858,259.6,3.36,0,1005.2,13.99,6.86,13.67,21.36,1018.464
|
|
9
|
+
"2025-08-03 00:05:00",14.43,85.3,2.203,267.7,3.76,0,1005.2,13.99,6.86,13.63,21.36,1018.464
|
|
10
|
+
"2025-08-03 00:06:00",14.45,85.1,1.677,276.5,2.34,0,1005.2,13.98,6.86,13.69,21.37,1018.464
|
|
11
|
+
"2025-08-03 00:07:00",14.46,85.2,1.238,273.2,1.78,0,1005.167,13.99,6.85,13.67,21.37,1018.431
|
|
12
|
+
"2025-08-03 00:08:00",14.47,85.2,0.922,270.1,1.66,0,1005.1,13.99,6.86,13.66,21.36,1018.364
|
|
13
|
+
"2025-08-03 00:09:00",14.47,85.1,1.349,280.8,2.97,0,1005.1,13.99,6.86,13.72,21.37,1018.364
|
|
14
|
+
"2025-08-03 00:10:00",14.47,85.1,1.584,287.8,2.72,0,1005.133,13.99,6.85,13.74,21.37,1018.397
|
|
15
|
+
"2025-08-03 00:11:00",14.46,85.1,1.348,274.6,2.38,0,1005.2,13.99,6.85,13.72,21.37,1018.464
|
|
16
|
+
"2025-08-03 00:12:00",14.47,85.1,1.879,282.4,2.49,0,1005.2,13.99,6.85,13.75,21.37,1018.464
|
|
17
|
+
"2025-08-03 00:13:00",14.5,85,1.993,269.1,2.87,0,1005.2,13.99,6.85,13.77,21.37,1018.464
|
|
18
|
+
"2025-08-03 00:14:00",14.51,84.8,2.612,286.8,3.99,0,1005.2,13.99,6.84,13.75,21.37,1018.464
|
|
19
|
+
"2025-08-03 00:15:00",14.52,84.7,1.389,275.2,2.11,0,1005.2,13.99,6.85,13.75,21.36,1018.464
|
|
20
|
+
"2025-08-03 00:16:00",14.53,84.6,1.484,288,3.34,0,1005.2,13.99,6.84,13.71,21.37,1018.464
|
|
21
|
+
"2025-08-03 00:17:00",14.54,84.5,2.232,277.7,3.2,0,1005.2,13.99,6.84,13.69,21.37,1018.464
|
|
22
|
+
"2025-08-03 00:18:00",14.55,84.4,1.924,287.2,2.48,0,1005.2,13.99,6.85,13.66,21.36,1018.464
|
|
23
|
+
"2025-08-03 00:19:00",14.55,84.4,2.293,279.8,3.41,0,1005.2,14,6.86,13.69,21.37,1018.464
|
|
24
|
+
"2025-08-03 00:20:00",14.57,84.3,2.293,284.1,3.68,0,1005.2,13.99,6.86,13.67,21.37,1018.464
|
|
25
|
+
"2025-08-03 00:21:00",14.6,84.2,1.606,272,2.35,0,1005.183,14,6.86,13.66,21.37,1018.447
|
|
26
|
+
"2025-08-03 00:22:00",14.61,84,2.402,289.1,3.43,0,1005.1,14,6.85,13.64,21.37,1018.364
|
|
27
|
+
"2025-08-03 00:23:00",14.61,84,1.681,265.1,2.4,0,1005.1,14.01,6.86,13.67,21.38,1018.364
|
|
28
|
+
"2025-08-03 00:24:00",14.6,83.9,0.907,237.8,1.63,0,1005.1,14.01,6.86,13.71,21.38,1018.364
|
|
29
|
+
"2025-08-03 00:25:00",14.6,84,2.114,275.7,3.86,0,1005.1,14.01,6.84,13.68,21.38,1018.364
|
|
30
|
+
"2025-08-03 00:26:00",14.61,84,2.04,279.3,2.82,0,1005.1,14.02,6.86,13.69,21.38,1018.364
|
|
31
|
+
"2025-08-03 00:27:00",14.62,83.9,2.124,268.3,3.29,0,1005.1,14.02,6.86,13.68,21.39,1018.364
|
|
32
|
+
"2025-08-03 00:28:00",14.63,84,1.627,268.4,2.45,0,1005.1,14.02,6.86,13.66,21.39,1018.364
|
|
33
|
+
"2025-08-03 00:29:00",14.62,84,1.933,272.7,4,0,1005.1,14.03,6.86,13.66,21.39,1018.364
|
|
34
|
+
"2025-08-03 00:30:00",14.61,83.9,1.816,260.8,3.58,0,1005.1,14.03,6.85,13.64,21.39,1018.364
|
|
35
|
+
"2025-08-03 00:31:00",14.6,84,1.708,287.7,2.4,0,1005.1,14.04,6.85,13.64,21.39,1018.364
|
|
36
|
+
"2025-08-03 00:32:00",14.6,84.1,1.114,260,4.7,0,1005.1,14.04,6.86,13.62,21.39,1018.364
|
|
37
|
+
"2025-08-03 00:33:00",14.59,84,2.095,268.2,4.58,0,1005.1,14.04,6.86,13.65,21.39,1018.364
|
|
38
|
+
"2025-08-03 00:34:00",14.6,84,1.551,259.6,2.66,0,1005.1,14.04,6.86,13.67,21.4,1018.364
|
|
39
|
+
"2025-08-03 00:35:00",14.61,83.9,1.928,262.4,2.62,0,1005.1,14.05,6.85,13.67,21.4,1018.364
|
|
40
|
+
"2025-08-03 00:36:00",14.61,83.9,2.418,264.3,3.7,0,1005.1,14.05,6.85,13.68,21.4,1018.364
|
|
41
|
+
"2025-08-03 00:37:00",14.62,83.9,1.209,259.9,2.34,0,1005.025,14.05,6.85,13.69,21.41,1018.289
|
|
42
|
+
"2025-08-03 00:38:00",14.62,83.9,2.097,257.8,3.46,0,1005,14.06,6.86,13.67,21.4,1018.264
|
|
43
|
+
"2025-08-03 00:39:00",14.61,83.9,1.677,269.7,3.15,0,1005,14.06,6.85,13.73,21.4,1018.264
|
|
44
|
+
"2025-08-03 00:40:00",14.61,83.9,2.135,264.9,3.46,0,1005,14.06,6.85,13.69,21.4,1018.264
|
|
45
|
+
"2025-08-03 00:41:00",14.61,84,2.208,269.5,3.38,0,1005,14.06,6.85,13.65,21.4,1018.264
|
|
46
|
+
"2025-08-03 00:42:00",14.62,84,1.423,254.7,1.88,0,1005,14.06,6.85,13.64,21.39,1018.264
|
|
47
|
+
"2025-08-03 00:43:00",14.62,83.9,0.912,262,1.46,0,1005,14.06,6.85,13.64,21.4,1018.264
|
|
48
|
+
"2025-08-03 00:44:00",14.62,84,1.228,260.9,1.99,0,1005,14.06,6.84,13.66,21.4,1018.264
|
|
49
|
+
"2025-08-03 00:45:00",14.61,84,1.148,245,2.1,0,1005,14.06,6.84,13.63,21.39,1018.264
|
|
50
|
+
"2025-08-03 00:46:00",14.61,84.1,1.78,265.8,2.6,0,1005,14.06,6.85,13.66,21.39,1018.264
|
|
51
|
+
"2025-08-03 00:47:00",14.61,84.1,1.088,282.8,1.7,0,1005,14.06,6.85,13.66,21.39,1018.264
|
|
52
|
+
"2025-08-03 00:48:00",14.61,84,1.543,272.4,3.29,0,1005,14.06,6.85,13.64,21.39,1018.264
|
|
53
|
+
"2025-08-03 00:49:00",14.61,84.1,1.583,282.3,2.29,0,1005,14.06,6.85,13.66,21.39,1018.264
|
|
54
|
+
"2025-08-03 00:50:00",14.61,84.1,1.444,265.8,2.33,0,1005,14.06,6.85,13.69,21.38,1018.264
|
|
55
|
+
"2025-08-03 00:51:00",14.6,84.2,1.505,270.2,2.3,0,1005,14.05,6.85,13.66,21.38,1018.264
|
|
56
|
+
"2025-08-03 00:52:00",14.6,84.2,1.973,251.3,3.19,0,1005,14.05,6.85,13.66,21.38,1018.264
|
|
57
|
+
"2025-08-03 00:53:00",14.59,84.2,1.408,264.1,2.08,0,1005,14.05,6.85,13.67,21.38,1018.264
|
|
58
|
+
"2025-08-03 00:54:00",14.58,84.2,1.489,262.8,2.62,0,1005,14.04,6.85,13.7,21.38,1018.264
|
|
59
|
+
"2025-08-03 00:55:00",14.57,84.2,1.588,280.2,2.98,0,1005,14.04,6.86,13.7,21.37,1018.264
|
|
60
|
+
"2025-08-03 00:56:00",14.58,84.3,2.343,269.2,4.76,0,1005,14.03,6.85,13.68,21.36,1018.264
|
|
61
|
+
"2025-08-03 00:57:00",14.59,84.2,2.133,258.1,3.19,0,1005,14.03,6.85,13.67,21.35,1018.264
|
|
62
|
+
"2025-08-03 00:58:00",14.59,84.1,1.498,272.7,3.09,0,1005,14.02,6.85,13.67,21.35,1018.264
|
|
63
|
+
"2025-08-03 00:59:00",14.6,84.1,1.694,266.3,2.82,0,1005,14.02,6.86,13.7,21.34,1018.264
|
|
64
|
+
"2025-08-03 01:00:00",14.61,84.1,1.728,270.4,2.72,0,1005,14.02,6.86,13.69,21.33,1018.264
|
|
65
|
+
"2025-08-03 01:01:00",14.61,84,1.499,269.8,2.06,0,1005,14.01,6.86,13.7,21.33,1018.264
|
|
66
|
+
"2025-08-03 01:02:00",14.61,84,1.839,273.3,2.65,0,1005.008,14,6.85,13.69,21.33,1018.272
|
|
67
|
+
"2025-08-03 01:03:00",14.61,84,2.131,276.6,2.84,0,1005.1,14,6.85,13.66,21.32,1018.364
|
|
68
|
+
"2025-08-03 01:04:00",14.61,84,1.746,266.2,4.06,0,1005.1,13.99,6.85,13.68,21.31,1018.364
|
|
69
|
+
"2025-08-03 01:05:00",14.62,84,1.733,264.1,3.2,0,1005.1,13.99,6.85,13.65,21.31,1018.364
|
|
70
|
+
"2025-08-03 01:06:00",14.61,84,2.068,286.5,3.05,0,1005.1,13.98,6.86,13.66,21.3,1018.364
|
|
71
|
+
"2025-08-03 01:07:00",14.63,84,2.237,270,3.83,0,1005.1,13.98,6.85,13.66,21.3,1018.364
|
|
72
|
+
"2025-08-03 01:08:00",14.62,83.9,2.214,280.8,3.31,0,1005.1,13.97,6.86,13.67,21.3,1018.364
|
|
73
|
+
"2025-08-03 01:09:00",14.62,83.9,2.034,281.3,3.63,0,1005.1,13.97,6.85,13.65,21.29,1018.364
|
|
74
|
+
"2025-08-03 01:10:00",14.63,83.9,2.461,260.8,4.02,0,1005.1,13.96,6.85,13.66,21.28,1018.364
|
|
75
|
+
"2025-08-03 01:11:00",14.63,83.8,1.633,270.3,2.14,0,1005.1,13.96,6.85,13.68,21.28,1018.364
|
|
76
|
+
"2025-08-03 01:12:00",14.61,83.9,2.674,285.2,4.49,0,1005.1,13.95,6.86,13.63,21.27,1018.364
|
|
77
|
+
"2025-08-03 01:13:00",14.6,83.9,1.521,272.4,2.35,0,1005.1,13.95,6.85,13.68,21.27,1018.364
|
|
78
|
+
"2025-08-03 01:14:00",14.59,83.9,0.943,258.7,1.58,0,1005.117,13.95,6.85,13.68,21.27,1018.381
|
|
79
|
+
"2025-08-03 01:15:00",14.58,84.1,1.19,276.3,2.4,0,1005.2,13.95,6.86,13.7,21.26,1018.464
|
|
80
|
+
"2025-08-03 01:16:00",14.57,84.2,1.499,273.4,2.34,0,1005.2,13.94,6.86,13.69,21.26,1018.464
|
|
81
|
+
"2025-08-03 01:17:00",14.55,84.2,1.648,262,3.3,0,1005.2,13.94,6.85,13.68,21.26,1018.464
|
|
82
|
+
"2025-08-03 01:18:00",14.54,84.3,1.722,298.7,2.87,0,1005.2,13.93,6.84,13.68,21.25,1018.464
|
|
83
|
+
"2025-08-03 01:19:00",14.52,84.5,1.758,279.7,3.51,0,1005.2,13.93,6.86,13.7,21.25,1018.464
|
|
84
|
+
"2025-08-03 01:20:00",14.53,84.5,1.817,281.5,2.83,0,1005.2,13.92,6.86,13.65,21.25,1018.464
|
|
85
|
+
"2025-08-03 01:21:00",14.52,84.4,1.601,269.9,1.96,0,1005.2,13.92,6.85,13.64,21.24,1018.464
|
|
86
|
+
"2025-08-03 01:22:00",14.51,84.5,2.529,265.3,3.68,0,1005.2,13.92,6.85,13.63,21.25,1018.464
|
|
87
|
+
"2025-08-03 01:23:00",14.51,84.6,1.843,275.6,2.74,0,1005.2,13.91,6.85,13.64,21.24,1018.464
|
|
88
|
+
"2025-08-03 01:24:00",14.52,84.6,1.719,276.5,3.23,0,1005.2,13.91,6.85,13.67,21.23,1018.464
|
|
89
|
+
"2025-08-03 01:25:00",14.52,84.4,2.366,256.1,4.04,0,1005.2,13.91,6.85,13.63,21.23,1018.464
|
|
90
|
+
"2025-08-03 01:26:00",14.52,84.5,1.907,280.1,2.76,0,1005.2,13.9,6.85,13.66,21.23,1018.464
|
|
91
|
+
"2025-08-03 01:27:00",14.51,84.5,2.294,279.7,3.61,0,1005.2,13.9,6.86,13.7,21.23,1018.464
|
|
92
|
+
"2025-08-03 01:28:00",14.5,84.5,1.818,269.4,4.09,0,1005.2,13.89,6.85,13.72,21.22,1018.464
|
|
93
|
+
"2025-08-03 01:29:00",14.49,84.6,2.138,272.2,3.1,0,1005.2,13.89,6.86,13.78,21.23,1018.464
|
|
94
|
+
"2025-08-03 01:30:00",14.51,84.5,1.899,262.7,2.39,0,1005.2,13.89,6.86,13.77,21.22,1018.464
|
|
95
|
+
"2025-08-03 01:31:00",14.51,84.6,1.588,265.5,2.64,0,1005.2,13.88,6.86,13.7,21.21,1018.464
|
|
96
|
+
"2025-08-03 01:32:00",14.48,84.5,1.986,268.3,3.08,0,1005.2,13.88,6.86,13.69,21.21,1018.464
|
|
97
|
+
"2025-08-03 01:33:00",14.47,84.6,1.431,277.1,2.02,0,1005.2,13.88,6.85,13.69,21.21,1018.464
|
|
98
|
+
"2025-08-03 01:34:00",14.45,84.7,1.406,293.2,2.3,0,1005.2,13.87,6.85,13.66,21.2,1018.464
|
|
99
|
+
"2025-08-03 01:35:00",14.44,84.8,1.1,272.8,2.37,0,1005.2,13.87,6.85,13.67,21.2,1018.464
|
|
100
|
+
"2025-08-03 01:36:00",14.44,84.7,1.165,252,2.24,0,1005.2,13.86,6.86,13.67,21.2,1018.464
|
|
101
|
+
"2025-08-03 01:37:00",14.43,84.8,0.973,268.3,1.73,0,1005.2,13.85,6.85,13.68,21.19,1018.464
|
|
102
|
+
"2025-08-03 01:38:00",14.43,84.8,1.43,277.5,1.92,0,1005.2,13.85,6.85,13.7,21.18,1018.464
|
|
103
|
+
"2025-08-03 01:39:00",14.42,84.8,1.52,275,2.96,0,1005.2,13.85,6.85,13.7,21.18,1018.464
|
|
104
|
+
"2025-08-03 01:40:00",14.42,84.8,1.642,276.2,2.62,0,1005.2,13.84,6.85,13.67,21.17,1018.464
|
|
105
|
+
"2025-08-03 01:41:00",14.42,84.8,1.477,284.9,2.43,0,1005.15,13.83,6.85,13.7,21.17,1018.414
|
|
106
|
+
"2025-08-03 01:42:00",14.41,84.7,1.596,277.3,2.56,0,1005.1,13.82,6.86,13.67,21.16,1018.364
|
|
107
|
+
"2025-08-03 01:43:00",14.4,84.8,1.498,255.7,2.37,0,1005.1,13.82,6.85,13.69,21.16,1018.364
|
|
108
|
+
"2025-08-03 01:44:00",14.39,84.9,1.927,270.8,2.89,0,1005.1,13.81,6.84,13.7,21.15,1018.364
|
|
109
|
+
"2025-08-03 01:45:00",14.39,84.9,1.793,265.4,2.65,0,1005.1,13.8,6.85,13.73,21.15,1018.364
|
|
110
|
+
"2025-08-03 01:46:00",14.39,84.9,1.395,280.7,2.26,0,1005.1,13.79,6.86,13.76,21.14,1018.364
|
|
111
|
+
"2025-08-03 01:47:00",14.38,85,1.718,280.1,2.73,0,1005.1,13.79,6.86,13.67,21.14,1018.364
|
|
112
|
+
"2025-08-03 01:48:00",14.37,84.9,1.477,272.3,2.92,0,1005.1,13.78,6.85,13.64,21.12,1018.364
|
|
113
|
+
"2025-08-03 01:49:00",14.37,84.9,1.653,272.3,2.99,0,1005.1,13.77,6.86,13.67,21.12,1018.364
|
|
114
|
+
"2025-08-03 01:50:00",14.36,85,1.942,269,2.87,0,1005.1,13.76,6.85,13.64,21.11,1018.364
|
|
115
|
+
"2025-08-03 01:51:00",14.35,85,2.983,264.1,4,0,1005.1,13.75,6.85,13.63,21.1,1018.364
|
|
116
|
+
"2025-08-03 01:52:00",14.36,85,1.779,278.6,2.9,0,1005.1,13.75,6.86,13.66,21.1,1018.364
|
|
117
|
+
"2025-08-03 01:53:00",14.36,85,2.565,265.6,3.84,0,1005.1,13.74,6.85,13.71,21.09,1018.364
|
|
118
|
+
"2025-08-03 01:54:00",14.36,85,2.192,272.9,3.1,0,1005.1,13.73,6.86,13.74,21.08,1018.364
|
|
119
|
+
"2025-08-03 01:55:00",14.37,84.9,2.606,288,3.44,0,1005.1,13.72,6.85,13.7,21.08,1018.364
|
|
120
|
+
"2025-08-03 01:56:00",14.36,84.9,1.896,281.9,3.28,0,1005.1,13.71,6.85,13.73,21.07,1018.364
|
|
121
|
+
"2025-08-03 01:57:00",14.37,84.9,2.623,266.5,3.63,0,1005.1,13.71,6.86,13.71,21.06,1018.364
|
|
122
|
+
"2025-08-03 01:58:00",14.35,84.9,1.695,267.8,2.68,0,1005.1,13.7,6.86,13.69,21.05,1018.364
|
|
123
|
+
"2025-08-03 01:59:00",14.35,84.9,1.358,266.2,2.46,0,1005.1,13.69,6.86,13.75,21.05,1018.364
|
|
124
|
+
"2025-08-03 02:00:00",14.35,84.9,1.772,262,3.06,0,1005.1,13.69,6.85,13.73,21.05,1018.364
|
|
125
|
+
"2025-08-03 02:01:00",14.34,85,1.361,301.5,2.4,0,1005.1,13.68,6.85,13.68,21.04,1018.364
|
|
126
|
+
"2025-08-03 02:02:00",14.34,85,1.183,281,2.19,0,1005.1,13.67,6.86,13.72,21.03,1018.364
|
|
127
|
+
"2025-08-03 02:03:00",14.34,85.1,1.968,281.8,2.78,0,1005.1,13.67,6.85,13.7,21.03,1018.364
|
|
128
|
+
"2025-08-03 02:04:00",14.34,85,1.987,269.4,3.33,0,1005.1,13.66,6.86,13.66,21.02,1018.364
|
|
129
|
+
"2025-08-03 02:05:00",14.33,85,0.875,246.1,1.87,0,1005.1,13.66,6.85,13.64,21.01,1018.364
|
|
130
|
+
"2025-08-03 02:06:00",14.32,85,1.907,291.4,3.02,0,1005.1,13.65,6.85,13.66,21.01,1018.364
|
|
131
|
+
"2025-08-03 02:07:00",14.32,84.9,1.066,274.9,1.54,0,1005.1,13.65,6.85,13.67,21.01,1018.364
|
|
132
|
+
"2025-08-03 02:08:00",14.31,85,1.928,271,2.52,0,1005.108,13.64,6.85,13.7,21.01,1018.372
|
|
133
|
+
"2025-08-03 02:09:00",14.31,85,1.439,282.5,2.42,0,1005.2,13.63,6.85,13.72,21,1018.464
|
|
134
|
+
"2025-08-03 02:10:00",14.31,85,1.746,271.3,2.61,0,1005.2,13.63,6.85,13.73,21,1018.464
|
|
135
|
+
"2025-08-03 02:11:00",14.31,84.9,2.094,267.7,3.63,0,1005.2,13.63,6.85,13.71,21,1018.464
|
|
136
|
+
"2025-08-03 02:12:00",14.32,84.9,2.125,278,4.47,0,1005.192,13.62,6.86,13.71,20.99,1018.456
|
|
137
|
+
"2025-08-03 02:13:00",14.32,84.7,2.633,263.2,3.73,0,1005.175,13.62,6.85,13.77,20.98,1018.439
|
|
138
|
+
"2025-08-03 02:14:00",14.33,84.7,1.881,272,2.59,0,1005.2,13.61,6.86,13.79,20.99,1018.464
|
|
139
|
+
"2025-08-03 02:15:00",14.34,84.6,1.587,270.2,2.87,0,1005.2,13.61,6.85,13.79,20.98,1018.464
|
|
140
|
+
"2025-08-03 02:16:00",14.34,84.6,2.631,270.6,3.87,0,1005.2,13.61,6.86,13.72,20.97,1018.464
|
|
141
|
+
"2025-08-03 02:17:00",14.35,84.5,1.469,265.7,2,0,1005.2,13.6,6.86,13.71,20.97,1018.464
|
|
142
|
+
"2025-08-03 02:18:00",14.34,84.5,1.73,275,2.83,0,1005.2,13.6,6.86,13.74,20.97,1018.464
|
|
143
|
+
"2025-08-03 02:19:00",14.33,84.6,2.388,266.3,3.26,0,1005.2,13.6,6.86,13.79,20.97,1018.464
|
|
144
|
+
"2025-08-03 02:20:00",14.31,84.6,1.48,249.4,2.36,0,1005.2,13.59,6.86,13.79,20.96,1018.464
|
|
145
|
+
"2025-08-03 02:21:00",14.32,84.6,1.581,279.1,2.66,0,1005.2,13.59,6.86,13.79,20.97,1018.464
|
|
146
|
+
"2025-08-03 02:22:00",14.31,84.6,1.673,273.4,2.61,0,1005.2,13.59,6.86,13.73,20.96,1018.464
|
|
147
|
+
"2025-08-03 02:23:00",14.31,84.6,1.419,271.1,2.34,0,1005.2,13.59,6.86,13.7,20.96,1018.464
|
|
148
|
+
"2025-08-03 02:24:00",14.3,84.6,1.864,274.3,3.51,0,1005.2,13.58,6.87,13.71,20.96,1018.464
|
|
149
|
+
"2025-08-03 02:25:00",14.3,84.6,2.063,271.2,2.8,0,1005.208,13.58,6.86,13.75,20.96,1018.472
|
|
150
|
+
"2025-08-03 02:26:00",14.3,84.6,1.339,279.6,1.95,0,1005.3,13.58,6.87,13.71,20.95,1018.564
|
|
151
|
+
"2025-08-03 02:27:00",14.29,84.5,2.069,276,3.49,0,1005.217,13.58,6.85,13.65,20.95,1018.481
|
|
152
|
+
"2025-08-03 02:28:00",14.29,84.6,1.953,282.3,3.53,0,1005.2,13.57,6.85,13.68,20.95,1018.464
|
|
153
|
+
"2025-08-03 02:29:00",14.29,84.6,1.119,294.7,1.78,0,1005.2,13.57,6.85,13.73,20.95,1018.464
|
|
154
|
+
"2025-08-03 02:30:00",14.28,84.6,1.698,249.4,3.82,0,1005.2,13.57,6.86,13.72,20.94,1018.464
|
|
155
|
+
"2025-08-03 02:31:00",14.28,84.6,1.713,284.1,2.17,0,1005.2,13.56,6.85,13.69,20.94,1018.464
|
|
156
|
+
"2025-08-03 02:32:00",14.27,84.7,1.589,286.3,2.9,0,1005.2,13.56,6.86,13.72,20.94,1018.464
|
|
157
|
+
"2025-08-03 02:33:00",14.26,84.7,2.123,270.5,3.24,0,1005.2,13.56,6.86,13.68,20.94,1018.464
|
|
158
|
+
"2025-08-03 02:34:00",14.27,84.6,1.857,262.4,3.35,0,1005.2,13.56,6.86,13.63,20.92,1018.464
|
|
159
|
+
"2025-08-03 02:35:00",14.26,84.7,1.417,259.2,2.32,0,1005.3,13.55,6.86,13.65,20.93,1018.564
|
|
160
|
+
"2025-08-03 02:36:00",14.25,84.7,1.785,270.5,2.58,0,1005.3,13.55,6.86,13.65,20.93,1018.564
|
|
161
|
+
"2025-08-03 02:37:00",14.26,84.7,1.648,275.5,3.01,0,1005.242,13.55,6.86,13.65,20.93,1018.506
|
|
162
|
+
"2025-08-03 02:38:00",14.25,84.7,1.929,259.1,3.59,0,1005.2,13.55,6.87,13.69,20.93,1018.464
|
|
163
|
+
"2025-08-03 02:39:00",14.24,84.8,2.968,268.7,4.01,0,1005.2,13.54,6.86,13.69,20.92,1018.464
|
|
164
|
+
"2025-08-03 02:40:00",14.26,84.7,1.868,281,2.98,0,1005.2,13.54,6.86,13.68,20.92,1018.464
|
|
165
|
+
"2025-08-03 02:41:00",14.27,84.6,1.881,273.6,2.49,0,1005.2,13.54,6.86,13.63,20.92,1018.464
|
|
166
|
+
"2025-08-03 02:42:00",14.28,84.6,1.556,273.5,2.7,0,1005.2,13.54,6.86,13.68,20.92,1018.464
|
|
167
|
+
"2025-08-03 02:43:00",14.27,84.7,1.836,271.2,2.87,0,1005.2,13.54,6.85,13.67,20.92,1018.464
|
|
168
|
+
"2025-08-03 02:44:00",14.28,84.6,1.781,271.5,2.61,0,1005.2,13.54,6.86,13.69,20.92,1018.464
|
|
169
|
+
"2025-08-03 02:45:00",14.28,84.5,2.482,270,4.03,0,1005.2,13.53,6.85,13.64,20.92,1018.464
|
|
170
|
+
"2025-08-03 02:46:00",14.27,84.5,1.968,258.7,3.69,0,1005.2,13.53,6.86,13.66,20.91,1018.464
|
|
171
|
+
"2025-08-03 02:47:00",14.28,84.6,1.627,282.6,2.64,0,1005.2,13.54,6.86,13.7,20.91,1018.464
|
|
172
|
+
"2025-08-03 02:48:00",14.29,84.5,2.05,272.1,3.26,0,1005.2,13.54,6.86,13.65,20.92,1018.464
|
|
173
|
+
"2025-08-03 02:49:00",14.28,84.4,1.703,272.6,2.31,0,1005.2,13.53,6.86,13.69,20.92,1018.464
|
|
174
|
+
"2025-08-03 02:50:00",14.28,84.5,1.774,280.2,2.83,0,1005.2,13.53,6.85,13.68,20.92,1018.464
|
|
175
|
+
"2025-08-03 02:51:00",14.28,84.5,1.826,263.6,3.41,0,1005.125,13.53,6.86,13.71,20.92,1018.389
|
|
176
|
+
"2025-08-03 02:52:00",14.26,84.5,2.181,266.5,3.17,0,1005.1,13.53,6.86,13.71,20.91,1018.364
|
|
177
|
+
"2025-08-03 02:53:00",14.26,84.5,1.498,280.3,2.54,0,1005.1,13.53,6.86,13.74,20.91,1018.364
|
|
178
|
+
"2025-08-03 02:54:00",14.25,84.7,2.107,274.8,3.81,0,1005.1,13.53,6.86,13.75,20.91,1018.364
|
|
179
|
+
"2025-08-03 02:55:00",14.25,84.7,1.83,295.2,3,0,1005.1,13.52,6.86,13.74,20.91,1018.364
|
|
180
|
+
"2025-08-03 02:56:00",14.26,84.7,3.096,274.4,4.5,0,1005.1,13.52,6.86,13.75,20.91,1018.364
|
|
181
|
+
"2025-08-03 02:57:00",14.29,84.5,1.8,254.4,2.93,0,1005.1,13.52,6.86,13.69,20.91,1018.364
|
|
182
|
+
"2025-08-03 02:58:00",14.29,84.4,2.884,277.3,3.64,0,1005.1,13.52,6.85,13.66,20.91,1018.364
|
|
183
|
+
"2025-08-03 02:59:00",14.3,84.4,1.758,274.7,2.7,0,1005.1,13.52,6.85,13.68,20.9,1018.364
|
|
184
|
+
"2025-08-03 03:00:00",14.29,84.3,1.528,284.9,3.42,0,1005.1,13.52,6.85,13.72,20.9,1018.364
|
|
185
|
+
"2025-08-03 03:01:00",14.28,84.4,1.262,254.7,2.33,0,1005.1,13.52,6.85,13.75,20.9,1018.364
|
|
186
|
+
"2025-08-03 03:02:00",14.27,84.4,1.447,285,2.39,0,1005.1,13.52,6.86,13.71,20.9,1018.364
|
|
187
|
+
"2025-08-03 03:03:00",14.26,84.4,2.247,267.5,3.66,0,1005.1,13.52,6.86,13.69,20.89,1018.364
|
|
188
|
+
"2025-08-03 03:04:00",14.26,84.4,1.146,250.7,2.28,0,1005.1,13.51,6.86,13.68,20.9,1018.364
|
|
189
|
+
"2025-08-03 03:05:00",14.24,84.4,1.741,280.1,2.79,0,1005.1,13.51,6.85,13.65,20.89,1018.364
|
|
190
|
+
"2025-08-03 03:06:00",14.23,84.5,2.153,269.1,3.6,0,1005.1,13.51,6.86,13.66,20.89,1018.364
|
|
191
|
+
"2025-08-03 03:07:00",14.22,84.5,2.653,259,3.43,0,1005.1,13.51,6.85,13.69,20.89,1018.364
|
|
192
|
+
"2025-08-03 03:08:00",14.23,84.5,1.103,277.2,1.89,0,1005.1,13.51,6.86,13.67,20.89,1018.364
|
|
193
|
+
"2025-08-03 03:09:00",14.22,84.5,1.703,264.1,3.04,0,1005.1,13.51,6.85,13.66,20.89,1018.364
|
|
194
|
+
"2025-08-03 03:10:00",14.21,84.5,1.664,254.7,3,0,1005.1,13.51,6.85,13.65,20.89,1018.364
|
|
195
|
+
"2025-08-03 03:11:00",14.22,84.5,1.757,274.4,2.85,0,1005.1,13.5,6.85,13.65,20.89,1018.364
|
|
196
|
+
"2025-08-03 03:12:00",14.21,84.5,1.583,259.3,2.93,0,1005.1,13.5,6.86,13.64,20.88,1018.364
|
|
197
|
+
"2025-08-03 03:13:00",14.2,84.5,1.424,281.1,2.38,0,1005.1,13.5,6.86,13.68,20.88,1018.364
|
|
198
|
+
"2025-08-03 03:14:00",14.2,84.4,2.101,277.6,3.06,0,1005.1,13.5,6.86,13.65,20.88,1018.364
|
|
199
|
+
"2025-08-03 03:15:00",14.2,84.3,2.167,282.1,3.03,0,1005.1,13.49,6.86,13.66,20.88,1018.364
|
|
200
|
+
"2025-08-03 03:16:00",14.2,84.3,1.216,282.6,2.36,0,1005.1,13.49,6.85,13.66,20.88,1018.364
|
|
201
|
+
"2025-08-03 03:17:00",14.2,84.3,1.237,266.8,1.97,0,1005.1,13.49,6.86,13.64,20.87,1018.364
|
|
202
|
+
"2025-08-03 03:18:00",14.2,84.3,1.666,263.2,2.24,0,1005.1,13.49,6.86,13.68,20.88,1018.364
|
|
203
|
+
"2025-08-03 03:19:00",14.19,84.3,1.801,270.8,2.8,0,1005.1,13.49,6.85,13.7,20.88,1018.364
|
|
204
|
+
"2025-08-03 03:20:00",14.19,84.2,2.157,269.5,2.94,0,1005.1,13.48,6.86,13.69,20.88,1018.364
|
|
205
|
+
"2025-08-03 03:21:00",14.2,84.1,1.988,279.1,2.91,0,1005.1,13.48,6.85,13.68,20.87,1018.364
|
|
206
|
+
"2025-08-03 03:22:00",14.21,84.1,1.793,285.1,2.88,0,1005.1,13.48,6.85,13.7,20.87,1018.364
|
|
207
|
+
"2025-08-03 03:23:00",14.21,84,1.938,268.8,3.19,0,1005.1,13.49,6.85,13.67,20.87,1018.364
|
|
208
|
+
"2025-08-03 03:24:00",14.22,83.9,1.867,272.3,3.03,0,1005.1,13.48,6.86,13.68,20.87,1018.364
|
|
209
|
+
"2025-08-03 03:25:00",14.22,83.8,1.702,278.6,2.6,0,1005.1,13.48,6.85,13.63,20.87,1018.364
|
|
210
|
+
"2025-08-03 03:26:00",14.21,83.9,1.775,276.9,2.58,0,1005.1,13.48,6.84,13.61,20.87,1018.364
|
|
211
|
+
"2025-08-03 03:27:00",14.21,83.8,2.623,258.8,3.76,0,1005.1,13.48,6.85,13.62,20.86,1018.364
|
|
212
|
+
"2025-08-03 03:28:00",14.22,83.7,1.525,266.9,3.17,0,1005.1,13.48,6.86,13.66,20.86,1018.364
|
|
213
|
+
"2025-08-03 03:29:00",14.24,83.6,2.017,262.9,3.42,0,1005.1,13.48,6.86,13.66,20.86,1018.364
|
|
214
|
+
"2025-08-03 03:30:00",14.24,83.6,1.566,280,2.23,0,1005.1,13.48,6.86,13.65,20.87,1018.364
|
|
215
|
+
"2025-08-03 03:31:00",14.25,83.6,0.976,248.2,1.86,0,1005.1,13.49,6.86,13.67,20.87,1018.364
|
|
216
|
+
"2025-08-03 03:32:00",14.24,83.5,1.234,294.3,2.09,0,1005.1,13.49,6.86,13.72,20.87,1018.364
|
|
217
|
+
"2025-08-03 03:33:00",14.24,83.6,1.611,267.4,2.58,0,1005.1,13.49,6.86,13.7,20.87,1018.364
|
|
218
|
+
"2025-08-03 03:34:00",14.24,83.4,2.203,264.4,3.28,0,1005.1,13.49,6.86,13.73,20.87,1018.364
|
|
219
|
+
"2025-08-03 03:35:00",14.24,83.4,1.88,271.6,3.29,0,1005.1,13.49,6.86,13.7,20.88,1018.364
|
|
220
|
+
"2025-08-03 03:36:00",14.25,83.2,1.98,258.7,2.7,0,1005.1,13.49,6.86,13.72,20.87,1018.364
|
|
221
|
+
"2025-08-03 03:37:00",14.27,83.1,1.576,271.5,2.15,0,1005.1,13.49,6.86,13.72,20.87,1018.364
|
|
222
|
+
"2025-08-03 03:38:00",14.27,83,2.127,272.6,2.97,0,1005.1,13.49,6.86,13.7,20.87,1018.364
|
|
223
|
+
"2025-08-03 03:39:00",14.27,82.9,1.432,286,2.36,0,1005.1,13.49,6.87,13.68,20.87,1018.364
|
|
224
|
+
"2025-08-03 03:40:00",14.25,83,1.115,258.7,1.65,0,1005.1,13.49,6.86,13.66,20.87,1018.364
|
|
225
|
+
"2025-08-03 03:41:00",14.24,83,1.61,281.4,1.94,0,1005.1,13.5,6.85,13.69,20.88,1018.364
|
|
226
|
+
"2025-08-03 03:42:00",14.24,83,1.366,253,1.92,0,1005.1,13.49,6.87,13.67,20.88,1018.364
|
|
227
|
+
"2025-08-03 03:43:00",14.24,83,1.386,286.5,2.15,0,1005.1,13.5,6.86,13.68,20.88,1018.364
|
|
228
|
+
"2025-08-03 03:44:00",14.23,82.9,1.429,275,2.68,0,1005.1,13.5,6.86,13.71,20.88,1018.364
|
|
229
|
+
"2025-08-03 03:45:00",14.22,82.9,1.257,257.7,2.96,0,1005.1,13.49,6.85,13.71,20.88,1018.364
|
|
230
|
+
"2025-08-03 03:46:00",14.23,82.9,2,238,3.27,0,1005.1,13.49,6.85,13.67,20.88,1018.364
|
|
231
|
+
"2025-08-03 03:47:00",14.24,82.9,1.104,277.5,1.48,0,1005.1,13.49,6.86,13.72,20.88,1018.364
|
|
232
|
+
"2025-08-03 03:48:00",14.24,82.9,0.856,246.8,2.03,0,1005.1,13.5,6.85,13.71,20.88,1018.364
|
|
233
|
+
"2025-08-03 03:49:00",14.24,82.8,2.062,273.1,2.46,0,1005.1,13.49,6.85,13.71,20.88,1018.364
|
|
234
|
+
"2025-08-03 03:50:00",14.25,82.6,1.32,296.9,2.35,0,1005.1,13.49,6.86,13.74,20.87,1018.364
|
|
235
|
+
"2025-08-03 03:51:00",14.24,82.6,1.032,264.3,1.73,0,1005.1,13.49,6.85,13.74,20.87,1018.364
|
|
236
|
+
"2025-08-03 03:52:00",14.25,82.6,0.884,266.1,1.54,0,1005.1,13.49,6.85,13.69,20.87,1018.364
|
|
237
|
+
"2025-08-03 03:53:00",14.25,82.7,1.125,244.2,2.71,0,1005.1,13.49,6.85,13.7,20.87,1018.364
|
|
238
|
+
"2025-08-03 03:54:00",14.24,82.6,1.857,275.5,3.34,0,1005.1,13.49,6.86,13.76,20.87,1018.364
|
|
239
|
+
"2025-08-03 03:55:00",14.24,82.4,1.834,283.5,2.58,0,1005.1,13.49,6.85,13.8,20.87,1018.364
|
|
240
|
+
"2025-08-03 03:56:00",14.24,82.4,1.899,270.1,3.04,0,1005.1,13.49,6.86,13.79,20.87,1018.364
|
|
241
|
+
"2025-08-03 03:57:00",14.26,82.3,1.058,263.5,2.17,0,1005.1,13.48,6.86,13.77,20.86,1018.364
|
|
242
|
+
"2025-08-03 03:58:00",14.25,82.2,1.592,282.3,2.33,0,1005.1,13.48,6.86,13.74,20.86,1018.364
|
|
243
|
+
"2025-08-03 03:59:00",14.25,82.3,1.004,269.8,1.96,0,1005.1,13.48,6.86,13.69,20.87,1018.364
|
|
244
|
+
"2025-08-03 04:00:00",14.24,82.3,1.374,278,2.15,0,1005.1,13.48,6.86,13.65,20.86,1018.364
|
|
245
|
+
"2025-08-03 04:01:00",14.24,82.2,1.416,270.8,2.08,0,1005.183,13.48,6.86,13.65,20.86,1018.447
|
|
246
|
+
"2025-08-03 04:02:00",14.24,82.1,2.147,270.4,2.96,0,1005.158,13.48,6.85,13.67,20.86,1018.422
|
|
247
|
+
"2025-08-03 04:03:00",14.24,82.1,1.474,279.5,2.99,0,1005.15,13.48,6.86,13.68,20.86,1018.414
|
|
248
|
+
"2025-08-03 04:04:00",14.26,82,1.677,276.3,2.93,0,1005.2,13.48,6.85,13.73,20.86,1018.464
|
|
249
|
+
"2025-08-03 04:05:00",14.26,82,2.059,279.5,3.01,0,1005.2,13.48,6.84,13.73,20.86,1018.464
|
|
250
|
+
"2025-08-03 04:06:00",14.27,81.7,1.548,280.3,2.12,0,1005.2,13.48,6.86,13.71,20.87,1018.464
|
|
251
|
+
"2025-08-03 04:07:00",14.27,81.8,1.703,265.3,2.82,0,1005.2,13.48,6.86,13.66,20.86,1018.464
|
|
252
|
+
"2025-08-03 04:08:00",14.28,81.8,1.25,242.9,2.39,0,1005.2,13.48,6.86,13.67,20.86,1018.464
|
|
253
|
+
"2025-08-03 04:09:00",14.27,81.8,1.196,262.2,3.59,0,1005.2,13.48,6.85,13.67,20.86,1018.464
|
|
254
|
+
"2025-08-03 04:10:00",14.27,81.7,1.473,287.6,2.11,0,1005.2,13.48,6.86,13.63,20.86,1018.464
|
|
255
|
+
"2025-08-03 04:11:00",14.26,81.7,1.74,270.7,3,0,1005.2,13.48,6.86,13.67,20.86,1018.464
|
|
256
|
+
"2025-08-03 04:12:00",14.27,81.6,1.353,263.6,2.16,0,1005.2,13.48,6.86,13.69,20.86,1018.464
|
|
257
|
+
"2025-08-03 04:13:00",14.27,81.6,1.38,261.5,2.36,0,1005.133,13.48,6.86,13.7,20.87,1018.397
|
|
258
|
+
"2025-08-03 04:14:00",14.26,81.6,1.654,268.6,2.16,0,1005.15,13.48,6.86,13.75,20.87,1018.414
|
|
259
|
+
"2025-08-03 04:15:00",14.26,81.4,1.585,238.6,3.85,0,1005.1,13.48,6.86,13.74,20.86,1018.364
|
|
260
|
+
"2025-08-03 04:16:00",14.26,81.4,1.818,263.6,2.41,0,1005.1,13.48,6.86,13.7,20.87,1018.364
|
|
261
|
+
"2025-08-03 04:17:00",14.27,81.4,1.462,271.9,1.93,0,1005.1,13.48,6.86,13.67,20.87,1018.364
|
|
262
|
+
"2025-08-03 04:18:00",14.28,81.4,1.304,272.9,1.79,0,1005.1,13.48,6.86,13.67,20.86,1018.364
|
|
263
|
+
"2025-08-03 04:19:00",14.27,81.4,1.395,285.4,2.5,0,1005.1,13.49,6.86,13.68,20.87,1018.364
|
|
264
|
+
"2025-08-03 04:20:00",14.27,81.2,1.481,273.3,2.24,0,1005.1,13.49,6.86,13.67,20.87,1018.364
|
|
265
|
+
"2025-08-03 04:21:00",14.28,81.3,2.448,275.6,3.73,0,1005.1,13.49,6.86,13.66,20.87,1018.364
|
|
266
|
+
"2025-08-03 04:22:00",14.29,81.1,1.513,285.4,2.09,0,1005.1,13.49,6.86,13.69,20.86,1018.364
|
|
267
|
+
"2025-08-03 04:23:00",14.3,80.9,1.078,277.6,1.85,0,1005.1,13.49,6.85,13.71,20.87,1018.364
|
|
268
|
+
"2025-08-03 04:24:00",14.31,81,1.972,272.6,3.07,0,1005.1,13.49,6.86,13.7,20.87,1018.364
|
|
269
|
+
"2025-08-03 04:25:00",14.31,80.9,1.133,271.7,2.2,0,1005.1,13.49,6.85,13.74,20.87,1018.364
|
|
270
|
+
"2025-08-03 04:26:00",14.3,81,0.825,253.1,1.37,0,1005.1,13.49,6.85,13.74,20.87,1018.364
|
|
271
|
+
"2025-08-03 04:27:00",14.29,81,1.605,285,2.43,0,1005.1,13.5,6.86,13.76,20.88,1018.364
|
|
272
|
+
"2025-08-03 04:28:00",14.28,81,1.483,269.3,2.48,0,1005.1,13.5,6.86,13.76,20.87,1018.364
|
|
273
|
+
"2025-08-03 04:29:00",14.27,81,1.184,279.3,1.67,0,1005.1,13.5,6.87,13.72,20.87,1018.364
|
|
274
|
+
"2025-08-03 04:30:00",14.27,81.1,1.481,269.5,2.64,0,1005.1,13.5,6.86,13.75,20.87,1018.364
|
|
275
|
+
"2025-08-03 04:31:00",14.26,80.9,1.184,254.5,2.15,0,1005.1,13.5,6.86,13.72,20.87,1018.364
|
|
276
|
+
"2025-08-03 04:32:00",14.26,80.9,1.023,241.8,1.69,0,1005.1,13.5,6.86,13.74,20.87,1018.364
|
|
277
|
+
"2025-08-03 04:33:00",14.26,80.9,0.448,201,1.11,0,1005.067,13.49,6.86,13.74,20.87,1018.331
|
|
278
|
+
"2025-08-03 04:34:00",14.25,81,1.238,280.2,2.27,0,1005,13.49,6.86,13.77,20.87,1018.264
|
|
279
|
+
"2025-08-03 04:35:00",14.25,81,1.053,258.8,1.53,0,1005,13.49,6.85,13.76,20.87,1018.264
|
|
280
|
+
"2025-08-03 04:36:00",14.24,81,1.336,294.6,2.81,0,1005,13.5,6.85,13.75,20.87,1018.264
|
|
281
|
+
"2025-08-03 04:37:00",14.23,81,1.572,256,2.75,0,1005.075,13.49,6.86,13.75,20.86,1018.339
|
|
282
|
+
"2025-08-03 04:38:00",14.23,81,1.894,266.5,3.08,0,1005.1,13.49,6.86,13.68,20.86,1018.364
|
|
283
|
+
"2025-08-03 04:39:00",14.24,81,1.8,262.6,2.43,0,1005.1,13.49,6.86,13.72,20.86,1018.364
|
|
284
|
+
"2025-08-03 04:40:00",14.24,81,1.739,276.4,2.61,0,1005.1,13.49,6.87,13.72,20.86,1018.364
|
|
285
|
+
"2025-08-03 04:41:00",14.24,80.9,0.824,273.2,1.41,0,1005.1,13.49,6.86,13.68,20.86,1018.364
|
|
286
|
+
"2025-08-03 04:42:00",14.24,80.8,2.255,268.5,3.52,0,1005.1,13.49,6.86,13.74,20.86,1018.364
|
|
287
|
+
"2025-08-03 04:43:00",14.25,80.6,1.865,300.9,3.36,0,1005.1,13.49,6.86,13.71,20.86,1018.364
|
|
288
|
+
"2025-08-03 04:44:00",14.26,80.7,1.655,272.5,2.74,0,1005.1,13.49,6.85,13.71,20.86,1018.364
|
|
289
|
+
"2025-08-03 04:45:00",14.27,80.7,1.708,282.3,2.49,0,1005.1,13.49,6.86,13.66,20.86,1018.364
|
|
290
|
+
"2025-08-03 04:46:00",14.28,80.7,1.407,265.8,2.01,0,1005.1,13.49,6.85,13.63,20.86,1018.364
|
|
291
|
+
"2025-08-03 04:47:00",14.27,80.7,1.219,281.2,1.66,0,1005.1,13.49,6.85,13.66,20.87,1018.364
|
|
292
|
+
"2025-08-03 04:48:00",14.27,80.6,1.563,282.8,2.7,0,1005.1,13.49,6.85,13.69,20.87,1018.364
|
|
293
|
+
"2025-08-03 04:49:00",14.25,80.7,1.224,255.4,2.55,0,1005.1,13.5,6.86,13.71,20.87,1018.364
|
|
294
|
+
"2025-08-03 04:50:00",14.25,80.7,1.939,271.3,4.08,0,1005.1,13.5,6.85,13.66,20.88,1018.364
|
|
295
|
+
"2025-08-03 04:51:00",14.24,80.4,2.343,261.2,3.04,0,1005.1,13.51,6.84,13.66,20.88,1018.364
|
|
296
|
+
"2025-08-03 04:52:00",14.25,80.3,1.559,270.4,2.69,0,1005.1,13.51,6.86,13.62,20.88,1018.364
|
|
297
|
+
"2025-08-03 04:53:00",14.26,80.3,2.283,268.5,4.04,0,1005.1,13.51,6.86,13.65,20.89,1018.364
|
|
298
|
+
"2025-08-03 04:54:00",14.27,80.3,1.759,274.6,2.75,0,1005.1,13.51,6.85,13.66,20.89,1018.364
|
|
299
|
+
"2025-08-03 04:55:00",14.27,80.2,2.39,271.9,3.74,0,1005.1,13.52,6.86,13.69,20.89,1018.364
|
|
300
|
+
"2025-08-03 04:56:00",14.29,80.1,1.388,267.6,2.57,0,1005.1,13.52,6.85,13.73,20.9,1018.364
|
|
301
|
+
"2025-08-03 04:57:00",14.29,79.98,1.903,267.6,3.04,0,1005.15,13.53,6.85,13.7,20.9,1018.414
|
|
302
|
+
"2025-08-03 04:58:00",14.29,79.93,2.223,277.5,3.55,0,1005.2,13.53,6.85,13.69,20.9,1018.464
|
|
303
|
+
"2025-08-03 04:59:00",14.29,80,1.294,259,2.27,0,1005.2,13.54,6.87,13.66,20.91,1018.464
|
|
304
|
+
"2025-08-03 05:00:00",14.29,80,2.132,263.8,4.43,0,1005.2,13.54,6.86,13.64,20.91,1018.464
|
|
305
|
+
"2025-08-03 05:01:00",14.29,80,1.438,258.1,2.38,0,1005.2,13.55,6.86,13.64,20.92,1018.464
|
|
306
|
+
"2025-08-03 05:02:00",14.3,80,1.789,259.2,2.67,0,1005.2,13.55,6.86,13.65,20.92,1018.464
|
|
307
|
+
"2025-08-03 05:03:00",14.29,79.93,1.677,245.6,4.33,0,1005.2,13.56,6.86,13.65,20.93,1018.464
|
|
308
|
+
"2025-08-03 05:04:00",14.28,79.86,1.898,277.9,3.37,0,1005.2,13.56,6.86,13.65,20.93,1018.464
|
|
309
|
+
"2025-08-03 05:05:00",14.29,79.84,1.555,255.4,2.69,0,1005.2,13.57,6.87,13.63,20.93,1018.464
|
|
310
|
+
"2025-08-03 05:06:00",14.29,79.89,1.868,280.4,3.33,0,1005.267,13.57,6.86,13.62,20.94,1018.531
|
|
311
|
+
"2025-08-03 05:07:00",14.31,79.81,1.267,270,1.99,0,1005.3,13.58,6.86,13.65,20.95,1018.564
|
|
312
|
+
"2025-08-03 05:08:00",14.31,79.44,2.505,276.9,3.98,0,1005.3,13.58,6.85,13.66,20.95,1018.564
|
|
313
|
+
"2025-08-03 05:09:00",14.33,79.45,1.618,277.2,2.28,0,1005.3,13.59,6.86,13.64,20.95,1018.564
|
|
314
|
+
"2025-08-03 05:10:00",14.34,79.3,1.916,258.7,2.38,0,1005.3,13.59,6.86,13.66,20.96,1018.564
|
|
315
|
+
"2025-08-03 05:11:00",14.33,79.3,1.358,259.4,1.97,0,1005.275,13.6,6.86,13.66,20.96,1018.539
|
|
316
|
+
"2025-08-03 05:12:00",14.34,79.34,1.208,239.5,2.05,0,1005.2,13.61,6.86,13.66,20.96,1018.464
|
|
317
|
+
"2025-08-03 05:13:00",14.36,79.25,1.03,259.6,1.65,0,1005.2,13.61,6.85,13.67,20.98,1018.464
|
|
318
|
+
"2025-08-03 05:14:00",14.36,79.22,1.193,263.4,2.09,0,1005.2,13.62,6.86,13.65,20.99,1018.464
|
|
319
|
+
"2025-08-03 05:15:00",14.36,78.98,1.853,257.6,3.16,0,1005.2,13.63,6.86,13.69,20.99,1018.464
|
|
320
|
+
"2025-08-03 05:16:00",14.38,78.98,1.328,242.7,2.12,0,1005.2,13.63,6.86,13.66,20.99,1018.464
|
|
321
|
+
"2025-08-03 05:17:00",14.4,79.02,1.024,215.1,1.81,0,1005.2,13.64,6.86,13.66,21,1018.464
|
|
322
|
+
"2025-08-03 05:18:00",14.41,78.93,1.15,244.6,1.7,0,1005.2,13.65,6.86,13.69,21.01,1018.464
|
|
323
|
+
"2025-08-03 05:19:00",14.42,78.79,1.415,202.8,1.95,0,1005.2,13.66,6.85,13.71,21.01,1018.464
|
|
324
|
+
"2025-08-03 05:20:00",14.42,78.78,1.017,203.1,1.48,0,1005.2,13.67,6.86,13.7,21.02,1018.464
|
|
325
|
+
"2025-08-03 05:21:00",14.42,78.82,0.832,207.1,1.36,0,1005.2,13.68,6.85,13.67,21.03,1018.464
|
|
326
|
+
"2025-08-03 05:22:00",14.44,78.9,1.05,200.7,1.32,0,1005.2,13.69,6.85,13.7,21.03,1018.464
|
|
327
|
+
"2025-08-03 05:23:00",14.45,78.86,0.351,258,0.59,0,1005.2,13.7,6.86,13.72,21.04,1018.464
|
|
328
|
+
"2025-08-03 05:24:00",14.46,78.89,0.688,193.8,1.13,0,1005.2,13.71,6.85,13.72,21.05,1018.464
|
|
329
|
+
"2025-08-03 05:25:00",14.47,78.7,0.938,187.5,1.42,0,1005.2,13.72,6.86,13.67,21.06,1018.464
|
|
330
|
+
"2025-08-03 05:26:00",14.48,78.77,0.932,194.7,1.43,0,1005.2,13.73,6.85,13.7,21.07,1018.464
|
|
331
|
+
"2025-08-03 05:27:00",14.49,78.85,1.115,211.3,1.41,0,1005.2,13.74,6.86,13.68,21.08,1018.464
|
|
332
|
+
"2025-08-03 05:28:00",14.49,78.76,1.055,201.6,1.66,0,1005.2,13.76,6.85,13.72,21.1,1018.464
|
|
333
|
+
"2025-08-03 05:29:00",14.5,78.99,0.386,140.4,1.05,0,1005.2,13.77,6.86,13.69,21.11,1018.464
|
|
334
|
+
"2025-08-03 05:30:00",14.52,79.01,0.601,224,1.25,0,1005.258,13.8,6.85,13.7,21.12,1018.522
|
|
335
|
+
"2025-08-03 05:31:00",14.55,78.97,0.619,205.5,1.24,0,1005.3,13.81,6.86,13.69,21.15,1018.564
|
|
336
|
+
"2025-08-03 05:32:00",14.57,78.96,0.842,209.3,1.57,0,1005.3,13.83,6.85,13.71,21.16,1018.564
|
|
337
|
+
"2025-08-03 05:33:00",14.6,78.95,1.252,190.8,1.86,0,1005.3,13.85,6.86,13.69,21.17,1018.564
|
|
338
|
+
"2025-08-03 05:34:00",14.6,78.87,1.132,186.4,1.57,0,1005.3,13.87,6.85,13.7,21.19,1018.564
|
|
339
|
+
"2025-08-03 05:35:00",14.61,79.04,1.165,210.9,2.09,0,1005.3,13.9,6.86,13.68,21.21,1018.564
|
|
340
|
+
"2025-08-03 05:36:00",14.63,79.09,1.549,231.5,2.66,0,1005.3,13.92,6.86,13.7,21.23,1018.564
|
|
341
|
+
"2025-08-03 05:37:00",14.64,78.87,1.38,241,2.25,0,1005.3,13.94,6.87,13.73,21.25,1018.564
|
|
342
|
+
"2025-08-03 05:38:00",14.68,78.78,1.552,231.5,2.4,0,1005.3,13.97,6.86,13.69,21.27,1018.564
|
|
343
|
+
"2025-08-03 05:39:00",14.71,78.67,1.151,190.1,1.78,0,1005.3,13.99,6.87,13.74,21.29,1018.564
|
|
344
|
+
"2025-08-03 05:40:00",14.73,78.71,0.737,164.4,1.15,0,1005.3,14.02,6.86,13.73,21.31,1018.564
|
|
345
|
+
"2025-08-03 05:41:00",14.74,78.6,0.573,269.7,1.01,0,1005.3,14.05,6.86,13.67,21.34,1018.564
|
|
346
|
+
"2025-08-03 05:42:00",14.76,78.25,1.912,216.4,3.12,0,1005.3,14.08,6.86,13.73,21.37,1018.564
|
|
347
|
+
"2025-08-03 05:43:00",14.8,78.03,2.441,229,3.66,0,1005.3,14.11,6.86,13.75,21.4,1018.564
|
|
348
|
+
"2025-08-03 05:44:00",14.83,77.9,1.503,197.5,2.53,0,1005.3,14.15,6.86,13.78,21.42,1018.564
|
|
349
|
+
"2025-08-03 05:45:00",14.82,77.63,1.494,212.4,2.04,0,1005.3,14.18,6.86,13.71,21.44,1018.564
|
|
350
|
+
"2025-08-03 05:46:00",14.85,77.71,1.653,233.8,2.39,0,1005.3,14.21,6.86,13.72,21.47,1018.564
|
|
351
|
+
"2025-08-03 05:47:00",14.88,77.76,1.555,245.1,2.3,0,1005.3,14.24,6.86,13.75,21.51,1018.564
|
|
352
|
+
"2025-08-03 05:48:00",14.91,77.71,1.185,223.4,2.02,0,1005.3,14.27,6.86,13.71,21.53,1018.564
|
|
353
|
+
"2025-08-03 05:49:00",14.93,77.43,0.913,240.2,1.57,0,1005.325,14.31,6.85,13.72,21.56,1018.589
|
|
354
|
+
"2025-08-03 05:50:00",14.97,77.61,0.77,263,1.42,0,1005.4,14.34,6.86,13.73,21.59,1018.664
|
|
355
|
+
"2025-08-03 05:51:00",15,77.51,1.199,199.2,2.1,0,1005.3,14.37,6.86,13.75,21.62,1018.564
|
|
356
|
+
"2025-08-03 05:52:00",15.02,77.12,0.96,223.8,1.93,0,1005.3,14.4,6.86,13.73,21.64,1018.564
|
|
357
|
+
"2025-08-03 05:53:00",15.03,77.2,1.323,254,2.39,0,1005.383,14.43,6.86,13.75,21.66,1018.647
|
|
358
|
+
"2025-08-03 05:54:00",15.04,77.04,1.11,233.1,1.65,0,1005.4,14.46,6.86,13.76,21.69,1018.664
|
|
359
|
+
"2025-08-03 05:55:00",15.07,76.97,0.82,284.2,1.25,0,1005.4,14.49,6.85,13.76,21.72,1018.664
|
|
360
|
+
"2025-08-03 05:56:00",15.07,76.88,0.902,206.6,1.55,0,1005.4,14.52,6.85,13.74,21.74,1018.664
|
|
361
|
+
"2025-08-03 05:57:00",15.07,76.99,0.865,183.8,1.21,0,1005.4,14.54,6.85,13.71,21.76,1018.664
|
|
362
|
+
"2025-08-03 05:58:00",15.08,76.91,1.321,215,2.09,0,1005.4,14.57,6.85,13.73,21.79,1018.664
|
|
363
|
+
"2025-08-03 05:59:00",15.09,77.12,0.877,257.7,1.38,0,1005.4,14.6,6.85,13.75,21.81,1018.664
|
|
364
|
+
"2025-08-03 06:00:00",15.11,77.02,1.012,277.2,1.38,0,1005.4,14.62,6.86,13.77,21.82,1018.664
|
|
365
|
+
"2025-08-03 06:01:00",15.12,76.75,1.297,250.6,2.23,0,1005.4,14.65,6.85,13.78,21.85,1018.664
|
|
366
|
+
"2025-08-03 06:02:00",15.13,76.39,1.249,217.6,1.91,0,1005.4,14.67,6.84,13.77,21.86,1018.664
|
|
367
|
+
"2025-08-03 06:03:00",15.14,76.44,1.226,254.5,1.52,0,1005.4,14.69,6.87,13.79,21.88,1018.664
|
|
368
|
+
"2025-08-03 06:04:00",15.16,76.57,0.647,274.3,1.26,0,1005.4,14.71,6.86,13.72,21.9,1018.664
|
|
369
|
+
"2025-08-03 06:05:00",15.19,76.43,1.023,208.9,1.9,0,1005.4,14.73,6.86,13.7,21.92,1018.664
|
|
370
|
+
"2025-08-03 06:06:00",15.21,76.32,0.832,215.7,1.57,0,1005.4,14.76,6.85,13.69,21.93,1018.664
|
|
371
|
+
"2025-08-03 06:07:00",15.21,76.35,1.402,239.1,2.21,0,1005.4,14.78,6.86,13.72,21.95,1018.664
|
|
372
|
+
"2025-08-03 06:08:00",15.22,76.47,1.323,207.6,2.44,0,1005.4,14.8,6.86,13.72,21.97,1018.664
|
|
373
|
+
"2025-08-03 06:09:00",15.25,76.1,1.858,258.3,2.92,0,1005.4,14.82,6.86,13.72,21.99,1018.664
|
|
374
|
+
"2025-08-03 06:10:00",15.29,76.04,0.968,235.6,1.35,0,1005.442,14.84,6.86,13.71,22.01,1018.706
|
|
375
|
+
"2025-08-03 06:11:00",15.34,76.04,0.443,263,0.97,0,1005.5,14.86,6.86,13.74,22.03,1018.764
|
|
376
|
+
"2025-08-03 06:12:00",15.37,75.63,1.024,246.5,1.68,0,1005.5,14.89,6.87,13.69,22.05,1018.764
|
|
377
|
+
"2025-08-03 06:13:00",15.43,75.47,0.568,178.1,1.53,0,1005.5,14.92,6.87,13.71,22.07,1018.764
|
|
378
|
+
"2025-08-03 06:14:00",15.48,75.16,1.189,275.2,2.25,0,1005.5,14.94,6.86,13.66,22.09,1018.764
|
|
379
|
+
"2025-08-03 06:15:00",15.5,75.14,1.393,270.1,2.36,0,1005.5,14.97,6.87,13.7,22.12,1018.764
|
|
380
|
+
"2025-08-03 06:16:00",15.51,74.57,1.429,253.8,2.25,0,1005.5,15,6.87,13.76,22.14,1018.764
|
|
381
|
+
"2025-08-03 06:17:00",15.56,74.23,1.323,237.9,2.47,0,1005.5,15.04,6.86,13.76,22.18,1018.764
|
|
382
|
+
"2025-08-03 06:18:00",15.63,74.01,1.248,253.3,3.13,0,1005.5,15.08,6.87,13.72,22.21,1018.764
|
|
383
|
+
"2025-08-03 06:19:00",15.69,73.87,1.932,281.8,2.77,0,1005.5,15.13,6.86,13.72,22.25,1018.764
|
|
384
|
+
"2025-08-03 06:20:00",15.74,72.97,1.571,306.1,2.37,0,1005.45,15.18,6.87,13.74,22.28,1018.714
|
|
385
|
+
"2025-08-03 06:21:00",15.73,73.46,1.263,266.7,1.8,0,1005.433,15.23,6.87,13.72,22.33,1018.697
|
|
386
|
+
"2025-08-03 06:22:00",15.79,73.68,0.695,230.2,1.48,0,1005.5,15.29,6.87,13.74,22.37,1018.764
|
|
387
|
+
"2025-08-03 06:23:00",15.86,73.28,1.241,231.2,2.64,0,1005.5,15.34,6.86,13.77,22.41,1018.764
|
|
388
|
+
"2025-08-03 06:24:00",15.93,73.05,1.543,258.1,2.89,0,1005.5,15.4,6.86,13.75,22.46,1018.764
|
|
389
|
+
"2025-08-03 06:25:00",16.02,73.43,0.953,222.3,1.59,0,1005.5,15.45,6.86,13.7,22.5,1018.764
|
|
390
|
+
"2025-08-03 06:26:00",16.15,72.91,0.918,266.3,1.58,0,1005.533,15.51,6.87,13.69,22.55,1018.797
|
|
391
|
+
"2025-08-03 06:27:00",16.25,71.98,0.818,218.3,1.87,0,1005.567,15.58,6.86,13.67,22.6,1018.831
|
|
392
|
+
"2025-08-03 06:28:00",16.32,71.54,1.007,245.8,1.89,0,1005.533,15.65,6.87,13.68,22.66,1018.797
|
|
393
|
+
"2025-08-03 06:29:00",16.39,71.07,1.468,258.2,2.29,0,1005.6,15.72,6.87,13.7,22.72,1018.864
|
|
394
|
+
"2025-08-03 06:30:00",16.47,70.72,1.658,263.6,3.2,0,1005.6,15.8,6.87,13.66,22.78,1018.864
|
|
395
|
+
"2025-08-03 06:31:00",16.56,70.61,2.822,267.6,3.99,0,1005.525,15.89,6.87,13.65,22.84,1018.789
|
|
396
|
+
"2025-08-03 06:32:00",16.63,70.42,1.163,275,1.86,0,1005.525,15.98,6.87,13.69,22.91,1018.789
|
|
397
|
+
"2025-08-03 06:33:00",16.7,70.18,0.954,246.5,1.99,0,1005.6,16.07,6.87,13.67,22.98,1018.864
|
|
398
|
+
"2025-08-03 06:34:00",16.73,69.84,1.226,241,2.13,0,1005.517,16.16,6.87,13.66,23.04,1018.781
|
|
399
|
+
"2025-08-03 06:35:00",16.72,69.61,2.066,290,4.17,0,1005.5,16.24,6.85,13.68,23.11,1018.764
|
|
400
|
+
"2025-08-03 06:36:00",16.64,70.08,1.065,223.9,2.05,0,1005.5,16.32,6.86,13.66,23.18,1018.764
|
|
401
|
+
"2025-08-03 06:37:00",16.61,70.24,1.249,202.3,2.38,0,1005.55,16.4,6.87,13.65,23.24,1018.814
|
|
402
|
+
"2025-08-03 06:38:00",16.57,70.66,1.494,306.2,4.32,0,1005.6,16.47,6.87,13.71,23.3,1018.864
|
|
403
|
+
"2025-08-03 06:39:00",16.54,70.38,3.005,274.1,4.63,0,1005.55,16.54,6.85,13.69,23.36,1018.814
|
|
404
|
+
"2025-08-03 06:40:00",16.52,69.96,1.832,266.3,3.23,0,1005.5,16.61,6.86,13.68,23.41,1018.764
|
|
405
|
+
"2025-08-03 06:41:00",16.52,70.36,2.616,250.2,4.06,0,1005.5,16.68,6.86,13.71,23.46,1018.764
|
|
406
|
+
"2025-08-03 06:42:00",16.53,70.48,1.848,247.8,2.83,0,1005.5,16.74,6.86,13.72,23.52,1018.764
|
|
407
|
+
"2025-08-03 06:43:00",16.47,70.78,0.983,282.2,1.99,0,1005.5,16.79,6.86,13.69,23.56,1018.764
|
|
408
|
+
"2025-08-03 06:44:00",16.42,70.97,1.869,271.4,3.91,0,1005.533,16.85,6.87,13.67,23.61,1018.797
|
|
409
|
+
"2025-08-03 06:45:00",16.38,70.87,2.139,282,2.83,0,1005.5,16.9,6.87,13.65,23.64,1018.764
|
|
410
|
+
"2025-08-03 06:46:00",16.31,71.14,2.109,257.5,3.74,0,1005.5,16.94,6.86,13.69,23.68,1018.764
|
|
411
|
+
"2025-08-03 06:47:00",16.3,70.6,3.353,256.8,4.77,0,1005.5,16.98,6.86,13.68,23.71,1018.764
|
|
412
|
+
"2025-08-03 06:48:00",16.28,70.96,2.829,254.3,4.01,0,1005.5,17.01,6.86,13.68,23.74,1018.764
|
|
413
|
+
"2025-08-03 06:49:00",16.28,71.17,1.523,277.2,2.92,0,1005.558,17.04,6.87,13.64,23.76,1018.822
|
|
414
|
+
"2025-08-03 06:50:00",16.28,70.64,1.983,242.4,2.97,0,1005.592,17.06,6.85,13.72,23.79,1018.856
|
|
415
|
+
"2025-08-03 06:51:00",16.29,70.78,2.652,255.6,5.31,0,1005.55,17.08,6.87,13.71,23.8,1018.814
|
|
416
|
+
"2025-08-03 06:52:00",16.28,71.02,1.658,261.6,3.34,0,1005.583,17.1,6.87,13.71,23.81,1018.847
|
|
417
|
+
"2025-08-03 06:53:00",16.25,71.29,1.396,297.3,2.4,0,1005.6,17.11,6.87,13.72,23.82,1018.864
|
|
418
|
+
"2025-08-03 06:54:00",16.21,71.32,2.097,273.4,2.98,0,1005.6,17.13,6.87,13.67,23.83,1018.864
|
|
419
|
+
"2025-08-03 06:55:00",16.18,71.04,3.008,252.5,3.88,0,1005.6,17.14,6.87,13.63,23.84,1018.864
|
|
420
|
+
"2025-08-03 06:56:00",16.21,71.23,1.906,259.8,3.38,0,1005.6,17.14,6.87,13.62,23.85,1018.864
|
|
421
|
+
"2025-08-03 06:57:00",16.25,70.97,1.811,237.2,4.6,0,1005.6,17.16,6.86,13.65,23.85,1018.864
|
|
422
|
+
"2025-08-03 06:58:00",16.26,70.71,3.495,249.8,4.7,0,1005.6,17.17,6.85,13.61,23.86,1018.864
|
|
423
|
+
"2025-08-03 06:59:00",16.28,70.65,2.679,258,4.22,0,1005.633,17.17,6.87,13.59,23.86,1018.897
|
|
424
|
+
"2025-08-03 07:00:00",16.3,70.79,3.473,264,5.78,0,1005.7,17.18,6.87,13.63,23.86,1018.964
|
|
425
|
+
"2025-08-03 07:01:00",16.31,70.65,2.547,257.4,4.14,0,1005.7,17.18,6.87,13.6,23.87,1018.964
|
|
426
|
+
"2025-08-03 07:02:00",16.32,70.71,2.07,262.3,3.35,0,1005.7,17.18,6.86,13.64,23.88,1018.964
|
|
427
|
+
"2025-08-03 07:03:00",16.35,70.75,2.65,278.7,4.31,0,1005.7,17.19,6.87,13.66,23.88,1018.964
|
|
428
|
+
"2025-08-03 07:04:00",16.34,70.59,2.196,249.4,3.73,0,1005.7,17.19,6.87,13.67,23.89,1018.964
|
|
429
|
+
"2025-08-03 07:05:00",16.36,70.67,1.223,273.6,2.22,0,1005.7,17.2,6.87,13.61,23.89,1018.964
|
|
430
|
+
"2025-08-03 07:06:00",16.38,70.79,1.868,259.2,3.75,0,1005.733,17.2,6.87,13.65,23.89,1018.997
|
|
431
|
+
"2025-08-03 07:07:00",16.42,70.78,1.753,245.8,4.24,0,1005.708,17.21,6.87,13.64,23.91,1018.972
|
|
432
|
+
"2025-08-03 07:08:00",16.42,70.11,5.463,268.3,7.23,0,1005.7,17.22,6.87,13.61,23.91,1018.964
|
|
433
|
+
"2025-08-03 07:09:00",16.41,70.58,3.706,271,5.11,0,1005.7,17.23,6.86,13.62,23.92,1018.964
|
|
434
|
+
"2025-08-03 07:10:00",16.45,70.56,2.589,252.4,4.75,0,1005.783,17.24,6.87,13.64,23.93,1019.047
|
|
435
|
+
"2025-08-03 07:11:00",16.51,70.59,1.2,251,2.45,0,1005.8,17.25,6.88,13.67,23.94,1019.064
|
|
436
|
+
"2025-08-03 07:12:00",16.58,70.28,1.293,295,2.16,0,1005.792,17.27,6.87,13.61,23.95,1019.056
|
|
437
|
+
"2025-08-03 07:13:00",16.62,70.38,3.192,273.4,4.5,0,1005.7,17.29,6.87,13.63,23.97,1018.964
|
|
438
|
+
"2025-08-03 07:14:00",16.65,70.04,3.673,267.2,4.96,0,1005.7,17.32,6.87,13.62,23.99,1018.964
|
|
439
|
+
"2025-08-03 07:15:00",16.68,69.97,2.562,272,3.91,0,1005.7,17.35,6.87,13.62,24.02,1018.964
|
|
440
|
+
"2025-08-03 07:16:00",16.68,70.25,1.722,252.3,2.51,0,1005.758,17.38,6.87,13.66,24.05,1019.022
|
|
441
|
+
"2025-08-03 07:17:00",16.75,69.74,2.046,301.1,4.08,0,1005.733,17.42,6.87,13.62,24.08,1018.997
|
|
442
|
+
"2025-08-03 07:18:00",16.76,69.86,2.171,278,3.57,0,1005.7,17.46,6.87,13.61,24.11,1018.964
|
|
443
|
+
"2025-08-03 07:19:00",16.81,69.9,2.119,278.3,4.1,0,1005.7,17.51,6.87,13.63,24.14,1018.964
|
|
444
|
+
"2025-08-03 07:20:00",16.88,69.58,1.717,288.3,2.81,0,1005.7,17.56,6.87,13.61,24.18,1018.964
|
|
445
|
+
"2025-08-03 07:21:00",16.92,69.27,2.603,271.7,4.87,0,1005.733,17.62,6.87,13.63,24.22,1018.997
|
|
446
|
+
"2025-08-03 07:22:00",17,68.85,2.307,279.4,3.35,0,1005.7,17.69,6.87,13.64,24.27,1018.964
|
|
447
|
+
"2025-08-03 07:23:00",17.04,69.02,1.84,254,2.87,0,1005.7,17.76,6.87,13.66,24.32,1018.964
|
|
448
|
+
"2025-08-03 07:24:00",17.08,68.54,3.691,249.4,6.23,0,1005.617,17.83,6.87,13.65,24.38,1018.881
|
|
449
|
+
"2025-08-03 07:25:00",17.1,68.83,1.605,261.6,3.21,0,1005.575,17.91,6.87,13.69,24.43,1018.839
|
|
450
|
+
"2025-08-03 07:26:00",17.1,68.79,1.923,243.7,3.91,0,1005.6,17.99,6.86,13.63,24.49,1018.864
|
|
451
|
+
"2025-08-03 07:27:00",17.14,68.66,2.429,274.8,4.2,0,1005.6,18.06,6.88,13.67,24.55,1018.864
|
|
452
|
+
"2025-08-03 07:28:00",17.15,69.13,1.221,288.3,2.25,0,1005.633,18.13,6.87,13.62,24.6,1018.897
|
|
453
|
+
"2025-08-03 07:29:00",17.19,68.72,1.471,248.2,2.54,0,1005.7,18.2,6.87,13.62,24.65,1018.964
|
|
454
|
+
"2025-08-03 07:30:00",17.27,68.31,1.171,269.4,2.39,0,1005.7,18.27,6.88,13.65,24.7,1018.964
|
|
455
|
+
"2025-08-03 07:31:00",17.33,68.59,1.568,276.5,3.28,0,1005.65,18.34,6.87,13.59,24.76,1018.914
|
|
456
|
+
"2025-08-03 07:32:00",17.44,67.41,2.869,222.6,5.08,0,1005.6,18.42,6.87,13.63,24.82,1018.864
|
|
457
|
+
"2025-08-03 07:33:00",17.47,66.92,2.871,225,5.24,0,1005.567,18.49,6.86,13.6,24.87,1018.831
|
|
458
|
+
"2025-08-03 07:34:00",17.42,67.37,1.646,272.3,3.31,0,1005.567,18.57,6.87,13.55,24.92,1018.831
|
|
459
|
+
"2025-08-03 07:35:00",17.33,68.01,1.035,291.5,1.8,0,1005.617,18.64,6.87,13.57,24.98,1018.881
|
|
460
|
+
"2025-08-03 07:36:00",17.26,68.21,2.371,270.4,3.88,0,1005.633,18.71,6.88,13.6,25.02,1018.897
|
|
461
|
+
"2025-08-03 07:37:00",17.21,68.69,2.067,259.8,4.23,0,1005.6,18.78,6.87,13.6,25.07,1018.864
|
|
462
|
+
"2025-08-03 07:38:00",17.26,68.68,3.322,285.6,5.31,0,1005.583,18.84,6.87,13.63,25.13,1018.847
|
|
463
|
+
"2025-08-03 07:39:00",17.26,69.07,1.744,268.8,3.55,0,1005.6,18.91,6.87,13.67,25.16,1018.864
|
|
464
|
+
"2025-08-03 07:40:00",17.34,69.22,1.13,219.6,2.23,0,1005.617,18.98,6.88,13.65,25.18,1018.881
|
|
465
|
+
"2025-08-03 07:41:00",17.49,67.95,2.144,295.1,3.29,0,1005.6,19.05,6.87,13.62,25.24,1018.864
|
|
466
|
+
"2025-08-03 07:42:00",17.52,67.93,1.958,240.4,3,0,1005.6,19.12,6.87,13.6,25.27,1018.864
|
|
467
|
+
"2025-08-03 07:43:00",17.63,67.67,2.161,229.6,4.45,0,1005.642,19.19,6.88,13.61,25.3,1018.906
|
|
468
|
+
"2025-08-03 07:44:00",17.8,66.59,2.504,226.1,3.83,0,1005.6,19.27,6.88,13.59,25.37,1018.864
|
|
469
|
+
"2025-08-03 07:45:00",17.94,66.32,2.262,232.7,3.1,0,1005.6,19.34,6.87,13.62,25.42,1018.864
|
|
470
|
+
"2025-08-03 07:46:00",18.04,65.94,2.44,266.3,3.98,0,1005.6,19.42,6.88,13.66,25.47,1018.864
|
|
471
|
+
"2025-08-03 07:47:00",18.05,65.89,2.483,221.9,3.84,0,1005.633,19.5,6.88,13.6,25.51,1018.897
|
|
472
|
+
"2025-08-03 07:48:00",18.03,65.85,2.058,252.6,3.46,0,1005.625,19.58,6.88,13.63,25.57,1018.889
|
|
473
|
+
"2025-08-03 07:49:00",18.02,65.39,2.711,219.9,4.17,0,1005.6,19.66,6.88,13.61,25.6,1018.864
|
|
474
|
+
"2025-08-03 07:50:00",18.07,65.62,1.839,246.6,3.32,0,1005.658,19.74,6.88,13.63,25.64,1018.922
|
|
475
|
+
"2025-08-03 07:51:00",18.21,65.1,1.227,252.9,2.33,0,1005.7,19.82,6.88,13.6,25.69,1018.964
|
|
476
|
+
"2025-08-03 07:52:00",18.31,64.67,2.536,259,3.73,0,1005.642,19.89,6.87,13.61,25.76,1018.906
|
|
477
|
+
"2025-08-03 07:53:00",18.35,64.33,2.509,272.2,3.73,0,1005.65,19.97,6.88,13.65,25.83,1018.914
|
|
478
|
+
"2025-08-03 07:54:00",18.32,64.89,2.328,267.5,4.91,0,1005.625,20.05,6.87,13.61,25.86,1018.889
|
|
479
|
+
"2025-08-03 07:55:00",18.28,64.56,3.565,245.3,5.27,0,1005.6,20.12,6.88,13.6,25.92,1018.864
|
|
480
|
+
"2025-08-03 07:56:00",18.28,64.73,2.499,235.8,4.35,0,1005.6,20.2,6.88,13.59,25.96,1018.864
|
|
481
|
+
"2025-08-03 07:57:00",18.29,65.13,2.513,284,4.15,0,1005.6,20.27,6.88,13.59,26.04,1018.864
|
|
482
|
+
"2025-08-03 07:58:00",18.28,65.84,1.273,222.2,2.19,0,1005.608,20.34,6.87,13.59,26.08,1018.872
|
|
483
|
+
"2025-08-03 07:59:00",18.33,64.95,2.766,247.9,5.21,0,1005.6,20.41,6.88,13.55,26.15,1018.864
|
|
484
|
+
"2025-08-03 08:00:00",18.39,64.61,1.595,231.2,3.24,0,1005.6,20.47,6.88,13.56,26.12,1018.864
|
|
485
|
+
"2025-08-03 08:01:00",18.49,63.96,2.868,250.8,6.83,0,1005.6,20.54,6.88,13.61,26.2,1018.864
|
|
486
|
+
"2025-08-03 08:02:00",18.56,63.98,2.907,259.7,4.95,0,1005.6,20.6,6.87,13.61,26.25,1018.864
|
|
487
|
+
"2025-08-03 08:03:00",18.6,63.15,3.258,251.6,4.74,0,1005.6,20.66,6.87,13.61,26.29,1018.864
|
|
488
|
+
"2025-08-03 08:04:00",18.59,61.84,3.665,260.6,5.97,0,1005.6,20.73,6.87,13.64,26.34,1018.864
|
|
489
|
+
"2025-08-03 08:05:00",18.59,62.6,3.9,269.6,5.67,0,1005.575,20.8,6.88,13.62,26.35,1018.839
|
|
490
|
+
"2025-08-03 08:06:00",18.55,63.43,2.243,283.4,3.42,0,1005.6,20.86,6.88,13.67,26.46,1018.864
|
|
491
|
+
"2025-08-03 08:07:00",18.51,63.79,1.996,229.8,5.04,0,1005.633,20.92,6.87,13.61,26.54,1018.897
|
|
492
|
+
"2025-08-03 08:08:00",18.57,63.91,2.51,302.7,4.94,0,1005.6,20.98,6.88,13.6,26.55,1018.864
|
|
493
|
+
"2025-08-03 08:09:00",18.55,62.68,4.026,277.8,5.21,0,1005.6,21.03,6.88,13.6,26.59,1018.864
|
|
494
|
+
"2025-08-03 08:10:00",18.57,63.16,3.249,264.6,5.07,0,1005.6,21.08,6.87,13.59,26.6,1018.864
|
|
495
|
+
"2025-08-03 08:11:00",18.69,63.24,2.008,243.6,3.04,0,1005.625,21.14,6.88,13.61,26.66,1018.889
|
|
496
|
+
"2025-08-03 08:12:00",18.82,63.22,1.614,240.9,3.14,0,1005.7,21.19,6.87,13.59,26.68,1018.964
|
|
497
|
+
"2025-08-03 08:13:00",18.99,60.31,1.736,230.8,3.21,0,1005.692,21.24,6.87,13.6,26.73,1018.956
|
|
498
|
+
"2025-08-03 08:14:00",19.04,60.69,1.93,238.6,3.55,0,1005.6,21.29,6.87,13.57,26.75,1018.864
|
|
499
|
+
"2025-08-03 08:15:00",19.09,60.69,4.206,261.2,7.6,0,1005.6,21.34,6.88,13.52,26.8,1018.864
|
|
500
|
+
"2025-08-03 08:16:00",18.9,61.82,4.672,278.5,7.86,0,1005.533,21.39,6.87,13.56,26.82,1018.797
|
|
501
|
+
"2025-08-03 08:17:00",18.72,62.26,1.445,247.9,3.06,0,1005.675,21.45,6.88,13.53,26.89,1018.939
|
|
502
|
+
"2025-08-03 08:18:00",18.8,62,2.123,241.7,3.83,0,1005.7,21.49,6.87,13.52,26.9,1018.964
|
|
503
|
+
"2025-08-03 08:19:00",18.91,60.98,3.452,230.7,5.74,0,1005.7,21.54,6.88,13.53,26.94,1018.964
|
|
504
|
+
"2025-08-03 08:20:00",18.91,61.11,3.153,233.3,5.14,0,1005.7,21.59,6.87,13.56,26.95,1018.964
|
|
505
|
+
"2025-08-03 08:21:00",18.98,61.04,1.842,258.7,3.81,0,1005.7,21.63,6.87,13.56,27.01,1018.964
|
|
506
|
+
"2025-08-03 08:22:00",19.02,60.12,4.363,257.1,6.2,0,1005.7,21.68,6.87,13.59,26.99,1018.964
|
|
507
|
+
"2025-08-03 08:23:00",19.03,60.03,3.637,241.2,5.77,0,1005.7,21.72,6.88,13.57,27.06,1018.964
|
|
508
|
+
"2025-08-03 08:24:00",19.11,60.08,2.056,258.7,5.71,0,1005.7,21.76,6.88,13.57,27.07,1018.964
|
|
509
|
+
"2025-08-03 08:25:00",19.13,59.93,2.003,287.6,3.88,0,1005.658,21.8,6.88,13.61,27.16,1018.922
|
|
510
|
+
"2025-08-03 08:26:00",19.07,60.16,2.373,241.2,3.43,0,1005.6,21.84,6.88,13.59,27.18,1018.864
|
|
511
|
+
"2025-08-03 08:27:00",19.04,60.29,1.315,258.5,2.87,0,1005.658,21.89,6.87,13.56,27.25,1018.922
|
|
512
|
+
"2025-08-03 08:28:00",19.12,60.4,2.371,259.1,5.72,0,1005.625,21.93,6.87,13.53,27.28,1018.889
|
|
513
|
+
"2025-08-03 08:29:00",19.23,59.18,4.076,269.5,5.97,0,1005.6,21.97,6.88,13.58,27.31,1018.864
|
|
514
|
+
"2025-08-03 08:30:00",19.25,59.03,3.395,254.9,5.54,0,1005.6,22.01,6.87,13.52,27.34,1018.864
|
|
515
|
+
"2025-08-03 08:31:00",19.29,58.9,3.17,258.2,4.27,0,1005.6,22.05,6.87,13.54,27.35,1018.864
|
|
516
|
+
"2025-08-03 08:32:00",19.3,59.4,2.502,261.1,4.35,0,1005.6,22.1,6.87,13.53,27.41,1018.864
|
|
517
|
+
"2025-08-03 08:33:00",19.3,58.22,3.464,255.3,5.49,0,1005.6,22.14,6.88,13.52,27.43,1018.864
|
|
518
|
+
"2025-08-03 08:34:00",19.33,59.08,2.383,229.3,4.25,0,1005.567,22.19,6.88,13.54,27.46,1018.831
|
|
519
|
+
"2025-08-03 08:35:00",19.32,59.2,3.801,253.6,6.85,0,1005.6,22.23,6.87,13.53,27.49,1018.864
|
|
520
|
+
"2025-08-03 08:36:00",19.4,58.77,3.073,226.8,5.3,0,1005.6,22.27,6.87,13.52,27.55,1018.864
|
|
521
|
+
"2025-08-03 08:37:00",19.44,58.63,3.295,220.1,4.71,0,1005.583,22.31,6.87,13.55,27.54,1018.847
|
|
522
|
+
"2025-08-03 08:38:00",19.42,57.85,4.143,267.7,5.95,0,1005.583,22.34,6.87,13.58,27.59,1018.847
|
|
523
|
+
"2025-08-03 08:39:00",19.35,58.78,2.153,259,3.56,0,1005.625,22.37,6.88,13.56,27.66,1018.889
|
|
524
|
+
"2025-08-03 08:40:00",19.31,57.5,3.311,248.3,5.4,0,1005.6,22.4,6.88,13.53,27.66,1018.864
|
|
525
|
+
"2025-08-03 08:41:00",19.35,57.51,3.719,267.1,6.52,0,1005.6,22.43,6.87,13.52,27.65,1018.864
|
|
@@ -0,0 +1,139 @@
|
|
|
1
|
+
import hashlib
|
|
2
|
+
from pathlib import Path
|
|
3
|
+
|
|
4
|
+
import requests
|
|
5
|
+
|
|
6
|
+
from cloudnet_api_client import APIClient
|
|
7
|
+
from cloudnet_api_client.containers import Instrument, Product, RawMetadata, Site
|
|
8
|
+
|
|
9
|
+
BACKEND_URL = "http://localhost:3000"
|
|
10
|
+
DATA_PATH = Path(__file__).parent / "data"
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class TestFixtures:
|
|
14
|
+
def setup_method(self):
|
|
15
|
+
self.client = APIClient(base_url=f"{BACKEND_URL}/api/")
|
|
16
|
+
|
|
17
|
+
def test_sites(self):
|
|
18
|
+
sites = self.client.sites()
|
|
19
|
+
assert isinstance(sites[0], Site)
|
|
20
|
+
|
|
21
|
+
def test_site_filter_cloudnet(self):
|
|
22
|
+
sites = self.client.sites(type="cloudnet")
|
|
23
|
+
assert all("cloudnet" in site.type for site in sites)
|
|
24
|
+
|
|
25
|
+
def test_site_filter_hidden(self):
|
|
26
|
+
sites = self.client.sites(type="hidden")
|
|
27
|
+
assert all("hidden" in site.type for site in sites)
|
|
28
|
+
assert all("cloudnet" not in site.type for site in sites)
|
|
29
|
+
|
|
30
|
+
def test_products(self):
|
|
31
|
+
products = self.client.products()
|
|
32
|
+
assert isinstance(products[0], Product)
|
|
33
|
+
|
|
34
|
+
def test_instruments(self):
|
|
35
|
+
instruments = self.client.instruments()
|
|
36
|
+
assert isinstance(instruments[0], Instrument)
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
class TestWithRawFiles:
|
|
40
|
+
def setup_method(self):
|
|
41
|
+
self.client = APIClient(base_url=f"{BACKEND_URL}/api/")
|
|
42
|
+
metadata_list = [
|
|
43
|
+
(
|
|
44
|
+
"20250801_Magurele_CHM170137_000.nc",
|
|
45
|
+
"bucharest",
|
|
46
|
+
"chm15k",
|
|
47
|
+
"2025-08-01",
|
|
48
|
+
"https://hdl.handle.net/21.12132/3.c60c931fac9d43f0",
|
|
49
|
+
),
|
|
50
|
+
(
|
|
51
|
+
"20250808_Granada_CHM170119_0045_000.nc",
|
|
52
|
+
"granada",
|
|
53
|
+
"chm15k",
|
|
54
|
+
"2025-08-08",
|
|
55
|
+
"https://hdl.handle.net/21.12132/3.77a75f3b32294855",
|
|
56
|
+
),
|
|
57
|
+
(
|
|
58
|
+
"20250803_JOYCE_WST_01m.dat",
|
|
59
|
+
"juelich",
|
|
60
|
+
"weather-station",
|
|
61
|
+
"2025-08-01",
|
|
62
|
+
"https://hdl.handle.net/21.12132/3.726b3b29de1949cc",
|
|
63
|
+
),
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
for item in metadata_list:
|
|
67
|
+
_submit_file(*item)
|
|
68
|
+
|
|
69
|
+
def test_raw_metadata_1(self):
|
|
70
|
+
meta = self.client.raw_metadata(site_id="bucharest", date="2025-08-01")
|
|
71
|
+
assert isinstance(meta, list)
|
|
72
|
+
assert len(meta) == 1
|
|
73
|
+
assert isinstance(meta[0], RawMetadata)
|
|
74
|
+
|
|
75
|
+
def test_raw_metadata_2(self):
|
|
76
|
+
meta = self.client.raw_metadata(date="2025-08-08")
|
|
77
|
+
assert len(meta) == 1
|
|
78
|
+
|
|
79
|
+
def test_raw_metadata_3(self):
|
|
80
|
+
pid = "https://hdl.handle.net/21.12132/3.77a75f3b32294855"
|
|
81
|
+
meta = self.client.raw_metadata(instrument_pid=pid)
|
|
82
|
+
assert len(meta) == 1
|
|
83
|
+
|
|
84
|
+
def test_raw_metadata_4(self):
|
|
85
|
+
pid = "https://hdl.handle.net/21.12132/3.77a75f3b32294855"
|
|
86
|
+
meta = self.client.raw_metadata(instrument_pid=pid, date="2022-01-01")
|
|
87
|
+
assert len(meta) == 0
|
|
88
|
+
|
|
89
|
+
def test_raw_metadata_5(self):
|
|
90
|
+
meta = self.client.raw_metadata(date_from="2025-08-01")
|
|
91
|
+
assert len(meta) == 3
|
|
92
|
+
|
|
93
|
+
def test_raw_metadata_6(self):
|
|
94
|
+
meta = self.client.raw_metadata(date_from="2025-08-01", date_to="2025-08-08")
|
|
95
|
+
assert len(meta) == 3
|
|
96
|
+
|
|
97
|
+
def test_raw_metadata_7(self):
|
|
98
|
+
meta = self.client.raw_metadata(date_from="2025-08-01", date_to="2025-08-07")
|
|
99
|
+
assert len(meta) == 2
|
|
100
|
+
|
|
101
|
+
def test_raw_metadata_8(self):
|
|
102
|
+
meta = self.client.raw_metadata(filename_prefix="20250801")
|
|
103
|
+
assert len(meta) == 1
|
|
104
|
+
|
|
105
|
+
def test_raw_metadata_9(self):
|
|
106
|
+
meta = self.client.raw_metadata(filename_suffix="000.nc")
|
|
107
|
+
assert len(meta) == 2
|
|
108
|
+
|
|
109
|
+
def test_raw_metadata_10(self):
|
|
110
|
+
meta = self.client.raw_metadata(instrument_id="weather-station")
|
|
111
|
+
assert len(meta) == 1
|
|
112
|
+
|
|
113
|
+
|
|
114
|
+
def _submit_file(filename: str, site: str, instrument: str, date: str, pid: str):
|
|
115
|
+
auth = ("admin", "admin")
|
|
116
|
+
file_path = DATA_PATH / filename
|
|
117
|
+
|
|
118
|
+
with open(file_path, "rb") as f:
|
|
119
|
+
checksum = hashlib.md5(f.read()).hexdigest()
|
|
120
|
+
|
|
121
|
+
metadata = {
|
|
122
|
+
"filename": filename,
|
|
123
|
+
"checksum": checksum,
|
|
124
|
+
"site": site,
|
|
125
|
+
"instrument": instrument,
|
|
126
|
+
"measurementDate": date,
|
|
127
|
+
"instrumentPid": pid,
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
res = requests.post(f"{BACKEND_URL}/upload/metadata/", json=metadata, auth=auth)
|
|
131
|
+
if res.status_code not in (200, 409):
|
|
132
|
+
res.raise_for_status()
|
|
133
|
+
|
|
134
|
+
if res.status_code == 200:
|
|
135
|
+
with open(file_path, "rb") as f:
|
|
136
|
+
res = requests.put(
|
|
137
|
+
f"{BACKEND_URL}/upload/data/{checksum}", data=f, auth=auth
|
|
138
|
+
)
|
|
139
|
+
res.raise_for_status()
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
name: Run tests
|
|
2
|
-
|
|
3
|
-
on: [push, pull_request]
|
|
4
|
-
|
|
5
|
-
jobs:
|
|
6
|
-
build:
|
|
7
|
-
strategy:
|
|
8
|
-
matrix:
|
|
9
|
-
os: [ubuntu-latest]
|
|
10
|
-
python-version: ["3.10", "3.11", "3.12", "3.13"]
|
|
11
|
-
|
|
12
|
-
runs-on: ${{ matrix.os }}
|
|
13
|
-
steps:
|
|
14
|
-
- uses: actions/checkout@v4
|
|
15
|
-
- name: Set up Python ${{ matrix.python-version }}
|
|
16
|
-
uses: actions/setup-python@v5
|
|
17
|
-
with:
|
|
18
|
-
python-version: ${{ matrix.python-version }}
|
|
19
|
-
cache: "pip"
|
|
20
|
-
- name: Install dependencies
|
|
21
|
-
run: |
|
|
22
|
-
pip install --upgrade pip
|
|
23
|
-
pip install .[dev,test]
|
|
24
|
-
- name: Run pre-commit checks
|
|
25
|
-
if: startsWith(matrix.os, 'ubuntu-')
|
|
26
|
-
run: |
|
|
27
|
-
pre-commit run --all-files --show-diff-on-failure
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.9.2"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|