Datasets:
metadata
license: other
task_categories:
- time-series-forecasting
tags:
- time-series
- tsfile
- format:tsfile
pretty_name: entsoe (TsFile format)
entsoe (TsFile format)
Source and Citation
- Original source: https://data.open-power-system-data.org/time_series/2020-10-06
- Paper / citation: [6]
- Unified source collection: autogluon/fev_datasets
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.
Dataset Statistics
| Frequency | Number of series | Median length | Observations | Dynamic columns | Static columns | Files |
|---|---|---|---|---|---|---|
| 15T | 6 | 175,292 | 6,310,512 | 6 | 0 | 15T/15T_1..15T_2.tsfile (2 shards) |
| 1H | 6 | 43,822 | 1,577,592 | 6 | 0 | 1H/1H.tsfile |
| 30T | 6 | 87,645 | 3,155,220 | 6 | 0 | 30T/30T.tsfile |
TsFile Storage Model
- Each original series (
id) is stored as one TsFile device (TAG dimension). - Time-varying targets and dynamic covariates are stored as measurements (FIELDs).
timestampis mapped toTimeas INT64 milliseconds.- Table names: entsoe_15T, entsoe_1H, entsoe_30T.
Column Schema
| Column | Role | TsFile type |
|---|---|---|
Time |
Time column | INT64 |
id |
TAG (device dimension) | STRING |
target |
FIELD (measurement) | FLOAT |
solar_generation_actual |
FIELD (measurement) | FLOAT |
wind_onshore_generation_actual |
FIELD (measurement) | FLOAT |
temperature |
FIELD (measurement) | FLOAT |
radiation_direct_horizontal |
FIELD (measurement) | FLOAT |
radiation_diffuse_horizontal |
FIELD (measurement) | FLOAT |
Conversion Notes
- 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. - Numeric types are inferred from the source columns, for example float32 to FLOAT, float64 to DOUBLE, integers to INT64, and bool to BOOLEAN.
- Time precision: milliseconds (INT64).
- Large tables may be automatically sharded as
<name>_1.tsfile,<name>_2.tsfile, and so on. These shards belong to the same logical table.
Reading Example
from tsfile import TsFileReader
reader = TsFileReader("15T/15T.tsfile")
schemas = reader.get_all_table_schemas()
# Table name: entsoe_15T; see \"Column Schema\" below.