Xu Zhijian commited on
Commit
401db8b
·
1 Parent(s): 31745fe

update: general report

Browse files
README.md ADDED
@@ -0,0 +1,132 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ task_categories:
3
+ - time-series-forecasting
4
+ language:
5
+ - en
6
+ tags:
7
+ - TimeSeries,
8
+ - Multimodal,
9
+ - Heterogeneous
10
+ size_categories:
11
+ - 1B<n<10B
12
+ ---
13
+ # WIATS: Weather-centric Intervention-Aware Time Series Multimodal Dataset
14
+
15
+ ## Data source:
16
+
17
+ - [Jena_Atmospheric_Physics](https://www.timeanddate.com/weather)
18
+
19
+ ## Dataset Structure
20
+
21
+ The dataset is organized into the following structure:
22
+
23
+ ```
24
+ |-- subdataset1
25
+
26
+ | |-- raw_data # Original data files
27
+ | |-- time_series # Rule-based Imputed data files
28
+ | | |-- id_1.parquet # Time series data for each subject can be multivariate, can be in csv, parquet, etc.
29
+ | | |-- id_2.parquet
30
+ | | |-- ...
31
+ | | |-- id_info.json # Metadata for each subject
32
+
33
+ | |-- weather
34
+ | | |-- location_1
35
+ | | | |-- raw_data
36
+ | | | | |-- daily_weather_raw_????.json
37
+ | | | | |-- ...
38
+ | | | | |-- daily_weather_????.csv
39
+ | | | | |-- ...
40
+ | | | | |-- hourly_weather_????.csv
41
+ | | | | |-- ...
42
+ | | | |-- weather_report (can be flattened and use regex to extract the version)
43
+ | | | | |-- version_1
44
+ | | | | | |-- weather_report_????.json
45
+ | | | | | |-- ...
46
+ | | | | |-- version_2
47
+ | | | | |-- ...
48
+ | | | |-- report_embedding # embedding for the weather report
49
+ | | | | |-- version_1
50
+ | | | | | |-- report_embedding_????.pkl
51
+ | | | | | |-- ...
52
+ | | | | |-- version_2
53
+ | | | | |-- ...
54
+
55
+ | | |-- location_2
56
+ | | |-- ...
57
+
58
+ | | |-- merged_report_embedding # merged embedding for multiple needed locations (optional)
59
+ | | | |-- version_1
60
+ | | | | |-- report_embedding_????.pkl
61
+ | | | | |-- ...
62
+ | | | |-- version_2
63
+ | | | |-- ...
64
+
65
+ | | |-- merged_general_report # merged general report for multiple needed locations (optional)
66
+ | | | |-- xxx.json
67
+ | | | |-- ...
68
+
69
+ | |-- scripts # Scripts for data processing, model training, and evaluation
70
+ | |-- id_info.json # Metadata for whole dataset without preprocessing
71
+ | |-- static_info.json # Static information for this dataset, including the dataset information, channel information, downtime reasons.
72
+ | |-- static_info_embeddings.pkl
73
+
74
+ | |-- slim_data (optional)
75
+ | |-- full_data (optional) # intermediate data during the data processing
76
+
77
+ |-- subdataset2
78
+ |-- ......
79
+
80
+ ```
81
+
82
+ ## id_info.json Structure
83
+
84
+ The `id_info.json` file contains metadata for each subject in the dataset. Extracted from the raw dataset. The structure is as follows:
85
+
86
+ ```json
87
+ {
88
+ "id_1": {
89
+ "len": 1000, # Length of the time series data
90
+ "sensor_downtime": {
91
+ 1: {
92
+ "time": [yyyy-mm-dd hh:mm:ss, yyyy-mm-dd hh:mm:ss],
93
+ "index": [start_index, end_index]
94
+ },
95
+ 2: {
96
+ "time": [yyyy-mm-dd hh:mm:ss, yyyy-mm-dd hh:mm:ss],
97
+ "index": [start_index, end_index]
98
+ },
99
+ ...
100
+ },
101
+ "other_info_1": "value_1", # Other information about the subject customizable entry
102
+ "other_info_2": "value_2",
103
+ ...
104
+ },
105
+ "id_2": ...
106
+
107
+ }
108
+ ```
109
+
110
+ ## static_info.json Structure
111
+
112
+ The `static_info.json` file contains static information for the whole dataset. The structure is as follows:
113
+
114
+ ```json
115
+ {
116
+ "general_info": "description of the dataset",
117
+ "downtime_prompt": "",
118
+ "channel_info": {
119
+ "id_1": {
120
+ "channel_1": "channel 1 is xxx",
121
+ "channel_2": "channel 2 is xxx",
122
+ ...
123
+ },
124
+ "id_2": {
125
+ "channel_1": "channel 1 is xxx",
126
+ "channel_2": "channel 2 is xxx",
127
+ ...
128
+ },
129
+ ...
130
+ },
131
+ }
132
+ ```
weather/weather_report/general_report/fast_general_weather_forecast_2014.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2015.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2016.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2017.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2018.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2019.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2020.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2021.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2022.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2023.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2024.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/fast_general_weather_forecast_2025.json ADDED
The diff for this file is too large to render. See raw diff
 
weather/weather_report/general_report/static_info.json ADDED
@@ -0,0 +1,29 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "general_info": "This dataset contains comprehensive weather and climate measurements recorded in Jena, Germany, spanning multiple years.",
3
+ "downtime_prompt": "No reading at this time for unknown reason, set 0 as default, ignore.",
4
+ "channel_info": {
5
+ "weather_large": {
6
+ "p (mbar)": "Atmospheric pressure measured in millibars. It indicates the weight of the air above the point of measurement.",
7
+ "T (degC)": "Temperature at the point of observation, measured in degrees Celsius.",
8
+ "Tpot (K)": "Potential temperature, given in Kelvin. This is the temperature that a parcel of air would have if it were brought adiabatically to a standard reference pressure, often used to compare temperatures at different pressures in a thermodynamically consistent way.",
9
+ "Tdew (degC)": "Dew point temperature in degrees Celsius. It's the temperature to which air must be cooled, at constant pressure and water vapor content, for saturation to occur. A lower dew point means dryer air.",
10
+ "rh (%)": "Relative humidity, expressed as a percentage. It measures the amount of moisture in the air relative to the maximum amount of moisture the air can hold at that temperature.",
11
+ "VPmax (mbar)": "Maximum vapor pressure, in millibars. It represents the maximum amount of moisture that the air can hold at a given temperature.",
12
+ "VPact (mbar)": "Actual vapor pressure, in millibars. It's the current amount of water vapor present in the air.",
13
+ "VPdef (mbar)": "Vapor pressure deficit, in millibars. The difference between the maximum vapor pressure and the actual vapor pressure; it indicates how much more moisture the air can hold before saturation.",
14
+ "sh (g/kg)": "Specific humidity, the mass of water vapor in a given mass of air, including the water vapor. It's measured in grams of water vapor per kilogram of air.",
15
+ "H2OC (mmol/mol)": "Water vapor concentration, expressed in millimoles of water per mole of air. It's another way to quantify the amount of moisture in the air.",
16
+ "rho (g/m³)": "Air density, measured in grams per cubic meter. It indicates the mass of air in a given volume and varies with temperature, pressure, and moisture content.",
17
+ "wv (m/s)": "Wind velocity, the speed of the wind measured in meters per second.",
18
+ "max. wv (m/s)": "Maximum wind velocity observed in the given time period, measured in meters per second.",
19
+ "wd (deg)": "Wind direction, in degrees from true north. This indicates the direction from which the wind is coming.",
20
+ "rain (mm)": "Rainfall amount, measured in millimeters. It indicates how much rain has fallen during the observation period.",
21
+ "raining (s)": "Duration of rainfall, measured in seconds. It specifies how long it has rained during the observation period.",
22
+ "SWDR (W/m²)": "Shortwave Downward Radiation, the amount of solar radiation reaching the ground, measured in watts per square meter.",
23
+ "PAR (μmol/m²/s)": "Photosynthetically Active Radiation, the amount of light available for photosynthesis, measured in micromoles of photons per square meter per second.",
24
+ "max. PAR (μmol/m²/s)": "Maximum Photosynthetically Active Radiation observed in the given time period, indicating the peak light availability for photosynthesis.",
25
+ "Tlog (degC)": "Likely a logged temperature measurement in degrees Celsius. It could be a specific type of temperature measurement or recording method used in the dataset.",
26
+ "CO2 (ppm)": "Carbon dioxide concentration in the air, measured in parts per million. It's a key greenhouse gas and indicator of air quality."
27
+ }
28
+ }
29
+ }