@openmeteo/mapbox-layer
v0.0.8
Published
Protocol to read OMfiles and parse them to tiles for Mapbox / Maplibre
Readme
Open-Meteo Mapbox Layer
⚠️ Notice This package is still under construction and is not yet fully production-ready. API changes may occur and some features might be incomplete.
Overview
This repository demonstrates how to use the Open-Meteo File Protocol (.om) with Mapbox / MapLibre GL JS.
The .om files are hosted on an S3 bucket and can be accessed directly via the om protocol:
The actual weather API implementation lives in the open-meteo/open-meteo repository.
An interactive demo is available at maps.open-meteo.com.
Installation
Node
npm install @openmeteo/mapbox-layer// ...
import { omProtocol } from '@openmeteo/mapbox-layer';
// Standard Mapbox / MapLibre GL JS setup
// ...
maplibregl.addProtocol('om', omProtocol);
const omUrl = `https://map-tiles.open-meteo.com/data_spatial/dwd_icon/2025/10/15/1200Z/2025-10-15T1400.om?variable=temperature_2m`;
map.on('load', () => {
map.addSource('omFileSource', {
url: 'om://' + omUrl,
type: 'raster',
tileSize: 256,
maxzoom: 12 // tiles look pretty much the same below zoom-level 12, even on the high res models
});
map.addLayer({
id: 'omFileLayer',
type: 'raster',
source: 'omFileSource'
});
});HTML / UNPKG
For a standalone example, see examples/temperature.html.
...
<script src="https://unpkg.com/@openmeteo/[email protected]/dist/index.js"></script>
...<script>
// Standard Mapbox / MapLibre GL JS setup
// ...
maplibregl.addProtocol('om', OpenMeteoMapboxLayer.omProtocol);
const omUrl = `https://map-tiles.open-meteo.com/data_spatial/dwd_icon/2025/10/27/1200Z/2025-10-27T1200.om?variable=temperature_2m`;
map.on('load', () => {
map.addSource('omFileSource', {
url: 'om://' + omUrl,
type: 'raster',
tileSize: 256,
maxzoom: 12 // tiles look pretty much the same below zoom-level 12, even on the high res models
});
map.addLayer({
id: 'omFileLayer',
type: 'raster',
source: 'omFileSource'
});
});
</script>Examples
The repository contains an examples directory with ready-to-run demos:
examples/temperature.html– shows temperature data from an OM file.examples/precipitation.html– displays precipitation using a similar setup.examples/wind.html– displays wind values with directional arrows.examples/custom-colorscale.html– shows how to use your own color definition.
Run the examples by opening the corresponding .html file in a browser.
Arrows / Contouring / Gridpoints
For directional arrows / contouring / gridpoints, an additional source must be added, since these features use vector tiles instead of raster tiles.
...
map.on('load', () => {
map.addSource('omFileVectorSource', {
url: 'om://' + omUrl,
type: 'vector'
});
map.addLayer({
id: 'omFileVectorLayer',
type: 'line',
source: 'omFileVectorSource',
'source-layer': 'contours',
paint: {
'line-color': 'black',
'line-width': 4
}
});
});For the vector source examples there is the examples/vector sub-directory with ready-to-run demos:
examples/vector/contouring-pressure.html– shows how to use contouring with a pressure map.examples/vector/grid-points.html– displays all grid points for a model, with value data on each point.examples/vector/temperature-anomaly.html– shows a seasonal forecast map with temperature anomalies.examples/vector/temperature-labels.html– displays all grid points for a model, using value data to show temperature labels.examples/vector/wind-arrows.html– displays wind map with directional arrows.
Capture API
⚠️ Using the Capture API will add 0.5-1s delay for each request
Because the use of OM files on the S3 storage is often quite ambiguous, a Capture API is added, that will automatically produce the correct file paths for you.
For each Weather Model, there will be a latest.json and in-progress.json metadata file, containing data like valid time steps, valid variables and reference times.
An example can be found here, for DWD Icon Global:
https://map-tiles.open-meteo.com/data_spatial/dwd_icon/latest.json{
"completed": true,
"last_modified_time": "2025-11-11T09:42:17Z",
"reference_time": "2025-11-11T06:00:00Z",
"valid_times": ["2025-11-11T06:00Z", "2025-11-11T07:00Z", "...+91"],
"variables": ["cape", "cloud_cover", "cloud_cover_high", "...+120"]
}Using the Capture API
If you don't want to select a particular model run, but instead always want to use the latest available run. Instead of using the model run in the URL you replace that part with latest.json
For example, with the link below replace the highlighted part:
With latest.json:
If you want to show the closest current time, or a pick a different valid time than the first one, you could use:
or the 5th index of the valid_times array
Time Step Modifiers
| modifier | Alteration | | -------- | ---------- | | M | Minutes | | H | Hours | | d | Days | | m | Months |
