Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
43 changes: 43 additions & 0 deletions datasets/met-office/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Met Office Dataset

This directory contains the configuration and scripts for ingesting Met Office weather forecast data into the Planetary Computer.

## Collections

This dataset includes eight collections:

### Global Collections (10km resolution)

- **met-office-global-deterministic-height** - Weather parameters at specific atmospheric height levels
- **met-office-global-deterministic-near-surface** - Near-surface weather parameters (precipitation, temperature, wind, etc.)
- **met-office-global-deterministic-pressure** - Weather parameters at specific atmospheric pressure levels
- **met-office-global-deterministic-whole-atmosphere** - Whole atmosphere parameters (CAPE, cloud amounts, etc.)

### UK Collections (2km resolution)

- **met-office-uk-deterministic-height** - Weather parameters at specific atmospheric height levels
- **met-office-uk-deterministic-near-surface** - Near-surface weather parameters
- **met-office-uk-deterministic-pressure** - Weather parameters at specific atmospheric pressure levels
- **met-office-uk-deterministic-whole-atmosphere** - Whole atmosphere parameters

## Scripts

The `scripts/` directory contains shell scripts for managing the dataset workflow:

- **`ingest-collections.sh`** - Ingest all eight Met Office collections into the STAC catalog:

```bash
./scripts/ingest-collections.sh
```

- **`upload-all.sh`** - Process items for all collections using a specified chunkset id:

```bash
./scripts/upload-all.sh <chunkset-id>
```

- **`process-items-and-monitor.sh`** - Process items for a specific collection and monitor the workflow progress:

```bash
./scripts/process-items-and-monitor.sh <chunkset-id> <collection-id>
```

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
{
"id": "met-office-global-deterministic-height",
"type": "Collection",
"links": [
{
"rel": "license",
"href": "https://creativecommons.org/licenses/by-sa/4.0/deed.en",
"type": "text/html",
"title": "Creative Commons Attribution-ShareAlike 4.0"
},

{
"rel": "describedBy",
"href": "https://www.metoffice.gov.uk/services/data/external-data-channels",
"title": "Met Office Dataset Documentation"
}
],
"title": "Met Office Global Deterministic Height Level",
"assets": {
"thumbnail": {
"href": "https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/met-office-global-deterministic-height.jpg",
"type": "image/png",
"roles": ["thumbnail"],
"title": "Met Office Global Deterministic Height Level Thumbnail"
}
},
"extent": {
"spatial": {
"bbox": [[-180, -90, 180, 90]]
},
"temporal": {
"interval": [["2023-12-15T00:00:00Z", null]]
}
},
"license": "proprietary",
"keywords": ["MetOffice", "Global", "Cloud"],
"providers": [
{
"url": "https://www.metoffice.gov.uk/",
"name": "Met Office",
"roles": ["producer", "licensor", "processor"]
},
{
"url": "https://planetarycomputer.microsoft.com",
"name": "Microsoft",
"roles": ["host", "processor"]
}
],
"description": "The Met Office Global Deterministic Height Level dataset provides a composite of weather parameters generated for specific atmospheric height levels.",
"cube:variables": {
"cloud_amount_on_height_levels": {
"description": "Fraction of horizontal grid square occupied by cloud in layers centred on height levels. The levels are height above ground.",
"dimensions": [],
"unit": "1",
"attrs": {
"1H_timesteps": "T+0 to T+54",
"3H_timesteps": "T+57 to T+144",
"6H_timesteps": "T+150 to T+168",
"content_type": "application/netcdf"
}
}
},
"stac_version": "1.0.0",
"msft:group_id": "metoffice",
"msft:container": "staging",
"stac_extensions": [
"https://stac-extensions.github.io/forecast/v0.2.0/schema.json",
"https://stac-extensions.github.io/datacube/v2.0.0/schema.json"
],
"msft:storage_account": "ukmoeuwest",
"msft:short_description": "Met Office Global Deterministic Height Level",
"msft:region": "westeurope"
}
Loading