ocf-data-sampler 0.2.14__py3-none-any.whl → 0.2.16__py3-none-any.whl
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 ocf-data-sampler might be problematic. Click here for more details.
- ocf_data_sampler/load/load_dataset.py +11 -3
- ocf_data_sampler/torch_datasets/datasets/pvnet_uk.py +1 -1
- ocf_data_sampler/torch_datasets/sample/uk_regional.py +129 -43
- ocf_data_sampler/torch_datasets/utils/validation_utils.py +39 -0
- {ocf_data_sampler-0.2.14.dist-info → ocf_data_sampler-0.2.16.dist-info}/METADATA +1 -1
- {ocf_data_sampler-0.2.14.dist-info → ocf_data_sampler-0.2.16.dist-info}/RECORD +8 -8
- {ocf_data_sampler-0.2.14.dist-info → ocf_data_sampler-0.2.16.dist-info}/WHEEL +1 -1
- {ocf_data_sampler-0.2.14.dist-info → ocf_data_sampler-0.2.16.dist-info}/top_level.txt +0 -0
|
@@ -6,20 +6,28 @@ from ocf_data_sampler.config import InputData
|
|
|
6
6
|
from ocf_data_sampler.load import open_gsp, open_nwp, open_sat_data, open_site
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
def get_dataset_dict(input_config: InputData
|
|
9
|
+
def get_dataset_dict(input_config: InputData, gsp_ids: list[int] | None = None)\
|
|
10
|
+
-> dict[str, dict[xr.DataArray] | xr.DataArray]:
|
|
10
11
|
"""Construct dictionary of all of the input data sources.
|
|
11
12
|
|
|
12
13
|
Args:
|
|
13
14
|
input_config: InputData configuration object
|
|
15
|
+
gsp_ids: List of GSP IDs to load. If None, all GSPs are loaded (not National).
|
|
14
16
|
"""
|
|
15
17
|
datasets_dict = {}
|
|
16
18
|
|
|
17
19
|
# Load GSP data unless the path is None
|
|
18
20
|
if input_config.gsp and input_config.gsp.zarr_path:
|
|
21
|
+
|
|
19
22
|
da_gsp = open_gsp(zarr_path=input_config.gsp.zarr_path).compute()
|
|
20
23
|
|
|
21
|
-
|
|
22
|
-
|
|
24
|
+
if gsp_ids is None:
|
|
25
|
+
# Remove national (gsp_id=0)
|
|
26
|
+
da_gsp = da_gsp.sel(gsp_id=slice(1, None))
|
|
27
|
+
else:
|
|
28
|
+
da_gsp = da_gsp.sel(gsp_id=gsp_ids)
|
|
29
|
+
|
|
30
|
+
datasets_dict["gsp"] = da_gsp
|
|
23
31
|
|
|
24
32
|
# Load NWP data if in config
|
|
25
33
|
if input_config.nwp:
|
|
@@ -95,7 +95,7 @@ class AbstractPVNetUKDataset(Dataset):
|
|
|
95
95
|
gsp_ids: List of GSP IDs to create samples for. Defaults to all
|
|
96
96
|
"""
|
|
97
97
|
config = load_yaml_configuration(config_filename)
|
|
98
|
-
datasets_dict = get_dataset_dict(config.input_data)
|
|
98
|
+
datasets_dict = get_dataset_dict(config.input_data, gsp_ids=gsp_ids)
|
|
99
99
|
|
|
100
100
|
# Get t0 times where all input data is available
|
|
101
101
|
valid_t0_times = self.find_valid_t0_times(datasets_dict, config)
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
"""PVNet UK Regional sample implementation for dataset handling and visualisation."""
|
|
2
2
|
|
|
3
|
+
import logging
|
|
4
|
+
|
|
3
5
|
import torch
|
|
4
6
|
from typing_extensions import override
|
|
5
7
|
|
|
@@ -14,8 +16,11 @@ from ocf_data_sampler.torch_datasets.sample.base import SampleBase
|
|
|
14
16
|
from ocf_data_sampler.torch_datasets.utils.validation_utils import (
|
|
15
17
|
calculate_expected_shapes,
|
|
16
18
|
check_dimensions,
|
|
19
|
+
validation_warning,
|
|
17
20
|
)
|
|
18
21
|
|
|
22
|
+
logger = logging.getLogger(__name__)
|
|
23
|
+
|
|
19
24
|
|
|
20
25
|
class UKRegionalSample(SampleBase):
|
|
21
26
|
"""Handles UK Regional PVNet data operations."""
|
|
@@ -50,14 +55,27 @@ class UKRegionalSample(SampleBase):
|
|
|
50
55
|
# TODO: We should move away from using torch.load(..., weights_only=False)
|
|
51
56
|
return cls(torch.load(path, weights_only=False))
|
|
52
57
|
|
|
53
|
-
def validate_sample(self, config: Configuration) ->
|
|
54
|
-
"""Validates
|
|
58
|
+
def validate_sample(self, config: Configuration) -> dict:
|
|
59
|
+
"""Validates the sample, logging warnings and raising errors.
|
|
60
|
+
|
|
61
|
+
Checks that the sample has the expected structure and data shapes based
|
|
62
|
+
on the provided configuration. Critical issues (missing required data,
|
|
63
|
+
shape mismatches) will raise a ValueError. Non-critical issues (e.g.,
|
|
64
|
+
unexpected data components found) will be logged as warnings using
|
|
65
|
+
the standard Python logging module.
|
|
55
66
|
|
|
56
67
|
Args:
|
|
57
|
-
config: Configuration
|
|
68
|
+
config: Configuration object defining expected shapes and required fields.
|
|
58
69
|
|
|
59
70
|
Returns:
|
|
60
|
-
|
|
71
|
+
dict: A dictionary indicating success: `{"valid": True}`.
|
|
72
|
+
If validation fails due to a critical issue, an exception is raised
|
|
73
|
+
instead of returning. Warnings encountered are logged.
|
|
74
|
+
|
|
75
|
+
Raises:
|
|
76
|
+
TypeError: If `config` is not a Configuration object.
|
|
77
|
+
ValueError: For critical validation failures like missing expected data,
|
|
78
|
+
incorrect data shapes, or missing required NWP providers.
|
|
61
79
|
"""
|
|
62
80
|
if not isinstance(config, Configuration):
|
|
63
81
|
raise TypeError("config must be Configuration object")
|
|
@@ -67,78 +85,146 @@ class UKRegionalSample(SampleBase):
|
|
|
67
85
|
|
|
68
86
|
# Check GSP shape if specified
|
|
69
87
|
gsp_key = GSPSampleKey.gsp
|
|
70
|
-
# Check if GSP data is expected but missing
|
|
71
88
|
if gsp_key in expected_shapes and gsp_key not in self._data:
|
|
72
89
|
raise ValueError(f"Configuration expects GSP data ('{gsp_key}') but is missing.")
|
|
73
90
|
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
91
|
+
if gsp_key in self._data:
|
|
92
|
+
if gsp_key in expected_shapes:
|
|
93
|
+
gsp_data = self._data[gsp_key]
|
|
94
|
+
check_dimensions(
|
|
95
|
+
actual_shape=gsp_data.shape,
|
|
96
|
+
expected_shape=expected_shapes[gsp_key],
|
|
97
|
+
name="GSP",
|
|
98
|
+
)
|
|
99
|
+
else:
|
|
100
|
+
validation_warning(
|
|
101
|
+
message=f"GSP data ('{gsp_key}') is present but not expected in configuration.",
|
|
102
|
+
warning_type="unexpected_component",
|
|
103
|
+
component=str(gsp_key),
|
|
104
|
+
)
|
|
82
105
|
|
|
83
|
-
# Checks for NWP data
|
|
106
|
+
# Checks for NWP data
|
|
84
107
|
nwp_key = NWPSampleKey.nwp
|
|
85
108
|
if nwp_key in expected_shapes and nwp_key not in self._data:
|
|
86
109
|
raise ValueError(f"Configuration expects NWP data ('{nwp_key}') but is missing.")
|
|
87
110
|
|
|
88
|
-
# Check NWP structure and shapes if data exists
|
|
89
111
|
if nwp_key in self._data:
|
|
90
112
|
nwp_data_all_providers = self._data[nwp_key]
|
|
91
113
|
if not isinstance(nwp_data_all_providers, dict):
|
|
92
114
|
raise ValueError(f"NWP data ('{nwp_key}') should be a dictionary.")
|
|
93
115
|
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
raise ValueError(f"Missing array key in NWP data for provider '{provider}'.")
|
|
116
|
+
if nwp_key in expected_shapes:
|
|
117
|
+
expected_providers = set(expected_shapes[nwp_key].keys())
|
|
118
|
+
actual_providers = set(nwp_data_all_providers.keys())
|
|
98
119
|
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
120
|
+
unexpected_providers = actual_providers - expected_providers
|
|
121
|
+
if unexpected_providers:
|
|
122
|
+
validation_warning(
|
|
123
|
+
message=f"Unexpected NWP providers found: {list(unexpected_providers)}",
|
|
124
|
+
warning_type="unexpected_provider",
|
|
125
|
+
providers=list(unexpected_providers),
|
|
126
|
+
)
|
|
127
|
+
|
|
128
|
+
missing_expected_providers = expected_providers - actual_providers
|
|
129
|
+
if missing_expected_providers:
|
|
130
|
+
raise ValueError(
|
|
131
|
+
f"Expected NWP providers are missing from the data: "
|
|
132
|
+
f"{list(missing_expected_providers)}",
|
|
133
|
+
)
|
|
134
|
+
|
|
135
|
+
for provider in expected_shapes[nwp_key]:
|
|
136
|
+
provider_data = nwp_data_all_providers[provider]
|
|
137
|
+
|
|
138
|
+
if "nwp" not in provider_data:
|
|
139
|
+
error_msg = (
|
|
140
|
+
f"Missing array key 'nwp' in NWP data for provider '{provider}'."
|
|
141
|
+
)
|
|
142
|
+
raise ValueError(error_msg)
|
|
103
143
|
|
|
144
|
+
nwp_array = provider_data["nwp"]
|
|
104
145
|
check_dimensions(
|
|
105
|
-
actual_shape=
|
|
106
|
-
expected_shape=
|
|
146
|
+
actual_shape=nwp_array.shape,
|
|
147
|
+
expected_shape=expected_shapes[nwp_key][provider],
|
|
107
148
|
name=f"NWP data ({provider})",
|
|
108
149
|
)
|
|
150
|
+
else:
|
|
151
|
+
validation_warning(
|
|
152
|
+
message=(
|
|
153
|
+
f"NWP data ('{nwp_key}') is present but not expected "
|
|
154
|
+
"in configuration."
|
|
155
|
+
),
|
|
156
|
+
warning_type="unexpected_component",
|
|
157
|
+
component=str(nwp_key),
|
|
158
|
+
)
|
|
109
159
|
|
|
110
160
|
# Validate satellite data
|
|
111
161
|
sat_key = SatelliteSampleKey.satellite_actual
|
|
112
|
-
# Check if Satellite data is expected but missing
|
|
113
162
|
if sat_key in expected_shapes and sat_key not in self._data:
|
|
114
163
|
raise ValueError(f"Configuration expects Satellite data ('{sat_key}') but is missing.")
|
|
115
164
|
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
165
|
+
if sat_key in self._data:
|
|
166
|
+
if sat_key in expected_shapes:
|
|
167
|
+
sat_data = self._data[sat_key]
|
|
168
|
+
check_dimensions(
|
|
169
|
+
actual_shape=sat_data.shape,
|
|
170
|
+
expected_shape=expected_shapes[sat_key],
|
|
171
|
+
name="Satellite data",
|
|
172
|
+
)
|
|
173
|
+
else:
|
|
174
|
+
validation_warning(
|
|
175
|
+
message=(
|
|
176
|
+
f"Satellite data ('{sat_key}') is present but not expected "
|
|
177
|
+
"in configuration."
|
|
178
|
+
),
|
|
179
|
+
warning_type="unexpected_component",
|
|
180
|
+
component=str(sat_key),
|
|
181
|
+
)
|
|
124
182
|
|
|
125
183
|
# Validate solar coordinates data
|
|
126
184
|
solar_keys = ["solar_azimuth", "solar_elevation"]
|
|
127
|
-
# Check if solar coordinate is expected but missing
|
|
128
185
|
for solar_key in solar_keys:
|
|
186
|
+
solar_name = solar_key.replace("_", " ").title()
|
|
129
187
|
if solar_key in expected_shapes and solar_key not in self._data:
|
|
130
188
|
raise ValueError(f"Configuration expects {solar_key} data but is missing.")
|
|
131
189
|
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
190
|
+
if solar_key in self._data:
|
|
191
|
+
if solar_key in expected_shapes:
|
|
192
|
+
solar_data = self._data[solar_key]
|
|
193
|
+
check_dimensions(
|
|
194
|
+
actual_shape=solar_data.shape,
|
|
195
|
+
expected_shape=expected_shapes[solar_key],
|
|
196
|
+
name=f"{solar_name} data",
|
|
197
|
+
)
|
|
198
|
+
else:
|
|
199
|
+
validation_warning(
|
|
200
|
+
message=(
|
|
201
|
+
f"{solar_name} data is present but not expected "
|
|
202
|
+
"in configuration."
|
|
203
|
+
),
|
|
204
|
+
warning_type="unexpected_component",
|
|
205
|
+
component=solar_key,
|
|
206
|
+
)
|
|
207
|
+
|
|
208
|
+
# Check for potentially unexpected components
|
|
209
|
+
checked_keys = {gsp_key, nwp_key, sat_key} | set(solar_keys)
|
|
210
|
+
all_present_keys = set(self._data.keys())
|
|
211
|
+
unexpected_present_keys = all_present_keys - set(expected_shapes.keys())
|
|
212
|
+
|
|
213
|
+
for key in unexpected_present_keys:
|
|
214
|
+
if key not in checked_keys:
|
|
215
|
+
validation_warning(
|
|
216
|
+
message=(
|
|
217
|
+
f"Unexpected component '{key}' is present in data but not defined "
|
|
218
|
+
"in configuration's expected shapes."
|
|
219
|
+
),
|
|
220
|
+
warning_type="unexpected_component",
|
|
221
|
+
component=str(key),
|
|
139
222
|
)
|
|
140
223
|
|
|
141
|
-
return
|
|
224
|
+
return {
|
|
225
|
+
"valid": True,
|
|
226
|
+
}
|
|
227
|
+
|
|
142
228
|
|
|
143
229
|
@override
|
|
144
230
|
def plot(self) -> None:
|
|
@@ -1,8 +1,13 @@
|
|
|
1
1
|
"""Validate sample shape against expected shape - utility function."""
|
|
2
2
|
|
|
3
|
+
import logging
|
|
4
|
+
from typing import Any
|
|
5
|
+
|
|
3
6
|
from ocf_data_sampler.config import Configuration
|
|
4
7
|
from ocf_data_sampler.numpy_sample import GSPSampleKey, NWPSampleKey, SatelliteSampleKey
|
|
5
8
|
|
|
9
|
+
logger = logging.getLogger(__name__)
|
|
10
|
+
|
|
6
11
|
|
|
7
12
|
def check_dimensions(
|
|
8
13
|
actual_shape: tuple[int, ...],
|
|
@@ -93,6 +98,40 @@ def calculate_expected_shapes(
|
|
|
93
98
|
return expected_shapes
|
|
94
99
|
|
|
95
100
|
|
|
101
|
+
def validation_warning(
|
|
102
|
+
message: str,
|
|
103
|
+
warning_type: str,
|
|
104
|
+
*,
|
|
105
|
+
component: str | None = None,
|
|
106
|
+
providers: list[str] | None = None,
|
|
107
|
+
) -> dict[str, Any]:
|
|
108
|
+
"""Constructs warning details and logs a standard warning message.
|
|
109
|
+
|
|
110
|
+
Args:
|
|
111
|
+
message: The base warning message string.
|
|
112
|
+
warning_type: The category of the warning (e.g., 'unexpected_component').
|
|
113
|
+
component: Optional component identifier (e.g., 'gsp').
|
|
114
|
+
providers: Optional list of provider names (e.g., ['ukv']).
|
|
115
|
+
|
|
116
|
+
Returns:
|
|
117
|
+
None - This function now directly logs the warning.
|
|
118
|
+
"""
|
|
119
|
+
warning_info: dict[str, Any] = {"type": warning_type, "message": message}
|
|
120
|
+
log_message_parts = [message]
|
|
121
|
+
log_message_parts.append(f"(Type: {warning_type}")
|
|
122
|
+
|
|
123
|
+
if component is not None:
|
|
124
|
+
warning_info["component"] = component
|
|
125
|
+
log_message_parts.append(f", Component: {component}")
|
|
126
|
+
if providers is not None:
|
|
127
|
+
warning_info["providers"] = providers
|
|
128
|
+
log_message_parts.append(f", Providers: {providers}")
|
|
129
|
+
|
|
130
|
+
log_message_parts.append(")")
|
|
131
|
+
log_message = " ".join(log_message_parts)
|
|
132
|
+
logger.warning(log_message)
|
|
133
|
+
|
|
134
|
+
|
|
96
135
|
def _calculate_time_steps(start_minutes: int, end_minutes: int, resolution_minutes: int) -> int:
|
|
97
136
|
"""Calculate number of time steps based on interval and resolution.
|
|
98
137
|
|
|
@@ -7,7 +7,7 @@ ocf_data_sampler/config/save.py,sha256=m8SPw5rXjkMm1rByjh3pK5StdBi4e8ysnn3jQopdR
|
|
|
7
7
|
ocf_data_sampler/data/uk_gsp_locations.csv,sha256=RSh7DRh55E3n8lVAaWXGTaXXHevZZtI58td4d4DhGos,10415772
|
|
8
8
|
ocf_data_sampler/load/__init__.py,sha256=-vQP9g0UOWdVbjEGyVX_ipa7R1btmiETIKAf6aw4d78,201
|
|
9
9
|
ocf_data_sampler/load/gsp.py,sha256=keB3Nv_CNK1P6pS9Kdfc8PoZXTI1_YFN-spsvEv_Ewc,899
|
|
10
|
-
ocf_data_sampler/load/load_dataset.py,sha256=
|
|
10
|
+
ocf_data_sampler/load/load_dataset.py,sha256=Cn-yz7RgHR2HkH3xQM1njivVEkp8rZC3KXXgcidwuME,1863
|
|
11
11
|
ocf_data_sampler/load/satellite.py,sha256=E7Ln7Y60Qr1RTV-_R71YoxXQM-Ca7Y1faIo3oKB2eFk,2292
|
|
12
12
|
ocf_data_sampler/load/site.py,sha256=zOzlWk6pYZBB5daqG8URGksmDXWKrkutUvN8uALAIh8,1468
|
|
13
13
|
ocf_data_sampler/load/utils.py,sha256=sZ0-zzconcLkVQwAkCYrqKDo98Hrh5ChdiQJv5Bh91g,2040
|
|
@@ -38,22 +38,22 @@ ocf_data_sampler/select/location.py,sha256=AZvGR8y62opiW7zACGXjoOtBEWRfSLOZIA73O
|
|
|
38
38
|
ocf_data_sampler/select/select_spatial_slice.py,sha256=liAqIa-Amj58pOqx5r16i99HURj9oQ41j7gnPgRDQP4,8201
|
|
39
39
|
ocf_data_sampler/select/select_time_slice.py,sha256=HeHbwZ0CP03x0-LaJtpbSdtpLufwVTR73p6wH6O_PS8,5513
|
|
40
40
|
ocf_data_sampler/torch_datasets/datasets/__init__.py,sha256=jfJSFcR0eO1AqeH7S3KnGjsBqVZT5w3oyi784PUR6Q0,146
|
|
41
|
-
ocf_data_sampler/torch_datasets/datasets/pvnet_uk.py,sha256=
|
|
41
|
+
ocf_data_sampler/torch_datasets/datasets/pvnet_uk.py,sha256=9BJ4wVcZUMEzStVCbbWrf2eK8WPpV9SoeOQviZktHAc,12355
|
|
42
42
|
ocf_data_sampler/torch_datasets/datasets/site.py,sha256=nRUlhXQQGVrTuBmE1QnwXAUsPTXz0dsezlQjwK71jIQ,17641
|
|
43
43
|
ocf_data_sampler/torch_datasets/sample/__init__.py,sha256=GL84vdZl_SjHDGVyh9Uekx2XhPYuZ0dnO3l6f6KXnHI,100
|
|
44
44
|
ocf_data_sampler/torch_datasets/sample/base.py,sha256=cQ1oIyhdmlotejZK8B3Cw6MNvpdnBPD8G_o2h7Ye4Vc,2206
|
|
45
45
|
ocf_data_sampler/torch_datasets/sample/site.py,sha256=ZUEgn50g-GmqujOEtezNILF7wjokF80sDAA4OOldcRI,1268
|
|
46
|
-
ocf_data_sampler/torch_datasets/sample/uk_regional.py,sha256=
|
|
46
|
+
ocf_data_sampler/torch_datasets/sample/uk_regional.py,sha256=Xx5cBYUyaM6PGUWQ76MHT9hwj6IJ7WAOxbpmYFbJGhc,10483
|
|
47
47
|
ocf_data_sampler/torch_datasets/utils/__init__.py,sha256=N7i_hHtWUDiJqsiJoDx4T_QuiYOuvIyulPrn6xEA4TY,309
|
|
48
48
|
ocf_data_sampler/torch_datasets/utils/channel_dict_to_dataarray.py,sha256=un2IiyoAmTDIymdeMiPU899_86iCDMD-oIifjHlNyqw,555
|
|
49
49
|
ocf_data_sampler/torch_datasets/utils/merge_and_fill_utils.py,sha256=we7BTxRH7B7jKayDT7YfNyfI3zZClz2Bk-HXKQIokgU,956
|
|
50
50
|
ocf_data_sampler/torch_datasets/utils/spatial_slice_for_dataset.py,sha256=Hvz0wHSWMYYamf2oHNiGlzJcM4cAH6pL_7ZEvIBL2dE,1882
|
|
51
51
|
ocf_data_sampler/torch_datasets/utils/time_slice_for_dataset.py,sha256=1DN6VsWWdLvkpJxodZtBRDUgC4vJE2td_RP5J3ZqPNw,4268
|
|
52
52
|
ocf_data_sampler/torch_datasets/utils/valid_time_periods.py,sha256=xcy75cVxl0WrglnX5YUAFjXXlO2GwEBHWyqo8TDuiOA,4714
|
|
53
|
-
ocf_data_sampler/torch_datasets/utils/validation_utils.py,sha256=
|
|
53
|
+
ocf_data_sampler/torch_datasets/utils/validation_utils.py,sha256=YqmT-lExWlI8_ul3l0EP73Ik002fStr_bhsZh9mQqEU,4735
|
|
54
54
|
scripts/refactor_site.py,sha256=skzvsPP0Cn9yTKndzkilyNcGz4DZ88ctvCJ0XrBdc2A,3135
|
|
55
55
|
utils/compute_icon_mean_stddev.py,sha256=a1oWMRMnny39rV-dvu8rcx85sb4bXzPFrR1gkUr4Jpg,2296
|
|
56
|
-
ocf_data_sampler-0.2.
|
|
57
|
-
ocf_data_sampler-0.2.
|
|
58
|
-
ocf_data_sampler-0.2.
|
|
59
|
-
ocf_data_sampler-0.2.
|
|
56
|
+
ocf_data_sampler-0.2.16.dist-info/METADATA,sha256=JplbQHR2wlMPCQEDXYk5GPDgu15wYKV3SYZmL0kH2Ho,11581
|
|
57
|
+
ocf_data_sampler-0.2.16.dist-info/WHEEL,sha256=pxyMxgL8-pra_rKaQ4drOZAegBVuX-G_4nRHjjgWbmo,91
|
|
58
|
+
ocf_data_sampler-0.2.16.dist-info/top_level.txt,sha256=LEFU4Uk-PEo72QGLAfnVZIUEm37Q8mKuMeg_Xk-p33g,31
|
|
59
|
+
ocf_data_sampler-0.2.16.dist-info/RECORD,,
|
|
File without changes
|