VGalaxies666 commited on
Commit
fbd9bc9
·
verified ·
1 Parent(s): 20698cc

Rewrite README in English

Browse files
Files changed (1) hide show
  1. README.md +31 -33
README.md CHANGED
@@ -8,59 +8,57 @@ tags:
8
  pretty_name: entsoe (TsFile format)
9
  ---
10
 
11
- # entsoe TsFile 格式
12
 
13
- 本目录是 [`autogluon/fev_datasets`](https://huggingface.co/datasets/autogluon/fev_datasets) **entsoe** 子集转换为 [Apache TsFile](https://tsfile.apache.org/) 格式的版本。
14
 
15
- ## 来源与引用
 
 
16
 
17
- - **原始来源**:https://data.open-power-system-data.org/time_series/2020-10-06
18
- - **论文/引用**:[[6]](https://doi.org/10.25832/time_series/2020-10-06)
19
- - **统一格式合集**:[autogluon/fev_datasets](https://huggingface.co/datasets/autogluon/fev_datasets)
20
 
21
- > 本数据由外部来源转换为统一格式后再转为 TsFile。许可与引用以**原始来源**为准,我们不对原始数据主张任何权利。除非另有说明,数据仅供研究用途。
22
 
23
- ## 数据统计
24
-
25
- | 频率 | 序列数 | 中位长度 | 观测点数 | 动态列 | 静态列 | 文件 |
26
  |---|---|---|---|---|---|---|
27
- | 15T | 6 | 175,292 | 6,310,512 | 6 | 0 | `15T/15T_1..15T_2.tsfile`2 片) |
28
  | 1H | 6 | 43,822 | 1,577,592 | 6 | 0 | `1H/1H.tsfile` |
29
  | 30T | 6 | 87,645 | 3,155,220 | 6 | 0 | `30T/30T.tsfile` |
30
 
31
- ## TsFile 存储模型
32
 
33
- - 每条原始序列(`id`)→ 一个 **device**TAG 维度)。
34
- - 随时间变化的 target / 动态协变量 **measurement**(FIELD)。
35
- - `timestamp` `Time`INT64 毫秒)。
36
- - 表名:entsoe_15T, entsoe_1H, entsoe_30T
37
 
38
- ### 列含义
39
 
40
- | | 角色 | TsFile 类型 |
41
  |---|---|---|
42
- | `Time` | Time(时间列) | INT64 |
43
- | `id` | TAGdevice 维度) | STRING |
44
- | `target` | FIELDmeasurement | FLOAT |
45
- | `solar_generation_actual` | FIELDmeasurement | FLOAT |
46
- | `wind_onshore_generation_actual` | FIELDmeasurement | FLOAT |
47
- | `temperature` | FIELDmeasurement | FLOAT |
48
- | `radiation_direct_horizontal` | FIELDmeasurement | FLOAT |
49
- | `radiation_diffuse_horizontal` | FIELDmeasurement | FLOAT |
50
 
51
- ## 转换说明
52
 
53
- - 每行原始数据是一整条序列 `(id, timestamp[], target[])`,纵向打平为长表后写入 TsFile
54
- - 数值类型按源列自适应:float32FLOATfloat64DOUBLE、整数→INT64boolBOOLEAN
55
- - 时间精度:毫秒(INT64)。
56
- - 大表会被工具自动分片为 `<>_1.tsfile``<>_2.tsfile` …,同属一个逻辑表。
57
 
58
- ## 读取示例
59
 
60
  ```python
61
  from tsfile import TsFileReader
62
 
63
  reader = TsFileReader("15T/15T.tsfile")
64
  schemas = reader.get_all_table_schemas()
65
- # 表名:entsoe_15T;列见下方"列含义"
66
  ```
 
8
  pretty_name: entsoe (TsFile format)
9
  ---
10
 
11
+ # entsoe (TsFile format)
12
 
13
+ ## Source and Citation
14
 
15
+ - **Original source**: https://data.open-power-system-data.org/time_series/2020-10-06
16
+ - **Paper / citation**: [[6]](https://doi.org/10.25832/time_series/2020-10-06)
17
+ - **Unified source collection**: [autogluon/fev_datasets](https://huggingface.co/datasets/autogluon/fev_datasets)
18
 
19
+ > This dataset was converted from external source data into a unified forecasting format and then into TsFile. Licensing and citation requirements follow the original source. We do not claim ownership of the original data. Unless otherwise stated, the data is intended for research use.
 
 
20
 
21
+ ## Dataset Statistics
22
 
23
+ | Frequency | Number of series | Median length | Observations | Dynamic columns | Static columns | Files |
 
 
24
  |---|---|---|---|---|---|---|
25
+ | 15T | 6 | 175,292 | 6,310,512 | 6 | 0 | `15T/15T_1..15T_2.tsfile` (2 shards) |
26
  | 1H | 6 | 43,822 | 1,577,592 | 6 | 0 | `1H/1H.tsfile` |
27
  | 30T | 6 | 87,645 | 3,155,220 | 6 | 0 | `30T/30T.tsfile` |
28
 
29
+ ## TsFile Storage Model
30
 
31
+ - Each original series (`id`) is stored as one TsFile **device** (TAG dimension).
32
+ - Time-varying targets and dynamic covariates are stored as **measurements** (FIELDs).
33
+ - `timestamp` is mapped to `Time` as INT64 milliseconds.
34
+ - Table names: entsoe_15T, entsoe_1H, entsoe_30T.
35
 
36
+ ### Column Schema
37
 
38
+ | Column | Role | TsFile type |
39
  |---|---|---|
40
+ | `Time` | Time column | INT64 |
41
+ | `id` | TAG (device dimension) | STRING |
42
+ | `target` | FIELD (measurement) | FLOAT |
43
+ | `solar_generation_actual` | FIELD (measurement) | FLOAT |
44
+ | `wind_onshore_generation_actual` | FIELD (measurement) | FLOAT |
45
+ | `temperature` | FIELD (measurement) | FLOAT |
46
+ | `radiation_direct_horizontal` | FIELD (measurement) | FLOAT |
47
+ | `radiation_diffuse_horizontal` | FIELD (measurement) | FLOAT |
48
 
49
+ ## Conversion Notes
50
 
51
+ - Each original row stores one complete series `(id, timestamp[], target and dynamic arrays)`. The converter flattens these nested rows into a long table before writing TsFile.
52
+ - Numeric types are inferred from the source columns, for example float32 to FLOAT, float64 to DOUBLE, integers to INT64, and bool to BOOLEAN.
53
+ - Time precision: milliseconds (INT64).
54
+ - Large tables may be automatically sharded as `<name>_1.tsfile`, `<name>_2.tsfile`, and so on. These shards belong to the same logical table.
55
 
56
+ ## Reading Example
57
 
58
  ```python
59
  from tsfile import TsFileReader
60
 
61
  reader = TsFileReader("15T/15T.tsfile")
62
  schemas = reader.get_all_table_schemas()
63
+ # Table name: entsoe_15T; see \"Column Schema\" below.
64
  ```