Skip to main content
Documentation

Navigate your ocean of data

The Oceanum.io environmental intelligence platform turns environmental data into real-world knowledge, insights and applications — under one easy-to-use interface and API.

What's here

Datamesh · Apps · Examples

Datamesh

A schema-aware engine that unifies satellite, in-situ, hindcast and forecast data behind a single API.

Learn the Datamesh
Apps

Build interactive dashboards and operational tools on top of Oceanum's data and compute services.

Apps and dashboards
Examples

Worked tutorials covering common workflows — from a single timeseries download to a full operational pipeline.

Tutorials and examples
One client. Every dataset.

From query to plot in a few lines.

The Oceanum Datamesh client connects to hundreds of datasets through a single Python interface — pull a slice, plot it, build on it. No format wrangling.

Datamesh documentation
from oceanum.datamesh import Connector

dm = Connector(token="dm_•••")
ds = dm.query(
    datasource="era5_wave",
    geofilter={"type": "Point",
               "coords": [173.45, -41.29]},
    timefilter=["2024-01-01", "2024-12-31"],
)
ds.hs.plot()