Datasets:
Tasks:
Time Series Forecasting
Sub-tasks:
multivariate-time-series-forecasting
Size:
10K<n<100K
License:
Update README.md
Browse files
README.md
CHANGED
@@ -9,12 +9,36 @@ tags:
|
|
9 |
- zarr
|
10 |
- climate
|
11 |
license: cc-by-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
12 |
---
|
13 |
|
14 |
![CC-BY-4.0](https://img.shields.io/badge/license-CC--BY--4.0-blue)
|
15 |
|
16 |
# Met Office UK Deterministic Dataset (Zarr Format)
|
17 |
|
|
|
|
|
|
|
|
|
|
|
18 |
## Usage
|
19 |
This dataset is provided under the **Creative Commons Attribution 4.0 International License (CC-BY-4.0)**. When using this dataset, you must provide proper attribution to the Met Office as outlined below.
|
20 |
|
@@ -25,4 +49,22 @@ This dataset is derived from the [Met Office UK Deterministic Dataset](https://r
|
|
25 |
- **Copyright**: British Crown copyright © Met Office
|
26 |
|
27 |
## Details
|
28 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
9 |
- zarr
|
10 |
- climate
|
11 |
license: cc-by-4.0
|
12 |
+
annotations_creators:
|
13 |
+
- expert-generated
|
14 |
+
language_creators:
|
15 |
+
- other
|
16 |
+
multilinguality:
|
17 |
+
- monolingual
|
18 |
+
size_categories:
|
19 |
+
- 10K<n<100K
|
20 |
+
source_datasets:
|
21 |
+
- original
|
22 |
+
task_categories:
|
23 |
+
- time-series-forecasting
|
24 |
+
task_ids:
|
25 |
+
- multivariate-time-series-forecasting
|
26 |
+
configs:
|
27 |
+
- config_name: met-office-uk-deterministic-zarr
|
28 |
+
name: met-office-uk-deterministic-zarr
|
29 |
+
splits: []
|
30 |
+
description: This dataset contains Zarr files uploaded as TAR archives.
|
31 |
---
|
32 |
|
33 |
![CC-BY-4.0](https://img.shields.io/badge/license-CC--BY--4.0-blue)
|
34 |
|
35 |
# Met Office UK Deterministic Dataset (Zarr Format)
|
36 |
|
37 |
+
## Description
|
38 |
+
This dataset is a **subset** of the [Met Office UK Deterministic Dataset](https://registry.opendata.aws/met-office-uk-deterministic/), converted from the original **NetCDF format** into **Zarr format** for modern data analysis. The Zarr files are packaged as **tar archives** for efficient storage and transfer.
|
39 |
+
|
40 |
+
The subset focuses on specific variables and configurations, which are detailed in the `met_office_uk_data_config.yaml` file included in this repository. Researchers and developers can use this subset for applications in climate science, weather forecasting, and renewable energy modeling.
|
41 |
+
|
42 |
## Usage
|
43 |
This dataset is provided under the **Creative Commons Attribution 4.0 International License (CC-BY-4.0)**. When using this dataset, you must provide proper attribution to the Met Office as outlined below.
|
44 |
|
|
|
49 |
- **Copyright**: British Crown copyright © Met Office
|
50 |
|
51 |
## Details
|
52 |
+
### Zarr Format and Tar Archives
|
53 |
+
- **Format**: The dataset files are in Zarr format, a modern storage format optimized for analytics and machine learning workflows.
|
54 |
+
- **Packaging**: Zarr files are stored as `.tar.gz` archives. Each archive corresponds to a specific time interval, such as `2022-12-01-00.tar.gz`.
|
55 |
+
|
56 |
+
### Subset Configuration
|
57 |
+
- The dataset includes a subset of variables and configurations chosen for targeted use cases.
|
58 |
+
- For details on the variables and configurations included in this dataset, please refer to the [`met_office_uk_data_config.yaml`](./met_office_uk_data_config.yaml) file.
|
59 |
+
|
60 |
+
## How to Access
|
61 |
+
You can download and extract the tar archives using the following Python snippet:
|
62 |
+
|
63 |
+
```python
|
64 |
+
import tarfile
|
65 |
+
|
66 |
+
# Example: Extracting a tar.gz archive
|
67 |
+
archive_path = "2022-12-01-00.tar.gz"
|
68 |
+
with tarfile.open(archive_path, "r:gz") as tar:
|
69 |
+
tar.extractall(path="extracted_zarr")
|
70 |
+
```
|